Page MenuHomeFreeBSD

amd64: do not pass -z rodynamic to ld.bfd when building vdso
ClosedPublic

Authored by kib on Oct 18 2024, 2:21 PM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Dec 19, 1:57 AM
Unknown Object (File)
Tue, Dec 10, 3:33 AM
Unknown Object (File)
Sun, Dec 8, 4:31 AM
Unknown Object (File)
Thu, Dec 5, 3:37 AM
Unknown Object (File)
Nov 7 2024, 9:49 PM
Unknown Object (File)
Nov 7 2024, 7:42 AM
Unknown Object (File)
Nov 7 2024, 7:25 AM
Unknown Object (File)
Nov 7 2024, 5:51 AM
Subscribers

Details

Summary

Apparently newer versions of binutils complain instead of silently ignoring the unknown -z option.

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

kib requested review of this revision.Oct 18 2024, 2:21 PM

Not sure how to make kernel old way (config && make) with cross-toolchain.

Also, what is the idiomatic way to distinguish ld.bfd from ld.lld?

For Makefiles we have bsd.linker.mk that sets LINKER_TYPE, with a similar sort of approach to what you've done here. It uses sed to extract the first line of output from ld -v and then various bits of make magic to examine parts of that.

In ports we check ${/usr/bin/ld:L:tA} == /usr/bin/ld.lld to determine if lld is the default linker (from when it was only so on some archs).

For Makefiles we have bsd.linker.mk that sets LINKER_TYPE, with a similar sort of approach to what you've done here. It uses sed to extract the first line of output from ld -v and then various bits of make magic to examine parts of that.

So I am leaving the check as is. IMO it is not worth additional complications to add sed there.

In ports we check ${/usr/bin/ld:L:tA} == /usr/bin/ld.lld to determine if lld is the default linker (from when it was only so on some archs).

One minor comment update

sys/tools/amd64_vdso.sh
43
This revision is now accepted and ready to land.Oct 18 2024, 5:16 PM
This revision was automatically updated to reflect the committed changes.
kib marked an inline comment as done.