diff options
author | Richard Earnshaw <erich@gnu.org> | 1993-10-03 16:50:05 +0000 |
---|---|---|
committer | Richard Earnshaw <erich@gnu.org> | 1993-10-03 16:50:05 +0000 |
commit | 32620c1a4214d8091b4fae9a7158585e942869ae (patch) | |
tree | 05770a6d9b85d7b68f0baefb5ec2bff156725ddc | |
parent | 44d971f540431d11b8a02d7590dfb789762f08df (diff) | |
download | gcc-32620c1a4214d8091b4fae9a7158585e942869ae.zip gcc-32620c1a4214d8091b4fae9a7158585e942869ae.tar.gz gcc-32620c1a4214d8091b4fae9a7158585e942869ae.tar.bz2 |
Recognize operating system "riscix*"; recognize acorn as vendor
From-SVN: r5566
-rwxr-xr-x | gcc/config.sub | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gcc/config.sub b/gcc/config.sub index db61b9d..90689dc 100755 --- a/gcc/config.sub +++ b/gcc/config.sub @@ -518,7 +518,7 @@ case $os in | -amigados* | -msdos* | -newsos* | -unicos* | -aos* \ | -nindy* | -vxworks* | -ebmon* | -hms* | -mvs* | -clix* \ | -riscos* | -linux* | -uniplus* | -iris* | -rtu* | -xenix* \ - | -386bsd* | -netbsd* | -lynxos*) + | -386bsd* | -netbsd* | -riscix* | -lynxos*) ;; -sunos5*) os=`echo $os | sed -e 's|sunos5|solaris2|'` @@ -587,6 +587,9 @@ else # system, and we'll never get to this point. case $basic_machine in + *-acorn) + os=-riscix1.2 + ;; *-dec | vax-*) os=-ultrix4.2 ;; @@ -671,6 +674,9 @@ vendor=unknown case $basic_machine in *-unknown) case $os in + -riscix*) + vendor=acorn + ;; -sunos*) vendor=sun ;; |