diff options
author | Niklas Hallqvist <niklas@gnu.org> | 1993-01-23 23:25:55 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@gnu.org> | 1993-01-23 23:25:55 +0000 |
commit | 8b710c4f2433a31b8463831e1d718dc43595c373 (patch) | |
tree | 7c9aab9dff852ab80af4b67de8064511187f0047 /gcc | |
parent | 6b02c31649817adc027437b8e6e8900e1175a80b (diff) | |
download | gcc-8b710c4f2433a31b8463831e1d718dc43595c373.zip gcc-8b710c4f2433a31b8463831e1d718dc43595c373.tar.gz gcc-8b710c4f2433a31b8463831e1d718dc43595c373.tar.bz2 |
tower.h (LIB_SPEC): Use %s instead of absolute path.
* config/m68k/tower.h (LIB_SPEC): Use %s instead of absolute path.
(STARTFILE_SPEC): Moved here from tower-as.h. Use %s instead of
absolute path.
From-SVN: r3312
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/m68k/tower.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gcc/config/m68k/tower.h b/gcc/config/m68k/tower.h index c205f9f..11cc2c3 100644 --- a/gcc/config/m68k/tower.h +++ b/gcc/config/m68k/tower.h @@ -70,8 +70,10 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ %{m68881:-L/usr/lib/fp}" #define LIB_SPEC \ -"%{shlib:-lc_s} -lc crtend.o%s \ - %{m68881:/usr/lib/fp/crtn.o}%{!m68881:/lib/crtn.o}" +"%{shlib:-lc_s} -lc crtend.o%s crtn.o%s" + +#define STARTFILE_SPEC \ +"%{p:mcrt1.o%s} %{!p:crt1.o%s} crtbegin.o%s" /* Use mem* functions, recognize #ident lines. */ |