[Bug 221803] ftp/rexx-curl: port passes $LDFLAGS to direct linker invocation, not compiler driver
bugzilla-noreply at freebsd.org
bugzilla-noreply at freebsd.org
Fri Aug 25 13:01:31 UTC 2017
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=221803
Bug ID: 221803
Summary: ftp/rexx-curl: port passes $LDFLAGS to direct linker
invocation, not compiler driver
Product: Ports & Packages
Version: Latest
Hardware: Any
OS: Any
Status: New
Severity: Affects Only Me
Priority: ---
Component: Individual Port(s)
Assignee: freebsd-ports-bugs at FreeBSD.org
Reporter: emaste at freebsd.org
CC: bob at eager.cx
Blocks: 214864
Flags: maintainer-feedback?(bob at eager.cx)
CC: bob at eager.cx
I've been investigating the state of the ports tree with LLVM's lld installed
as /usr/bin/ld (from the exp-run in PR 214864).
Normally LDFLAGS contains flags passed to the compiler driver when invoked for
linking. One issue that affects a small number of ports is passing $LDFLAGS to
direct linker invocation (i.e, $LD), where it contains flags that are
appropriate only for the compiler driver, not the linker.
In several instances this comes from bsd.ssp.mk, which adds -fstack-protector
to LDFLAGS. GNU BFD ld accepts the flag but produces undesired output, while
lld produces an error:
ld -fstack-protector -shared -o libcfg+.so.0 ../src/cfg+.o ../src/parse.o
../src/props.o ../src/cmdline.o ../src/cfgfile.o ../src/shared.o
../src/platon/str/strplus.o ../src/platon/str/strctype.o
../src/platon/str/strdyn.o ../src/platon/str/dynfgets.o
ld: error: unknown argument: -fstack-protector
(from devel/libcfg)
(GNU ld produces output with a bogus DT_AUXILIARY "stack-protector" entry for
this case.)
This affects at least the following ports:
www/mod_jk
devel/libcfg
arabic/libitl
www/tdom
www/dummyflash
ftp/rexx-curl
ftp/rexx-curl build log excerpt when linking with lld:
ld -Bdynamic -Bshareable -fstack-protector -fstack-protector -o
librexxcurl.so rexxcurl.so.o rxpack.so.o rxmt_posix.so.o -L/usr/local/lib
-lcurl -L/usr/local/lib -lregina -lm
ld: error: unknown argument: -fstack-protector
ld: error: unknown argument: -fstack-protector
Referenced Bugs:
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=214864
[Bug 214864] [exp-run] test build with lld as /usr/bin/ld
--
You are receiving this mail because:
You are the assignee for the bug.
More information about the freebsd-ports-bugs
mailing list