aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCatherine Moore <clm@cygnus.com>1999-02-02 18:29:47 +0000
committerCatherine Moore <clm@gcc.gnu.org>1999-02-02 13:29:47 -0500
commitbbd8fa7f52e279cedc2250f9d3378b5fc4d86612 (patch)
treecc61b3cd56fcd1732828663d76e61d276f0c556e
parentb0f780c3bfd5d88f40cfcb0ad93a609bf24a0b5c (diff)
downloadgcc-bbd8fa7f52e279cedc2250f9d3378b5fc4d86612.zip
gcc-bbd8fa7f52e279cedc2250f9d3378b5fc4d86612.tar.gz
gcc-bbd8fa7f52e279cedc2250f9d3378b5fc4d86612.tar.bz2
config.sub (oabi): Recognize.
* config.sub (oabi): Recognize. * configure.in (arm-*-oabi): Handle. From-SVN: r24976
-rw-r--r--ChangeLog5
-rwxr-xr-xconfig.sub2
-rw-r--r--configure.in12
3 files changed, 18 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 3290697..02b72b6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Tue Feb 2 20:05:05 1999 Catherine Moore <clm@cygnus.com>
+
+ * config.sub (oabi): Recognize.
+ * configure.in (arm-*-oabi): Handle.
+
Sat Jan 30 06:09:00 1999 Robert Lipe (robertlipe@usa.net)
* config.guess: Improve detection of i686 on UnixWare 7.
diff --git a/config.sub b/config.sub
index 3be49c7..f361a6e 100755
--- a/config.sub
+++ b/config.sub
@@ -928,7 +928,7 @@ case $os in
| -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \
| -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \
| -hiux* | -386bsd* | -netbsd* | -openbsd* | -freebsd* | -riscix* \
- | -lynxos* | -bosx* | -nextstep* | -cxux* | -aout* | -elf* \
+ | -lynxos* | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \
| -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \
| -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
| -cygwin32* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
diff --git a/configure.in b/configure.in
index 0c09f4f..717f0d4 100644
--- a/configure.in
+++ b/configure.in
@@ -578,6 +578,18 @@ case "${target}" in
arm-*-coff*)
noconfigdirs="$noconfigdirs target-libgloss"
;;
+ arm-*-elf*)
+ noconfigdirs="$noconfigdirs target-libgloss"
+ if [ x${is_cross_compiler} != xno ] ; then
+ target_configdirs="${target_configdirs} target-bsp target-libstub target-cygmon"
+ fi
+ ;;
+ arm-*-oabi*)
+ noconfigdirs="$noconfigdirs target-libgloss"
+ if [ x${is_cross_compiler} != xno ] ; then
+ target_configdirs="${target_configdirs} target-bsp target-libstub target-cygmon"
+ fi
+ ;;
c4x-*-*)
noconfigdirs="$noconfigdirs target-libg++ target-libstdc++ target-libio target-librx target-libgloss"
;;