[clang] [clang] Support --sysroot= for ${arch}-windows-msvc targets (PR #96417)
Martin Storsjö via cfe-commits
cfe-commits at lists.llvm.org
Sat Oct 11 02:25:03 PDT 2025
================
@@ -359,14 +360,17 @@ void tools::MinGW::Linker::ConstructJob(Compilation &C, const JobAction &JA,
CmdArgs.push_back("-lshell32");
CmdArgs.push_back("-luser32");
CmdArgs.push_back("-lkernel32");
+ CmdArgs.push_back("-lntdll");
----------------
mstorsjo wrote:
This PR shouldn't be your dumping ground for unrelated miscellaneous things you'd like to tweak. Keep changes related to what you're changing, and only that.
https://github.com/llvm/llvm-project/pull/96417
More information about the cfe-commits
mailing list