diff options
author | Per Bothner <bothner@gcc.gnu.org> | 1996-06-04 21:12:46 -0700 |
---|---|---|
committer | Per Bothner <bothner@gcc.gnu.org> | 1996-06-04 21:12:46 -0700 |
commit | 486086f34213c6b34ec71a94207a2263bba7bbc9 (patch) | |
tree | 9d9267e49f2eb38f1aab1c5b2f19eaee572a60ee /gcc/config.guess | |
parent | f537695d6332d04ed25d6364af6b1c7a27e03752 (diff) | |
download | gcc-486086f34213c6b34ec71a94207a2263bba7bbc9.zip gcc-486086f34213c6b34ec71a94207a2263bba7bbc9.tar.gz gcc-486086f34213c6b34ec71a94207a2263bba7bbc9.tar.bz2 |
config.guess: Combine mips-mips-riscos cases, and use cpp to distinguish sysv/svr4/bsd variants.
* config.guess: Combine mips-mips-riscos cases, and use cpp to
distinguish sysv/svr4/bsd variants.
From-SVN: r12159
Diffstat (limited to 'gcc/config.guess')
-rwxr-xr-x | gcc/config.guess | 26 |
1 files changed, 21 insertions, 5 deletions
diff --git a/gcc/config.guess b/gcc/config.guess index e725476..b9105a9 100755 --- a/gcc/config.guess +++ b/gcc/config.guess @@ -116,11 +116,27 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in VAX*:ULTRIX*:*:*) echo vax-dec-ultrix${UNAME_RELEASE} exit 0 ;; - mips:*:4*:UMIPS) - echo mips-mips-riscos4sysv - exit 0 ;; - mips:*:5*:RISCos) - echo mips-mips-riscos${UNAME_RELEASE} + mips:*:*:UMIPS | mips:*:*:RISCos) + sed 's/^ //' << EOF >dummy.c + int main (argc, argv) int argc; char **argv; { + #if defined (host_mips) && defined (MIPSEB) + #if defined (SYSTYPE_SYSV) + printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); + #endif + #if defined (SYSTYPE_SVR4) + printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); + #endif + #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) + printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); + #endif + #endif + exit (-1); + } +EOF + ${CC-cc} dummy.c -o dummy && ./dummy "${UNAME_RELEASE}" \ + && rm dummy.c dummy && exit 0 + rm -f dummy.c dummy + echo mips-mips-riscos{UNAME_RELEASE} exit 0 ;; Night_Hawk:Power_UNIX:*:*) echo powerpc-harris-powerunix |