diff options
author | Roland McGrath <roland@gcc.gnu.org> | 1994-12-06 07:29:38 +0000 |
---|---|---|
committer | Roland McGrath <roland@gcc.gnu.org> | 1994-12-06 07:29:38 +0000 |
commit | 4e1eb519d63563152e302d5707f93d7f94f431ec (patch) | |
tree | 50de423a6b1917f22bb58c6fcc1a07bd7b0c7a6a | |
parent | c0a39485139bc6991dabea1287178fa654c78285 (diff) | |
download | gcc-4e1eb519d63563152e302d5707f93d7f94f431ec.zip gcc-4e1eb519d63563152e302d5707f93d7f94f431ec.tar.gz gcc-4e1eb519d63563152e302d5707f93d7f94f431ec.tar.bz2 |
(dummy.c) [sony]: Include <sys/param.h> and emit newsos4 #ifdef NEWSOS4.
From-SVN: r8611
-rwxr-xr-x | gcc/config.guess | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/gcc/config.guess b/gcc/config.guess index de048e0..c96a20a 100755 --- a/gcc/config.guess +++ b/gcc/config.guess @@ -377,7 +377,14 @@ main () I don't know.... */ printf ("mips-sony-bsd\n"); exit (0); #else - printf ("m68k-sony-newsos\n"); exit (0); +#include <sys/param.h> + printf ("m68k-sony-newsos%s\n", +#ifdef NEWSOS4 + "4" +#else + "" +#endif + ); exit (0); #endif #endif |