See D61825 for the temporary lld option --android-tls.
Diff Detail
Diff Detail
- Repository
- rC Clang
- Build Status
Buildable 31918 Build 31917: arc lint + arc unit
Event Timeline
lib/Driver/ToolChains/Gnu.cpp | ||
---|---|---|
404 | The logic used for Fuschia is more precise: const char *Exec = Args.MakeArgString(ToolChain.GetLinkerPath()); if (llvm::sys::path::filename(Exec).equals_lower("ld.lld") || llvm::sys::path::stem(Exec).equals_lower("ld.lld")) { CmdArgs.push_back("-z"); CmdArgs.push_back("rodynamic"); } |
Comment Actions
This LGTM if Ryan is happy with it. Thanks for taking care of getting a workaround implemented until this can be fixed.
The logic used for Fuschia is more precise: