Skip to content

Commit

Permalink
improve v144 limit
Browse files Browse the repository at this point in the history
  • Loading branch information
waruqi committed Jun 17, 2024
1 parent e411d9b commit 2e844e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xmake/modules/private/utils/toolchain.lua
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ function get_vs_toolset_ver(vs_toolset)
toolset_ver = "v" .. verinfo:major() .. (tostring(verinfo:minor()):sub(1, 1) or "0")

-- @see https://github.com/xmake-io/xmake/pull/5176
if toolset_ver and toolset_ver == "v144" and verinfo:ge("14.40") and verinfo:lt("14.42") then
if toolset_ver and toolset_ver == "v144" and verinfo:ge("14.40") and verinfo:lt("14.43") then
toolset_ver = "v143"
end
end
Expand Down

0 comments on commit 2e844e2

Please sign in to comment.