diff options
author | pthomas <pthomas@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-02-17 18:14:50 +0000 |
---|---|---|
committer | pthomas <pthomas@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-02-17 18:14:50 +0000 |
commit | a3b8e0046c247f7028e20756f2886df14e0a9669 (patch) | |
tree | 1ad835836c52b4a18770e43fc1f3876523979591 /gcc/config/cris | |
parent | 81c3eb11561d803158287628b6c750e3f24d8a18 (diff) | |
download | gcc-a3b8e0046c247f7028e20756f2886df14e0a9669.tar.gz |
2002-02-17 Philipp Thomas <pthomas@suse.de>
* config/cris/cris.h: Undefine STARTFILE_SPEC and
ENDFILE_SPEC before (re)defining them.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@49823 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/cris')
-rw-r--r-- | gcc/config/cris/cris.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/config/cris/cris.h b/gcc/config/cris/cris.h index 84d0e89742d..e2cb514a7d1 100644 --- a/gcc/config/cris/cris.h +++ b/gcc/config/cris/cris.h @@ -231,6 +231,7 @@ extern const char *cris_elinux_stacksize_str; link them to crt0.o to be prepared. Use scrt0.c if running the simulator, linear style, or s2crt0.c if fixed style. */ /* We need to remove any previous definition (elfos.h). */ +#undef STARTFILE_SPEC #define STARTFILE_SPEC \ "%{sim2:s2crt0.o%s}\ %{!sim2:%{sim:scrt0.o%s}\ @@ -238,6 +239,7 @@ extern const char *cris_elinux_stacksize_str; %{!pg:%{p:mcrt0.o%s}%{!p:crt0.o%s}}}}\ crtbegin.o%s" +#undef ENDFILE_SPEC #define ENDFILE_SPEC "crtend.o%s" #define EXTRA_SPECS \ |