1996-09-18 05:35:50 +00:00
|
|
|
/* Configuration for an i386 running GNU with ELF as the target machine. */
|
|
|
|
|
1999-08-26 09:30:50 +00:00
|
|
|
#undef TARGET_VERSION
|
|
|
|
#define TARGET_VERSION fprintf (stderr, " (i386 GNU)");
|
1996-09-18 05:35:50 +00:00
|
|
|
|
2003-07-11 03:40:53 +00:00
|
|
|
#undef TARGET_OS_CPP_BUILTINS /* config.gcc includes i386/linux.h. */
|
|
|
|
#define TARGET_OS_CPP_BUILTINS() \
|
|
|
|
do \
|
|
|
|
{ \
|
2004-07-28 03:11:36 +00:00
|
|
|
HURD_TARGET_OS_CPP_BUILTINS(); \
|
2003-07-11 03:40:53 +00:00
|
|
|
if (flag_pic) \
|
|
|
|
{ \
|
|
|
|
builtin_define ("__PIC__"); \
|
|
|
|
builtin_define ("__pic__"); \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
while (0)
|
1999-10-16 06:09:09 +00:00
|
|
|
|
|
|
|
#undef CPP_SPEC
|
2003-07-11 03:40:53 +00:00
|
|
|
#define CPP_SPEC "%{posix:-D_POSIX_SOURCE} %{bsd:-D_BSD_SOURCE}"
|
1999-10-16 06:09:09 +00:00
|
|
|
|
|
|
|
#undef CC1_SPEC
|
|
|
|
#define CC1_SPEC "%(cc1_cpu)"
|
|
|
|
|
1996-09-18 05:35:50 +00:00
|
|
|
#undef LINK_SPEC
|
|
|
|
#define LINK_SPEC "-m elf_i386 %{shared:-shared} \
|
|
|
|
%{!shared: \
|
1999-08-26 09:30:50 +00:00
|
|
|
%{!static: \
|
|
|
|
%{rdynamic:-export-dynamic} \
|
|
|
|
%{!dynamic-linker:-dynamic-linker /lib/ld.so}} \
|
|
|
|
%{static:-static}}"
|
1996-09-18 05:35:50 +00:00
|
|
|
|
1999-10-16 06:09:09 +00:00
|
|
|
#undef STARTFILE_SPEC
|
|
|
|
#define STARTFILE_SPEC \
|
|
|
|
"%{!shared: \
|
|
|
|
%{!static: \
|
|
|
|
%{pg:gcrt1.o%s} %{!pg:%{p:gcrt1.o%s} %{!p:crt1.o%s}}} \
|
|
|
|
%{static:crt0.o%s}} \
|
2002-02-01 18:16:02 +00:00
|
|
|
crti.o%s %{static:crtbeginT.o%s}\
|
|
|
|
%{!static:%{!shared:crtbegin.o%s} %{shared:crtbeginS.o%s}}"
|
|
|
|
|
|
|
|
/* FIXME: Is a Hurd-specific fallback mechanism necessary? */
|
|
|
|
#undef MD_FALLBACK_FRAME_STATE_FOR
|