[PATCH] D89152: [lld][WebAssembly] Add support for -Bsymbolic
Fangrui Song via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Oct 9 11:41:38 PDT 2020
MaskRay added inline comments.
================
Comment at: lld/wasm/Driver.cpp:496
+ if (config->bsymbolic && (!config->pie && !config->shared)) {
+ warn("-Bsymbolic is only meaningful when combined with -shared, or -pie");
+ }
----------------
In ELF, -Bsymbolic is redundant for executables (-no-pie or -pie).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D89152/new/
https://reviews.llvm.org/D89152
More information about the llvm-commits
mailing list