diff options
author | roland <roland@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-08-02 00:05:29 +0000 |
---|---|---|
committer | roland <roland@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-08-02 00:05:29 +0000 |
commit | a81eb148856e6a467c4e54f22f4f90b23417ce58 (patch) | |
tree | faf4b0734e7b9ed058ae849fb97d1df5326271c6 /gcc/config/i386/gnu.h | |
parent | f43d43691c2de3656d2a258052c718fa6cc5c559 (diff) | |
download | gcc-a81eb148856e6a467c4e54f22f4f90b23417ce58.tar.gz |
Initial revision
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@7846 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/i386/gnu.h')
-rw-r--r-- | gcc/config/i386/gnu.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/gcc/config/i386/gnu.h b/gcc/config/i386/gnu.h new file mode 100644 index 00000000000..a4bb67a2e67 --- /dev/null +++ b/gcc/config/i386/gnu.h @@ -0,0 +1,17 @@ +/* Configuration for an i386 running GNU as the target machine. */ + +/* We do want to add an underscore to the front of each user symbol. + i386/gas.h checks this. */ +#define YES_UNDERSCORES + +#include "i386/gstabs.h" + +/* Get perform_* macros to build libgcc.a. */ +#include "i386/perform.h" + +#undef CPP_PREDEFINES +#define CPP_PREDEFINES "-Dunix -Di386 -DMACH -Asystem(unix) -Asystem(mach) -Acpu(i386) -Amachine(i386) -D__GNU__ -Asystem(gnu)" + +/* Don't default to pcc-struct-return, because gcc is the only compiler, and + we want to retain compatibility with older gcc versions. */ +#define DEFAULT_PCC_STRUCT_RETURN 0 |