diff options
| author | Roy Ivy III <[email protected]> | 2018-10-14 22:16:24 -0500 |
|---|---|---|
| committer | Roy Ivy III <[email protected]> | 2018-10-15 22:55:16 -0500 |
| commit | ca72eb0cf60c3e0747444859d9fc738b98ecc4b5 (patch) | |
| tree | 460d1694c4a414510146de57e1e62a59588a332f | |
| parent | 19829f49a644d4377c082df90b812a891d4d403c (diff) | |
fix find_vstudio when executing from an already defined MSVC command prompt
.# Discussion
Older MSVC/VS versions don't define the "VisualStudioVersion" environment variable.
Prior to this fix, when executing within an already prepared environment (eg, the
"Visual Studio Command Prompt") with those older MSVC/VS builds, the search logic would
incorrectly try to search for all installed versions and read their environments. But
since the environment had already been prepped, executing `vsvarsall` for any found
MSVC/VS versions resulted in a superimposed and confused/invalid environment.
For the older MSVC/VS versions without "VisualStudioVersion", this fix does use
heuristics to guess at the correct version (and it's corresponding vsvers value [used as
the results key value]). But, even if the wrong version is guessed, the results from
find_vstudio are clean, without any environmental superposition, and fully usable for
compilation.
| -rw-r--r-- | xmake/modules/detect/sdks/find_vstudio.lua | 37 |
1 files changed, 32 insertions, 5 deletions
diff --git a/xmake/modules/detect/sdks/find_vstudio.lua b/xmake/modules/detect/sdks/find_vstudio.lua index 5ed3b310c..eb6c565a9 100644 --- a/xmake/modules/detect/sdks/find_vstudio.lua +++ b/xmake/modules/detect/sdks/find_vstudio.lua @@ -152,13 +152,40 @@ function main() , ["4.2"] = "VS42COMNTOOLS" } - -- find vs from environment variables + -- find the single current MSVC/VS from environment variables local VCInstallDir = os.getenv("VCInstallDir") - local VisualStudioVersion = os.getenv("VisualStudioVersion") - if VCInstallDir and VisualStudioVersion then + if VCInstallDir and (VCInstallDir ~= "") then + local VisualStudioVersion = os.getenv("VisualStudioVersion") + if not VisualStudioVersion or (VisualStudioVersion == "") then - -- find vcvarsall.bat - local vcvarsall = path.join(VCInstallDir, "Auxiliary", "Build", "vcvarsall.bat") + -- heuristic for VisualStudioVersion value (early MSVC/VS versions don't set VisualStudioVersion) + local VSInstallDir = os.getenv("VSInstallDir") or "" + VisualStudioVersion = VSInstallDir:match('(%d+[.]?%d*)\\?%s*$') + if not VisualStudioVersion then VisualStudioVersion = VCInstallDir:match('(%d+[.]?%d*)\\VC\\?%s*$') end + if not VisualStudioVersion then VisualStudioVersion = "0" end + if not VisualStudioVersion:match('[.]') then VisualStudioVersion = VisualStudioVersion .. '.0' end + + -- find highest known version which is less than or equal to VisualStudioVersion + if not vsvers[VisualStudioVersion] then + local versions = {} + local count = 0 + for k in pairs(vsvers) do table.insert(versions, tonumber(k)); count = count + 1 end + table.sort(versions) + local i = 0 + local v = tonumber(VisualStudioVersion) + while ((i < count) and (versions[i+1] <= v)) do i = i + 1 end + VisualStudioVersion = versions[i] or "0" + end + end + + -- find vcvarsall.bat or vcvars32.bat + local pathes = + { + VCInstallDir.."\\Auxiliary\\Build", + VCInstallDir.."\\bin", + VCInstallDir + } + local vcvarsall = find_file("vcvarsall.bat", pathes) or find_file("vcvars32.bat", pathes) if os.isfile(vcvarsall) then -- load vcvarsall |
