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:
parent
6d611572ef
commit
9f3bcd7c73
1 changed files with 2 additions and 0 deletions
|
@ -33,6 +33,7 @@ AM_PROG_AS
|
|||
get_arch() {
|
||||
case "$1" in
|
||||
i?86) echo x86;;
|
||||
hppa*) echo hppa;;
|
||||
*) echo $1;;
|
||||
esac
|
||||
}
|
||||
|
@ -42,6 +43,7 @@ target_arch=`get_arch $target_cpu`
|
|||
|
||||
AM_CONDITIONAL(REMOTE_ONLY, test x$target_arch != x$build_arch)
|
||||
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)
|
||||
|
||||
if test x$target_arch != x$build_arch; then
|
||||
|
|
Loading…
Reference in a new issue