[Lldb-commits] [lldb] [lldb] Add early CMake check for 'make' tool (PR #111531)
Stefan Gränitz via lldb-commits
lldb-commits at lists.llvm.org
Wed Oct 9 04:25:48 PDT 2024
================
@@ -272,6 +272,8 @@ def parseOptionsAndInitTestdirs():
configuration.make_path = "gmake"
else:
configuration.make_path = "make"
+ if ' ' in configuration.make_path:
+ configuration.make_path = f'"{configuration.make_path}"'
----------------
weliveindetail wrote:
The default install path on Windows is `C:\Program Files (x86)\GnuWin32\bin\make.exe` unfortunately.
https://github.com/llvm/llvm-project/pull/111531
More information about the lldb-commits
mailing list