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
From tools/cpp/unix_cc_configure:
tools/cpp/unix_cc_configure
… ) + _add_linker_option_if_supported( repository_ctx, cc, "-Wl,-no-as-needed", "-no-as-needed", ) + _add_linker_option_if_supported( …
There is no -no-as-needed option to ld. That translates to --nmagic --output=-as-needed if I read the manpage correctly. Gotta love optparse.
-no-as-needed
ld
--nmagic --output=-as-needed
@mhlopko, you might want to change this.
The text was updated successfully, but these errors were encountered:
For GNU ld, the manpage states "For options whose names are multiple letters, either one dash or two can precede the option name"...
Sorry, something went wrong.
Ok, nice.
No branches or pull requests
From
tools/cpp/unix_cc_configure
:There is no
-no-as-needed
option told
. That translates to--nmagic --output=-as-needed
if I read the manpage correctly. Gotta love optparse.@mhlopko, you might want to change this.
The text was updated successfully, but these errors were encountered: