1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-19 10:53:58 +00:00

Merge r236137 from x86:

Enable GNU hash generation for dynamic ELF binaries.

While at it, sync the order of options with x86 and pass along the verbose
flag.
This commit is contained in:
Marius Strobl 2012-05-30 20:13:49 +00:00
parent 749a52693c
commit a985a6f303
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=236329

View File

@ -45,14 +45,16 @@ Boston, MA 02110-1301, USA. */
#define LINK_SPEC "%(link_arch) \
%{!mno-relax:%{!r:-relax}} \
%{p:%nconsider using `-pg' instead of `-p' with gprof(1)} \
%{v:-V} \
%{assert*} %{R*} %{rpath*} %{defsym*} \
%{shared:-Bshareable %{h*} %{soname*}} \
%{symbolic:-Bsymbolic} \
%{!shared: \
%{!static: \
%{rdynamic:-export-dynamic} \
%{!dynamic-linker:-dynamic-linker %(fbsd_dynamic_linker) }} \
%{static:-Bstatic}}"
%{static:-Bstatic}} \
%{!static:--hash-style=both} \
%{symbolic:-Bsymbolic}"
/************************[ Target stuff ]***********************************/