diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-04-09 19:01:54 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-04-09 19:01:54 +0000 |
commit | 97ebd9cda986b3ec7e288e2afc084c0e1f67c619 (patch) | |
tree | 850a1ea4434bb6ce03bf6fc55fa94921d274151b /gcc/config.sub | |
parent | d0758ab2aa06901cdbea6ca0ebe73f616950dffb (diff) | |
download | gcc-97ebd9cda986b3ec7e288e2afc084c0e1f67c619.tar.gz |
Add ns* as operating systems; default to ns2 for NeXT.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@7007 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config.sub')
-rwxr-xr-x | gcc/config.sub | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/gcc/config.sub b/gcc/config.sub index b21500e862d..ff0323bf973 100755 --- a/gcc/config.sub +++ b/gcc/config.sub @@ -340,7 +340,13 @@ case $basic_machine in ;; next) basic_machine=m68k-next - os=-bsd + case $os in + -ns2*) + ;; + *) + $os=-ns3 + ;; + esac ;; nh3000) basic_machine=m68k-harris @@ -539,7 +545,7 @@ case $os in | -nindy* | -vxworks* | -ebmon* | -hms* | -mvs* | -clix* \ | -riscos* | -linux* | -uniplus* | -iris* | -rtu* | -xenix* \ | -hiux* | -386bsd* | -netbsd* | -freebsd* | -riscix* \ - | -lynxos* | -bosx* ) + | -lynxos* | -bosx* | -ns*) ;; -sunos5*) os=`echo $os | sed -e 's|sunos5|solaris2|'` |