Support cross-compiling between architectures

This commit is contained in:
Wichert Akkerman 2001-07-23 14:43:07 +00:00
parent 01250b2cc0
commit 4f1bbbe74f
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2001-07-23 Wichert Akkerman <wakkerma@debian.org>
* configure.in: Support cross-compiling between architectures
2001-07-13 Wichert Akkerman <wakkerma@debian.org>
* configure.in: add S390 to architecture list

View File

@ -1,5 +1,5 @@
AC_INIT(strace.c)
AC_CANONICAL_HOST()
AC_CANONICAL_SYSTEM()
AC_MSG_CHECKING(for supported operating system)
changequote(,)dnl
@ -37,7 +37,7 @@ opsys_list='
'
AC_MSG_CHECKING(for supported architecture)
case "$host_cpu" in
case "$target_cpu" in
i[3456]86|pentium)
arch=i386
;;