1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-11-26 00:57:39 +01:00

(get_arch): Handle hppa.

(ARCH_HPPA): New AM_CONDITIONAL.

(Logical change 1.33)
This commit is contained in:
mostang.com!davidm 2003-01-14 07:11:56 +00:00
parent 6d611572ef
commit 9f3bcd7c73

View file

@ -33,6 +33,7 @@ AM_PROG_AS
get_arch() { get_arch() {
case "$1" in case "$1" in
i?86) echo x86;; i?86) echo x86;;
hppa*) echo hppa;;
*) echo $1;; *) echo $1;;
esac esac
} }
@ -42,6 +43,7 @@ target_arch=`get_arch $target_cpu`
AM_CONDITIONAL(REMOTE_ONLY, test x$target_arch != x$build_arch) AM_CONDITIONAL(REMOTE_ONLY, test x$target_arch != x$build_arch)
AM_CONDITIONAL(ARCH_IA64, test x$target_arch == xia64) AM_CONDITIONAL(ARCH_IA64, test x$target_arch == xia64)
AM_CONDITIONAL(ARCH_HPPA, test x$target_arch == xhppa)
AM_CONDITIONAL(ARCH_X86, test x$target_arch == xx86) AM_CONDITIONAL(ARCH_X86, test x$target_arch == xx86)
if test x$target_arch != x$build_arch; then if test x$target_arch != x$build_arch; then