diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1996-09-16 19:33:14 -0700 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1996-09-16 19:33:14 -0700 |
commit | 0f220a3ef3c30ccd8a3f258e15c67c8ad2e7d9e6 (patch) | |
tree | 0954f6fc470767e0e0951f0c926f21bffae49cb2 | |
parent | 8d4812411e608e9e61e22cdd046945885eaa5478 (diff) | |
download | gcc-0f220a3ef3c30ccd8a3f258e15c67c8ad2e7d9e6.zip gcc-0f220a3ef3c30ccd8a3f258e15c67c8ad2e7d9e6.tar.gz gcc-0f220a3ef3c30ccd8a3f258e15c67c8ad2e7d9e6.tar.bz2 |
(LINK_SPEC, SUBTARTGET_SWITCHES): Delete.
(LIB_SPEC): Define to just -lc.
(STARTFILE_SPEC): Define to empty.
From-SVN: r12727
-rw-r--r-- | gcc/config/m68k/m68kemb.h | 35 |
1 files changed, 6 insertions, 29 deletions
diff --git a/gcc/config/m68k/m68kemb.h b/gcc/config/m68k/m68kemb.h index 8ce3474..016a13b 100644 --- a/gcc/config/m68k/m68kemb.h +++ b/gcc/config/m68k/m68kemb.h @@ -42,35 +42,12 @@ #define CPP_PREDEFINES "-Dmc68000 -D__embedded__ -Asystem(embedded) \ -Amachine(mc68000)" -#undef LINK_SPEC -#define LINK_SPEC "\ - %{midp: %{!Ttext*: -Ttext 0x00010000}} \ - %{mbcc: %{!Ttext*: -Ttext 0x00003000}} \ - %{mmvme135: %{!Ttext*: -Ttext 0x00005000}} \ - %{mmvme162: %{!Ttext*: -Ttext 0x00010000}}" +/* Override the default LIB_SPEC from gcc.c. We don't currently support + profiling, or libg.a -/* Use the target specific crt0 and libgloss/newlib libraries if desired */ -#undef STARTFILE_SPEC -#define STARTFILE_SPEC "\ - %{midp: idp-crt0.o} \ - %{mbcc: bcc-crt0.o} \ - %{mmvme135: mvme135-crt0.o} \ - %{mmvme162: mvme162-crt0.o}" +#define LIB_SPEC "-lc" - /* We must always include -lc at least once. If we use a board specific - library, we must include -lc before and after the board specific - library. */ -#undef LIB_SPEC -#define LIB_SPEC "\ - -lc \ - %{mmvme135:-lmvme135 -lc} \ - %{mmvme162:-lmvme162 -lc} \ - %{midp:-lidp -lc} \ - %{mbcc:-lbcc -lc}" +/* Make this be null, since we want the crt0.o to come from the linker + script */ -#undef SUBTARGET_SWITCHES -#define SUBTARGET_SWITCHES \ - { "mvme135", 0 }, \ - { "mvme162", 0 }, \ - { "bcc", 0}, \ - { "idp", 0 }, +#define STARTFILE_SPEC "" |