From 9eb83f6ce767092711c8c54fb766129c6d4c5a79 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Fri, 19 Apr 2002 18:43:11 +0000 Subject: [PATCH] rtems.h (STARTFILE_SPEC, [...]): Fix for non-ELF targets. 2002-04-19 Joel Sherrill * config/rtems.h (STARTFILE_SPEC, ENDFILE_SPEC): Fix for non-ELF targets. From-SVN: r52535 --- gcc/ChangeLog | 5 +++++ gcc/config/rtems.h | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3fe2921b00f..18c69ab928b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-04-19 Joel Sherrill + + * config/rtems.h (STARTFILE_SPEC, ENDFILE_SPEC): Fix for non-ELF + targets. + 2002-04-19 Tom Tromey * doc/install.texi (Specific): Update status of Solaris 2.8. diff --git a/gcc/config/rtems.h b/gcc/config/rtems.h index c1592617e0c..a3f9ba301b4 100644 --- a/gcc/config/rtems.h +++ b/gcc/config/rtems.h @@ -31,7 +31,7 @@ Boston, MA 02111-1307, USA. */ * needed by autoconf scripts using this compiler. */ #undef STARTFILE_SPEC -#define STARTFILE_SPEC "crt0.o%s crti.o%s crtbegin.o%s" +#define STARTFILE_SPEC "crt0.o%s" #undef ENDFILE_SPEC -#define ENDFILE_SPEC "crtend.o%s crtn.o%s" +#define ENDFILE_SPEC "" -- 2.30.2