From: Wichert Akkerman Date: Mon, 23 Jul 2001 14:43:07 +0000 (+0000) Subject: Support cross-compiling between architectures X-Git-Tag: v4.5.18~1030 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4f1bbbe74f9dc2723bff6e1028d3aa6c3ca85b6d;p=strace Support cross-compiling between architectures --- diff --git a/ChangeLog b/ChangeLog index f4e1cfc2..6d555ce3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2001-07-23 Wichert Akkerman + + * configure.in: Support cross-compiling between architectures + 2001-07-13 Wichert Akkerman * configure.in: add S390 to architecture list diff --git a/configure.in b/configure.in index dcac0172..ed13615b 100644 --- a/configure.in +++ b/configure.in @@ -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 ;;