diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-02-05 06:01:54 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-02-05 06:01:54 +0000 |
commit | 0c8b61e64fb6542d4f4d40a44659a126049f07c7 (patch) | |
tree | 09d18077defd9ceb294baeb4f25ac520ab1f33f0 /configure.in | |
parent | 93693c4d820dac2f218e144f5126a5a761f1cfbf (diff) | |
download | glibc-0c8b61e64fb6542d4f4d40a44659a126049f07c7.tar.gz glibc-0c8b61e64fb6542d4f4d40a44659a126049f07c7.tar.xz glibc-0c8b61e64fb6542d4f4d40a44659a126049f07c7.zip |
Update.
2001-02-04 Philip Blundell <philb@gnu.org> * configure.in: Distinguish ARM from Thumb. 2001-02-04 Philip Blundell <philb@gnu.org> * sysdeps/arm/dl-machine.h (elf_machine_rel): Correct handling of PC24 relocs with negative value.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.in b/configure.in index e52648fac6..90860d6122 100644 --- a/configure.in +++ b/configure.in @@ -292,7 +292,7 @@ changequote(,)dnl case "$machine" in a29k | am29000) base_machine=a29k machine=a29k ;; alpha*) base_machine=alpha machine=alpha/$machine ;; -arm*) base_machine=arm machine=arm/$machine ;; +arm*) base_machine=arm machine=arm/arm32/$machine ;; c3[012]) base_machine=cx0 machine=cx0/c30 ;; c4[04]) base_machine=cx0 machine=cx0/c40 ;; hppa*64*) base_machine=hppa machine=hppa/hppa64 ;; @@ -319,6 +319,7 @@ sparcv8plus | sparcv8plusa | sparcv9) base_machine=sparc machine=sparc/sparc32/sparcv9 ;; sparc64 | ultrasparc) base_machine=sparc machine=sparc/sparc64 ;; +thumb*) base_machine=thumb machine=arm/thumb/$machine ;; esac changequote([,])dnl AC_SUBST(base_machine) |