diff options
author | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-03-21 19:42:11 +0000 |
---|---|---|
committer | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-03-21 19:42:11 +0000 |
commit | 33a0ea3cd02a3d94c6bd1e91808a298edbba2d90 (patch) | |
tree | d0712eee74dafa85719c8d173bec1f868f4d5ebc | |
parent | 7f2a25131740a932918e3b9c21a6b225ec3f91cf (diff) | |
download | gcc-33a0ea3cd02a3d94c6bd1e91808a298edbba2d90.tar.gz |
(STARTFILE_SPEC,LINK_SPEC): Define.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@11586 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/config/sparc/splet.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gcc/config/sparc/splet.h b/gcc/config/sparc/splet.h index ae131ead2e4..2dc582b3e6f 100644 --- a/gcc/config/sparc/splet.h +++ b/gcc/config/sparc/splet.h @@ -29,3 +29,11 @@ Boston, MA 02111-1307, USA. */ #undef SUBTARGET_SWITCHES #define SUBTARGET_SWITCHES \ {"live-g0", MASK_LIVE_G0}, + +/* Require the user to supply crt0.o. */ +#undef STARTFILE_SPEC +#define STARTFILE_SPEC "" + +/* Don't need any special link spec. */ +#undef LINK_SPEC +#define LINK_SPEC "" |