diff options
author | Richard Stallman <rms@gnu.org> | 1992-07-03 20:33:43 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1992-07-03 20:33:43 +0000 |
commit | a4571ead953a29bcc03b351ad4cbd8bb77535125 (patch) | |
tree | d4f185118363b6b2377d14d67f3437f8ae9ef223 /gcc | |
parent | c9c30903ff09c274da82aafc1f1d6f762dd1ba04 (diff) | |
download | gcc-a4571ead953a29bcc03b351ad4cbd8bb77535125.zip gcc-a4571ead953a29bcc03b351ad4cbd8bb77535125.tar.gz gcc-a4571ead953a29bcc03b351ad4cbd8bb77535125.tar.bz2 |
(TARGET_VERSION): Definitions added.
(CPP_PREDEFINES): Predefine __svr3__ rather than SVR3.
From-SVN: r1406
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/i860/sysv3.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/config/i860/sysv3.h b/gcc/config/i860/sysv3.h index 51c262a..f1ed4df 100644 --- a/gcc/config/i860/sysv3.h +++ b/gcc/config/i860/sysv3.h @@ -22,9 +22,12 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "i860.h" #include "svr3.h" +#undef TARGET_VERSION +#define TARGET_VERSION fprintf (stderr, " (i860, System V Release 3)") + /* Provide a set of pre-definitions and pre-assertions appropriate for the i860 running svr3. */ -#define CPP_PREDEFINES "-Di860 -Dunix -DSVR3" +#define CPP_PREDEFINES "-Di860 -Dunix -D__svr3__" /* Use crt1.o as a startup file and crtn.o as a closing file. */ |