diff options
author | Richard Stallman <rms@gnu.org> | 1993-08-03 03:13:17 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-08-03 03:13:17 +0000 |
commit | cf0e292fd009eaf1ade6fc0c7344fa77ff8ac529 (patch) | |
tree | 430732a47a8f95989e3b3491cd2e2261d20b22bd | |
parent | 5109d49f79bd30eed20e28d4a24253860e0eaa06 (diff) | |
download | gcc-cf0e292fd009eaf1ade6fc0c7344fa77ff8ac529.zip gcc-cf0e292fd009eaf1ade6fc0c7344fa77ff8ac529.tar.gz gcc-cf0e292fd009eaf1ade6fc0c7344fa77ff8ac529.tar.bz2 |
entered into RCS
From-SVN: r5057
-rw-r--r-- | gcc/config/i386/seq-sysv3.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gcc/config/i386/seq-sysv3.h b/gcc/config/i386/seq-sysv3.h new file mode 100644 index 0000000..8dcff85 --- /dev/null +++ b/gcc/config/i386/seq-sysv3.h @@ -0,0 +1,14 @@ +#include "sysv3.h" + +/* Sequent Symmetry SVr3 doesn't have crtn.o; crt1.o doesn't work + but crt0.o does. */ + +#undef STARTFILE_SPEC +#define STARTFILE_SPEC \ +"%{pg:gcrt0.o%s}\ + %{!pg:%{posix:%{p:mcrtp0.o%s}%{!p:crtp0.o%s}}\ + %{!posix:%{p:mcrt0.o%s}%{!p:crt0.o%s}}} crtbegin.o%s\ + %{p:-L/usr/lib/libp}%{pg:-L/usr/lib/libp}" + +#undef LIB_SPEC +#define LIB_SPEC "%{posix:-lcposix} %{shlib:-lc_s} -lc crtend.o%s" |