We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Linking FreeBSD/arm64 libc after r282295: % bin/ld.lld $(cat response.txt ) entry symbol not found, assuming 0 feynman% echo $? 1
with r282295 reverted: % bin/ld.lld $(cat response.txt ) % echo $? 0
The build fails due to the non-zero exit code. Reproduction cpio available at https://people.freebsd.org/~emaste/lld/libc-repro.cpio
The text was updated successfully, but these errors were encountered:
It is because you use --fatal-warnings, I prepared a patch: D24908
Sorry, something went wrong.
Patch that removes warnings about absent of entry for -shared: https://reviews.llvm.org/D24913
rL282427
No branches or pull requests
Extended Description
Linking FreeBSD/arm64 libc after r282295:
% bin/ld.lld $(cat response.txt )
entry symbol not found, assuming 0
feynman% echo $?
1
with r282295 reverted:
% bin/ld.lld $(cat response.txt )
% echo $?
0
The build fails due to the non-zero exit code.
Reproduction cpio available at https://people.freebsd.org/~emaste/lld/libc-repro.cpio
The text was updated successfully, but these errors were encountered: