diff options
author | Richard Stallman <rms@gnu.org> | 1992-03-13 19:58:13 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1992-03-13 19:58:13 +0000 |
commit | e6a4f4df2088298148147980e92a5b448d6b1767 (patch) | |
tree | 22047e71ce4c5d5ab5bf2bcd1cabe66b2a5d2486 | |
parent | 84eba7523524eb031fb70db8d6a249a601b69d23 (diff) | |
download | gcc-e6a4f4df2088298148147980e92a5b448d6b1767.zip gcc-e6a4f4df2088298148147980e92a5b448d6b1767.tar.gz gcc-e6a4f4df2088298148147980e92a5b448d6b1767.tar.bz2 |
*** empty log message ***
From-SVN: r466
-rw-r--r-- | gcc/config/i386/isccoff.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/i386/isccoff.h b/gcc/config/i386/isccoff.h index a4eac91..bfe5a83 100644 --- a/gcc/config/i386/isccoff.h +++ b/gcc/config/i386/isccoff.h @@ -6,11 +6,11 @@ #include "i386v.h" -/* Use crt0.o or crt1.o as a startup file and crtn.o as a closing file. */ +/* Use crt1.o, not crt0.o, as a startup file, and crtn.o as a closing file. */ #undef STARTFILE_SPEC #define STARTFILE_SPEC \ - "%{!shlib:%{posix:%{pg:mcrtp1.o%s}%{!pg:%{p:mcrtp1.o%s}%{!p:crtp0.o%s}}}\ - %{!posix:%{pg:mcrt0.o%s}%{!pg:%{p:mcrt0.o%s}%{!p:crt0.o%s}}\ + "%{!shlib:%{posix:%{pg:mcrtp1.o%s}%{!pg:%{p:mcrtp1.o%s}%{!p:crtp1.o%s}}}\ + %{!posix:%{pg:mcrt1.o%s}%{!pg:%{p:mcrt1.o%s}%{!p:crt1.o%s}}\ %{p:-L/lib/libp} %{pg:-L/lib/libp}}}\ %{shlib:%{posix:crtp1.o%s}%{!posix:crt1.o%s}} crtbegin.o%s" |