diff options
| author | ruki <[email protected]> | 2026-05-03 21:09:19 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-05-03 21:09:19 +0800 |
| commit | 8bbbb2860fdd1910db466fe318ee8d465728ca32 (patch) | |
| tree | 8660cf81b640c9a116a068fd2b105da92bc57cd5 | |
| parent | 1e431c685f2f2b4f28e6995e256fc6c7c4bf3d13 (diff) | |
| parent | 7778b7cb39646016c30bf3c6bf1e1897edc26529 (diff) | |
Merge pull request #7523 from DavidWang19/fix/detect-bat-path-with-spaces
Fix msvc/intel/snippet detect when temp path contains spaces
| -rw-r--r-- | xmake/modules/detect/sdks/find_iccenv.lua | 4 | ||||
| -rw-r--r-- | xmake/modules/detect/sdks/find_icxenv.lua | 4 | ||||
| -rw-r--r-- | xmake/modules/detect/sdks/find_ifortenv.lua | 4 | ||||
| -rw-r--r-- | xmake/modules/detect/sdks/find_ifxenv.lua | 4 | ||||
| -rw-r--r-- | xmake/modules/detect/sdks/find_vstudio.lua | 4 | ||||
| -rw-r--r-- | xmake/modules/lib/detect/check_cxsnippets.lua | 7 | ||||
| -rw-r--r-- | xmake/modules/lib/detect/check_fcsnippets.lua | 7 |
7 files changed, 25 insertions, 9 deletions
diff --git a/xmake/modules/detect/sdks/find_iccenv.lua b/xmake/modules/detect/sdks/find_iccenv.lua index 050352b92..2d5e47df0 100644 --- a/xmake/modules/detect/sdks/find_iccenv.lua +++ b/xmake/modules/detect/sdks/find_iccenv.lua @@ -53,7 +53,9 @@ function _load_iclvars(iclvars_bat, arch, opt) file:close() -- run geniclvars.bat - os.run(geniclvars_bat) + -- @note we use runv here so the bat path is not split on whitespace by os.argv, + -- which breaks detection when the temp file lives under a path with spaces. + os.runv(geniclvars_bat) -- load all envirnoment variables local variables = {} diff --git a/xmake/modules/detect/sdks/find_icxenv.lua b/xmake/modules/detect/sdks/find_icxenv.lua index e715491b3..324bd2712 100644 --- a/xmake/modules/detect/sdks/find_icxenv.lua +++ b/xmake/modules/detect/sdks/find_icxenv.lua @@ -53,7 +53,9 @@ function _load_icxvars(icxvars_bat, arch, opt) file:close() -- run genicxvars.bat - os.run(genicxvars_bat) + -- @note we use runv here so the bat path is not split on whitespace by os.argv, + -- which breaks detection when the temp file lives under a path with spaces. + os.runv(genicxvars_bat) -- load all envirnoment variables local variables = {} diff --git a/xmake/modules/detect/sdks/find_ifortenv.lua b/xmake/modules/detect/sdks/find_ifortenv.lua index 19664cbbc..6ae5f3f03 100644 --- a/xmake/modules/detect/sdks/find_ifortenv.lua +++ b/xmake/modules/detect/sdks/find_ifortenv.lua @@ -53,7 +53,9 @@ function _load_ifortvars(ifortvars_bat, arch, opt) file:close() -- run genifortvars.bat - os.run(genifortvars_bat) + -- @note we use runv here so the bat path is not split on whitespace by os.argv, + -- which breaks detection when the temp file lives under a path with spaces. + os.runv(genifortvars_bat) -- load all envirnoment variables local variables = {} diff --git a/xmake/modules/detect/sdks/find_ifxenv.lua b/xmake/modules/detect/sdks/find_ifxenv.lua index 940d0e8fd..8ca104ba7 100644 --- a/xmake/modules/detect/sdks/find_ifxenv.lua +++ b/xmake/modules/detect/sdks/find_ifxenv.lua @@ -53,7 +53,9 @@ function _load_ifxvars(ifxvars_bat, arch, opt) file:close() -- run genifxvars.bat - os.run(genifxvars_bat) + -- @note we use runv here so the bat path is not split on whitespace by os.argv, + -- which breaks detection when the temp file lives under a path with spaces. + os.runv(genifxvars_bat) -- load all envirnoment variables local variables = {} diff --git a/xmake/modules/detect/sdks/find_vstudio.lua b/xmake/modules/detect/sdks/find_vstudio.lua index e7699ee0d..adfb8655d 100644 --- a/xmake/modules/detect/sdks/find_vstudio.lua +++ b/xmake/modules/detect/sdks/find_vstudio.lua @@ -294,7 +294,9 @@ function _load_vcvarsall_impl(vcvarsall, vsver, arch, opt) file:close() -- run genvcvars.bat - local outdata, errdata = try {function () return os.iorun(genvcvars_bat) end} + -- @note we use iorunv here so the bat path is not split on whitespace by os.argv, + -- which breaks detection when the temp file lives under a path with spaces. + local outdata, errdata = try {function () return os.iorunv(genvcvars_bat) end} if errdata and #errdata > 0 and option.get("verbose") and option.get("diagnosis") then cprint("${color.warning}checkinfo: ${clear dim}get vcvars error: %s", errdata) end diff --git a/xmake/modules/lib/detect/check_cxsnippets.lua b/xmake/modules/lib/detect/check_cxsnippets.lua index 1e7dc604b..a6910522a 100644 --- a/xmake/modules/lib/detect/check_cxsnippets.lua +++ b/xmake/modules/lib/detect/check_cxsnippets.lua @@ -255,14 +255,17 @@ function main(snippets, opt) linker.link("binary", {"cc", "cxx"}, objectfile, binaryfile, opt) end if opt.tryrun then + -- @note we use the *v variants so the binary path is not split on + -- whitespace by os.argv. mostly hits on Windows where TEMP lives + -- under the user profile and may contain spaces. if opt.output then - local output = os.iorun(binaryfile) + local output = os.iorunv(binaryfile) if output then output = output:trim() end return true, output else - os.vrun(binaryfile) + os.vrunv(binaryfile) end end local binary_match = opt.binary_match diff --git a/xmake/modules/lib/detect/check_fcsnippets.lua b/xmake/modules/lib/detect/check_fcsnippets.lua index 7314c96f8..a6b93cbbf 100644 --- a/xmake/modules/lib/detect/check_fcsnippets.lua +++ b/xmake/modules/lib/detect/check_fcsnippets.lua @@ -114,14 +114,17 @@ function main(snippets, opt) linker.link("binary", linkerkind, objectfile, binaryfile, opt) end if opt.tryrun then + -- @note we use the *v variants so the binary path is not split on + -- whitespace by os.argv. mostly hits on Windows where TEMP lives + -- under the user profile and may contain spaces. if opt.output then - local output = os.iorun(binaryfile) + local output = os.iorunv(binaryfile) if output then output = output:trim() end return true, output else - os.vrun(binaryfile) + os.vrunv(binaryfile) end end local binary_match = opt.binary_match |
