diff options
author | Joel Sherrill <joel@OARcorp.com> | 2000-02-11 10:17:46 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2000-02-11 03:17:46 -0700 |
commit | 0d4ef09cd5d40611d3e364d2e85d4208ab3d93a2 (patch) | |
tree | e1c321484ab662c2f8019b55a4f0fc758fd357be | |
parent | 84caa961db297c2c7d29eca33a33bffa2526c6b8 (diff) | |
download | gcc-0d4ef09cd5d40611d3e364d2e85d4208ab3d93a2.zip gcc-0d4ef09cd5d40611d3e364d2e85d4208ab3d93a2.tar.gz gcc-0d4ef09cd5d40611d3e364d2e85d4208ab3d93a2.tar.bz2 |
configure.in: (i*86-*-rtems*): Swapped elf and coff stanzas.
* configure.in: (i*86-*-rtems*): Swapped elf and coff
stanzas.
* configure: Rebuilt.
From-SVN: r31916
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rwxr-xr-x | gcc/configure | 12 | ||||
-rw-r--r-- | gcc/configure.in | 14 |
3 files changed, 19 insertions, 13 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 34a2f58..5fae275 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2000-02-11 Joel Sherrill (joel@OARcorp.com> + + * configure.in: (i*86-*-rtems*): Swapped elf and coff + stanzas. + * configure: Rebuilt. + 2000-02-11 Rodney Brown <RodneyBrown@pmsc.com> * pa-protos.h: Wrap function_arg_padding in TREE_CODE #ifdef. diff --git a/gcc/configure b/gcc/configure index edbdff9..43deb31 100755 --- a/gcc/configure +++ b/gcc/configure @@ -1369,7 +1369,7 @@ else fi # Find some useful tools -for ac_prog in mawk gawk nawk awk +for ac_prog in gawk mawk nawk awk do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 @@ -4156,17 +4156,17 @@ for machine in $build $host $target; do tm_file=i386/go32-rtems.h tmake_file="i386/t-go32 t-rtems" ;; + i[34567]86-*-rtemscoff*) + cpu_type=i386 + tm_file=i386/rtems.h + tmake_file="i386/t-i386bare t-rtems" + ;; i[34567]86-*-rtems*|i[34567]86-*-rtemself*) cpu_type=i386 tm_file=i386/rtemself.h extra_parts="crtbegin.o crtend.o crti.o crtn.o" tmake_file="i386/t-rtems-i386 i386/t-crtstuff t-rtems" ;; - i[34567]86-*-rtemscoff*) - cpu_type=i386 - tm_file=i386/rtems.h - tmake_file="i386/t-i386bare t-rtems" - ;; i[34567]86-*-sco3.2v5*) # 80386 running SCO Open Server 5 xm_file="xm-alloca.h ${xm_file} i386/xm-sco5.h" xm_defines="USG SVR3" diff --git a/gcc/configure.in b/gcc/configure.in index 074e645..2bd136e 100644 --- a/gcc/configure.in +++ b/gcc/configure.in @@ -1491,19 +1491,19 @@ changequote([,])dnl tmake_file="i386/t-go32 t-rtems" ;; changequote(,)dnl - i[34567]86-*-rtems*|i[34567]86-*-rtemself*) + i[34567]86-*-rtemscoff*) changequote([,])dnl cpu_type=i386 - tm_file=i386/rtemself.h - extra_parts="crtbegin.o crtend.o crti.o crtn.o" - tmake_file="i386/t-rtems-i386 i386/t-crtstuff t-rtems" + tm_file=i386/rtems.h + tmake_file="i386/t-i386bare t-rtems" ;; changequote(,)dnl - i[34567]86-*-rtemscoff*) + i[34567]86-*-rtems*|i[34567]86-*-rtemself*) changequote([,])dnl cpu_type=i386 - tm_file=i386/rtems.h - tmake_file="i386/t-i386bare t-rtems" + tm_file=i386/rtemself.h + extra_parts="crtbegin.o crtend.o crti.o crtn.o" + tmake_file="i386/t-rtems-i386 i386/t-crtstuff t-rtems" ;; changequote(,)dnl i[34567]86-*-sco3.2v5*) # 80386 running SCO Open Server 5 |