diff options
author | Richard Stallman <rms@gnu.org> | 1993-06-25 21:35:23 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-06-25 21:35:23 +0000 |
commit | f7c680ed1edc45ec9e66e75685ffb46da93e3a0f (patch) | |
tree | a234be2f9897b69a393672433d4959284e00f0c8 /gcc | |
parent | 4381295b18dd8b1dd893deb66511394e7e15f927 (diff) | |
download | gcc-f7c680ed1edc45ec9e66e75685ffb46da93e3a0f.zip gcc-f7c680ed1edc45ec9e66e75685ffb46da93e3a0f.tar.gz gcc-f7c680ed1edc45ec9e66e75685ffb46da93e3a0f.tar.bz2 |
(CPP_PREDEFINES): Have two alternatives,
one for motorola and one for not motorola.
From-SVN: r4732
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/m68k/news.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/config/m68k/news.h b/gcc/config/m68k/news.h index 5971bc8..6073710 100644 --- a/gcc/config/m68k/news.h +++ b/gcc/config/m68k/news.h @@ -38,7 +38,11 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* These are the ones defined by Sony, plus mc68000 for uniformity with GCC on other 68000 systems. */ +#ifdef MOTOROLA +#define CPP_PREDEFINES "-Dunix -Dbsd43 -Dsony -Dsony_news -Dmc68000 -Dmc68020 -Dnews700 -D__motorola__" +#else #define CPP_PREDEFINES "-Dunix -Dbsd43 -Dsony -Dsony_news -Dmc68000 -Dmc68020 -Dnews700" +#endif /* These conditionals tested for different submodels, but they were incorrect since they tested the host rather than the target. |