diff options
author | Joel Sherrill <joel@OARcorp.com> | 2002-04-19 18:43:11 +0000 |
---|---|---|
committer | Joel Sherrill <joel@gcc.gnu.org> | 2002-04-19 18:43:11 +0000 |
commit | 9eb83f6ce767092711c8c54fb766129c6d4c5a79 (patch) | |
tree | 61cbc0238f6d46cb15ec10abd0f565104c0604ee /gcc/config/rtems.h | |
parent | 40e7f8eaf6ac7c4862e0ac6c390ba3d42e477890 (diff) | |
download | gcc-9eb83f6ce767092711c8c54fb766129c6d4c5a79.tar.gz |
rtems.h (STARTFILE_SPEC, [...]): Fix for non-ELF targets.
2002-04-19 Joel Sherrill <joel@OARcorp.com>
* config/rtems.h (STARTFILE_SPEC, ENDFILE_SPEC): Fix for non-ELF
targets.
From-SVN: r52535
Diffstat (limited to 'gcc/config/rtems.h')
-rw-r--r-- | gcc/config/rtems.h | 4 |
1 files changed, 2 insertions, 2 deletions
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 "" |