https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=220103

--- Comment #21 from Michal Meloun <m...@freebsd.org> ---
Finally, I think I know what's going on. But I warn, it's a really crazy story.
And not, this problen is not related to
https://bugs.llvm.org/show_bug.cgi?id=40176.

FACT:
Linker version script of all affected ports is and has always been invalid (or,
at least, incompatible with FreeBSD).  On FreeBSD, symbols originated from
/lib/crt*.o must stay global. Nothing else.

FIX:
At least 'environ' and '__progname' should be put into the global section of
the linker script. We do it right for other ports (multimedia/mpv,
net/asterisk16), there is no reason not to do it for others.
Why nobody noticed this until now? 
The old in base ld.bfd is very buggy in this area. It doesn't reflect local
binding requested by linker script and, moreover, it emits given symbols
duplicated. Once without version, second time with requested version.
FreeBSD 11, in base ld.bfd is used for linking:
# readelf -s mplayer | grep environ
 935: 000000000056b8e0 8 OBJECT  GLOBAL DEFAULT   27 environ@@MPLAYER_1 (2)
5384: 000000000056b8e0 8 OBJECT  GLOBAL DEFAULT   27 environ

It's very clear that this is invalid result, but it's also clear that this also
negates requested effect of given linker script, so resulting binary is
workable.

Should be this problem detected on link time?  Yes, it should.
This is a real (and, in this case, only one) bug in ld.ldd.  It should quit
with error message instead of producing not load time linkable binary. 

As quick verification, you can replace default system linker by ld.bfd from
binutils. 
In this case, final linking always fails (on FBSD11, 12, current) with: 
/usr/bin/ld: mplayer: local symbol '__progname' in /usr/lib/crt1.o is
referenced by DSO

Dim, please, can you submit this but to llvm bugzila?
Michal

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
_______________________________________________
freebsd-toolchain@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-toolchain
To unsubscribe, send any mail to "freebsd-toolchain-unsubscr...@freebsd.org"

Reply via email to