gnu.h revision 50397
1/* Configuration for an i386 running GNU with ELF as the target machine.  */
2
3/* This does it mostly for us.  */
4#include <i386/linux.h>
5
6#undef CPP_PREDEFINES
7#define CPP_PREDEFINES "-Di386 -Acpu(i386) -Amachine(i386) \
8-Dunix -Asystem(unix)  -DMACH -Asystem(mach) -D__GNU__ -Asystem(gnu)"
9
10#undef TARGET_VERSION
11#define TARGET_VERSION fprintf (stderr, " (i386 GNU)");
12
13#undef	LINK_SPEC
14#define LINK_SPEC "-m elf_i386 %{shared:-shared} \
15  %{!shared: \
16    %{!static: \
17      %{rdynamic:-export-dynamic} \
18      %{!dynamic-linker:-dynamic-linker /lib/ld.so}} \
19    %{static:-static}}"
20
21
22/* Get machine-independent configuration parameters for the GNU system.  */
23#include <gnu.h>
24