diff options
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | 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 <joel@OARcorp.com> + + * config/rtems.h (STARTFILE_SPEC, ENDFILE_SPEC): Fix for non-ELF + targets. + 2002-04-19 Tom Tromey <tromey@redhat.com> * 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 "" |

