netbsd-elf.h (LINK_SPEC): Rename to...

* config/netbsd-elf.h (LINK_SPEC): Rename to...
(NETBSD_LINK_SPEC_ELF): ...this.  Use %(netbsd_entry_point)
to specify program entry point.

From-SVN: r54360
This commit is contained in:
Jason Thorpe 2002-06-08 06:07:11 +00:00 committed by Jason Thorpe
parent e50126e858
commit 6bb5d2e7c0
2 changed files with 23 additions and 13 deletions

View File

@ -1,3 +1,9 @@
2002-06-08 Jason Thorpe <thorpej@wasabisystems.com>
* config/netbsd-elf.h (LINK_SPEC): Rename to...
(NETBSD_LINK_SPEC_ELF): ...this. Use %(netbsd_entry_point)
to specify program entry point.
2002-06-07 Jeff Law <law@redhat.com
* emit-rtl.c (init_emit): Add hard registers to regno_reg_rtx.

View File

@ -67,18 +67,22 @@ Boston, MA 02111-1307, USA. */
/* Provide a LINK_SPEC appropriate for NetBSD ELF. Here we provide
support for the special GCC options -assert, -R, -rpath, -shared,
-nostdlib, -static, -rdynamic, and -dynamic-linker. */
-nostdlib, -static, -rdynamic, and -dynamic-linker.
#undef LINK_SPEC
#define LINK_SPEC \
"%{assert*} %{R*} %{rpath*} \
%{shared:-shared} \
%{!shared: \
-dc -dp \
%{!nostdlib: \
%{!r*: \
%{!e*:-e __start}}} \
%{!static: \
%{rdynamic:-export-dynamic} \
%{!dynamic-linker:-dynamic-linker /usr/libexec/ld.elf_so}} \
Target-specific code can use this in conjunction with any other
target-specific LINK_SPEC options.
Target-specific code must provide the %(netbsd_entry_point) spec. */
#define NETBSD_LINK_SPEC_ELF \
"%{assert*} %{R*} %{rpath*} \
%{shared:-shared} \
%{!shared: \
-dc -dp \
%{!nostdlib: \
%{!r*: \
%{!e*:-e %(netbsd_entry_point)}}} \
%{!static: \
%{rdynamic:-export-dynamic} \
%{!dynamic-linker:-dynamic-linker /usr/libexec/ld.elf_so}} \
%{static:-static}}"