[clang] [Clang][Driver] Revise Cygwin ToolChain to call linker directly (PR #147960)
via cfe-commits
cfe-commits at lists.llvm.org
Thu Jul 10 10:30:18 PDT 2025
================
@@ -1504,6 +1506,7 @@ void ToolChain::AddCXXStdlibLibArgs(const ArgList &Args,
switch (Type) {
case ToolChain::CST_Libcxx:
CmdArgs.push_back("-lc++");
+ CmdArgs.push_back("-lc++abi");
----------------
jeremyd2019 wrote:
I'm concerned about this change. Why is this not needed already? Should Cygwin consider merging libc++abi into libc++ as I think MinGW builds do?
https://github.com/llvm/llvm-project/pull/147960
More information about the cfe-commits
mailing list