diff options
author | Jason Thorpe <thorpej@wasabisystems.com> | 2002-02-03 21:52:34 +0000 |
---|---|---|
committer | Jason Thorpe <thorpej@gcc.gnu.org> | 2002-02-03 21:52:34 +0000 |
commit | 69474c3c181a530bd8d4e75ee84b1f4092a05c86 (patch) | |
tree | 19e771ac6fe5d2e106ddcacda341acf55618b1d4 /gcc | |
parent | 939a46f640079221e6b42c1781242682e6893443 (diff) | |
download | gcc-69474c3c181a530bd8d4e75ee84b1f4092a05c86.zip gcc-69474c3c181a530bd8d4e75ee84b1f4092a05c86.tar.gz gcc-69474c3c181a530bd8d4e75ee84b1f4092a05c86.tar.bz2 |
config.gcc (arm*-*-netbsdelf*): Placeholder to prevent match by existing arm*-*-netbsd* (a.out) target.
* config.gcc (arm*-*-netbsdelf*): Placeholder to prevent match
by existing arm*-*-netbsd* (a.out) target.
(ns32k-*-netbsdelf*): Likewise.
(sparc-*-netbsdelf*): Likewise.
(vax-*-netbsdelf*): Likewise.
From-SVN: r49467
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 8 | ||||
-rw-r--r-- | gcc/config.gcc | 12 |
2 files changed, 20 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ca5ae30..1190b3b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,11 @@ +2002-02-03 Jason Thorpe <thorpej@wasabisystems.com> + + * config.gcc (arm*-*-netbsdelf*): Placeholder to prevent match + by existing arm*-*-netbsd* (a.out) target. + (ns32k-*-netbsdelf*): Likewise. + (sparc-*-netbsdelf*): Likewise. + (vax-*-netbsdelf*): Likewise. + 2002-02-03 Danny Smith <dannysmith@users.sourceforge.net> * gthr-win32.h: Protect against conflicting typedef for BOOL in windows diff --git a/gcc/config.gcc b/gcc/config.gcc index f043f79..9a9cfd5 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -629,6 +629,9 @@ arm*-*-freebsd*|strongarm*-*-freebsd*) tm_file="dbxelf.h elfos.h ${fbsd_tm_file} arm/elf.h arm/aout.h arm/freebsd.h arm/arm.h" tmake_file="${tmake_file} arm/t-strongarm-elf" ;; +arm*-*-netbsdelf*) + echo "GCC does not yet support the ${machine} target"; exit 1 + ;; arm*-*-netbsd*) tm_file="arm/aout.h arm/arm.h netbsd.h netbsd-aout.h arm/netbsd.h" tmake_file="t-netbsd arm/t-netbsd" @@ -2614,6 +2617,9 @@ ns32k-pc532-minix*) xm_defines='POSIX HZ=60' use_collect2=yes ;; +ns32k-*-netbsdelf*) + echo "GCC does not yet support the ${machine} target"; exit 1 + ;; ns32k-*-netbsd*) tm_file=ns32k/netbsd.h # On NetBSD, the headers are already okay, except for math.h. @@ -2926,6 +2932,9 @@ sparc-*-aout*) tmake_file=sparc/t-sparcbare tm_file="sparc/sparc.h aoutos.h sparc/aout.h libgloss.h" ;; +sparc-*-netbsdelf*) + echo "GCC does not yet support the ${machine} target"; exit 1 + ;; sparc-*-netbsd*) tm_file="${tm_file} sparc/aout.h netbsd.h netbsd-aout.h sparc/netbsd.h" tmake_file=t-netbsd @@ -3240,6 +3249,9 @@ vax-*-sysv*) # VAXen running system V xm_defines=POSIX float_format=vax ;; +vax-*-netbsdelf*) + echo "GCC does not yet support the ${machine} target"; exit 1 + ;; vax-*-netbsd*) tm_file="${tm_file} netbsd.h netbsd-aout.h vax/netbsd.h" tmake_file=t-netbsd |