Add an option to directly specify where the msvc toolchain lives for clang-cl and avoid unwanted file and registry probes.
Details
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Once accepted, someone else will need to submit on my behalf.
clang/lib/Driver/ToolChains/MSVC.cpp | ||
---|---|---|
74 | Deliberately not validating the input. The primary motivation is to prevent unnecessary file and registry access. |
Could you please explain a little bit more what motivated this change? You can achieve almost the same with env VCToolsInstallDir=F:\Your_Path\ clang-cl .... You would also want to pass -fmsc-version=... to avoid extracting the version from cl.exe. If you're seeing many file and registry accesses, then clang-cl probably runs without a call to vcvarsall.bat before?
The build system strives to be deterministic so all file probes need to be accounted for; environment variables are also problematic. Our builds deliberately don't run from a Visual Studio command prompt. In addition, we'd like to avoid coupling clang tools that don't perform codegen to link.exe. We do use -fmsc-version= during the build.
When you say build system, you mean MSBuild? Other? For example, Fastbuild purposely calls CreateProcess with an empty environment block (not null) to avoid determinism issues. Is that your case? We are also using -nostdinc to avoid any compiler-generated include paths, even in cases where you need to repro something in a VS cmd shell.
The patch looks good otherwise, modulo the comments. + @amccarth @dblaikie for more opinions.
clang/lib/Driver/ToolChains/MSVC.cpp | ||
---|---|---|
74 | I would add what you said above as a comment. It is interesting for future readers of this code, and avoids digging the history for intent. | |
clang/test/Driver/cl-options.c | ||
686 | Check that we're not detecting a local installation, and that we fallback to the default triple 19.11, ie. // RUN: %clang_cl ... -vctoolsdir "" -### | FileCheck %s --check-prefix VCTOOLSDIR // VCTOOLSDIR: "-cc1" "-triple" "x86_64-pc-windows-msvc19.11.0" |
We use BuildXL. Thanks for the comments. I'll make the requested changes and get a new rev posted.
clang/test/Driver/cl-options.c | ||
---|---|---|
685 | One more thing: I would avoid long lines, and try to stay as much as possible within the 80 char per line limit. There's no hard rule for the tests as you can see in the file above, but it's a nice to have. |
Thanks, one more minor thing and it should be good to go.
clang/lib/Driver/ToolChains/MSVC.cpp | ||
---|---|---|
763–764 | Please update these comments, and maybe state that the order of execution is important (for the reason you mention above) |
How does the build system work with regular cl.exe if environment variables are problematic?
clang/lib/Driver/ToolChains/MSVC.cpp | ||
---|---|---|
73 | What will the error look like if the user sets this but gets it wrong? I'm sympathetic to not wanting to validate it, but if it's wrong it would be nice if the error isn't too cryptic. | |
clang/test/Driver/cl-options.c | ||
686 | Maybe add a comment explaining the purpose of the test. And would it be possible to have a test where -vctoolsdir is set to something, to see that it's picked up correctly? |
@hans the explicit path must be declared, all exes and dlls. The unexpected probes for link.exe when invoking clang-cl.exe when it isn't actually going to be invoked are what we want to avoid.
clang/lib/Driver/ToolChains/MSVC.cpp | ||
---|---|---|
73 | D:\>clang-cl -vctoolsdir fake main.cpp clang-cl: error: unable to execute command: program not executable clang-cl: error: linker command failed with exit code 1 (use -v to see invocation) | |
clang/test/Driver/cl-options.c | ||
686 | What's the expectation on the test boxes? I can author such a test but it would be very brittle unless we have a spec for how VS should be installed. |
clang/lib/Driver/ToolChains/MSVC.cpp | ||
---|---|---|
73 | I realize this is not because of your patch, but it would be nice if this error could be more clear. Ideally it would at least print the path to what's failing to execute. Would you be willing to add that? | |
clang/test/Driver/cl-options.c | ||
686 | I'd suggest passing -vctoolsdir "/foo" and check that some /foo dir is getting passed as a system include dir to cc1, and that the link.exe invocation is under /foo. I don't think it would be brittle. |
clang/lib/Driver/ToolChains/MSVC.cpp | ||
---|---|---|
73 | @hans The flag proposed here behaves like env VCToolsInstallDir="" clang-cl ..., and in that case there's no validation. Do you think the path to -vctoolsdir should be validated and throw an error otherwise? I find it nice to completly disable the toolchain auto-detection if passing in a empty dir, without needing an additional flag, ie clang-cl -vctoolsdir "". |
clang/lib/Driver/ToolChains/MSVC.cpp | ||
---|---|---|
73 | It's printed when using -v as directed. I don't feel strongly against adding the command line in all failure cases, but did want to point that out. Still think it's worth it? | |
clang/test/Driver/cl-options.c | ||
686 | Clever idea! I'll do it that way and key off the "ignored directory" warning that's emitted. |
clang/lib/Driver/ToolChains/MSVC.cpp | ||
---|---|---|
73 | No, I'm not asking for it to be validated, but if e.g. execution of link.exe fails, it would be nice if the error message at least printed the path it was trying to execute so the user has a chance to see what's wrong. |
clang/lib/Driver/ToolChains/MSVC.cpp | ||
---|---|---|
73 | and the invocation with a bogus directory is as follows. No explicit path provided "link.exe" ... |
clang/test/Driver/cl-options.c | ||
---|---|---|
686 | Did further digging and the path test would depend on other environment variables. If the %INCLUDE% variable is set, as it is by vcvars.bat, those paths are adopted and VCToolChainPath is not used. I'm hesitant to change that logic without stronger motivation. Other ideas for a test that would work run both from a vc command prompt and a vanilla command prompt? I don't see anything else in the full verbose invocation to key off of: D:\repos\llvm\llvm-project\build\Debug\bin>clang-cl -vctoolsdir "/fake" -v main.cpp clang version 12.0.0 (https://github.com/llvm/llvm-project 537f5483fe4e09c39ffd7ac837c00b50dd13d676) Target: x86_64-pc-windows-msvc Thread model: posix InstalledDir: D:\repos\llvm\llvm-project\build\Debug\bin "D:\\repos\\llvm\\llvm-project\\build\\Debug\\bin\\clang-cl.exe" -cc1 -triple x86_64-pc-windows-msvc19.11.0 -emit-obj -mrelax-all -mincremental-linker-compatible --mrelax-relocations -disable-free -main-file-name main.cpp -mrelocation-model pic -pic-level 2 -mframe-pointer=none -relaxed-aliasing -fmath-errno -fno-rounding-math -mconstructor-aliases -munwind-tables -target-cpu x86-64 -mllvm -x86-asm-syntax=intel -D_MT -flto-visibility-public-std --dependent-lib=libcmt --dependent-lib=oldnames -stack-protector 2 -fms-volatile -fdiagnostics-format msvc -v -resource-dir "D:\\repos\\llvm\\llvm-project\\build\\Debug\\lib\\clang\\12.0.0" -internal-isystem "D:\\repos\\llvm\\llvm-project\\build\\Debug\\lib\\clang\\12.0.0\\include" -internal-isystem "C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Enterprise\\VC\\Tools\\MSVC\\14.27.29110\\ATLMFC\\include" -internal-isystem "C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Enterprise\\VC\\Tools\\MSVC\\14.27.29110\\include" -internal-isystem "C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.8\\include\\um" -internal-isystem "C:\\Program Files (x86)\\Windows Kits\\10\\include\\10.0.18362.0\\ucrt" -internal-isystem "C:\\Program Files (x86)\\Windows Kits\\10\\include\\10.0.18362.0\\shared" -internal-isystem "C:\\Program Files (x86)\\Windows Kits\\10\\include\\10.0.18362.0\\um" -internal-isystem "C:\\Program Files (x86)\\Windows Kits\\10\\include\\10.0.18362.0\\winrt" -internal-isystem "C:\\Program Files (x86)\\Windows Kits\\10\\include\\10.0.18362.0\\cppwinrt" -fdeprecated-macro -fdebug-compilation-dir "D:\\repos\\llvm\\llvm-project\\build\\Debug\\bin" -ferror-limit 19 -fmessage-length=121 -fno-use-cxa-atexit -fms-extensions -fms-compatibility -fms-compatibility-version=19.11 -std=c++14 -fdelayed-template-parsing -fcolor-diagnostics -faddrsig -o "C:\\Users\\zahen\\AppData\\Local\\Temp\\main-8f329a.obj" -x c++ main.cpp clang -cc1 version 12.0.0 based upon LLVM 12.0.0git default target x86_64-pc-windows-msvc #include "..." search starts here: #include <...> search starts here: D:\repos\llvm\llvm-project\build\Debug\lib\clang\12.0.0\include C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Tools\MSVC\14.27.29110\ATLMFC\include C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Tools\MSVC\14.27.29110\include C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um C:\Program Files (x86)\Windows Kits\10\include\10.0.18362.0\ucrt C:\Program Files (x86)\Windows Kits\10\include\10.0.18362.0\shared C:\Program Files (x86)\Windows Kits\10\include\10.0.18362.0\um C:\Program Files (x86)\Windows Kits\10\include\10.0.18362.0\winrt C:\Program Files (x86)\Windows Kits\10\include\10.0.18362.0\cppwinrt End of search list. "link.exe" -out:main.exe -nologo "C:\\Users\\zahen\\AppData\\Local\\Temp\\main-8f329a.obj" clang-cl: error: unable to execute command: program not executable clang-cl: error: linker command failed with exit code 1 (use -v to see invocation) |
clang/test/Driver/cl-options.c | ||
---|---|---|
686 | Maybe -vctoolsdir should take precedence over %INCLUDE%? It would at least be good to understand the semantics. Like if run inside a VC command prompt, should it be possible to use -vctoolsdir to point to a different VC installation? Also, in the clang invocation above (using -### is probably better than -v, so it doesn't try to actually run the commands), shouldn't it be executing link.exe under /fake somewhere? |
It felt too invasive to swap the precedence of using vctoolsdir vs %INCLUDE% for all clang-cl users so I compromised by skipping the %INCLUDE% check when vctoolsdir was passed on the command line. This way only the users of the new flag will see different behavior.
With that change the suggested test for -internal-isystem passes in both vanilla and vc command prompts.
clang/test/Driver/cl-options.c | ||
---|---|---|
686 | clang\lib\Driver\ToolChains\MSVC.cpp:1263 AddClangSystemIncludeArgs
Swapping the order of #5 and #6 is the part that I mentioned being hesitant to change. The less invasive option that I used is to skip adding %INCLUDE% paths (#5) when vctoolsdir is set. |
Seems reasonable to me.
I'm still curious why it seems it's not looking for link.exe in the /fake dir though.
clang\lib\Driver\ToolChains\MSVC.cpp:311
FindVisualStudioExecutable
FilePath = /fake\bin\Hostx64\x64\link.exe
The test llvm::sys::fs::can_execute(FilePath) fails and the function returns "link.exe". This isn't seen in our environment because absent path probes are always allowed, it's only actual file reads that need to be tracked.
Thanks @hans! I'll need you (or someone else with permission) to land the change on my behalf.
What will the error look like if the user sets this but gets it wrong? I'm sympathetic to not wanting to validate it, but if it's wrong it would be nice if the error isn't too cryptic.