diff options
Diffstat (limited to 'xmake/rules/c++/config/dynamic_debugging.lua')
| -rw-r--r-- | xmake/rules/c++/config/dynamic_debugging.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/rules/c++/config/dynamic_debugging.lua b/xmake/rules/c++/config/dynamic_debugging.lua index 60fb86f7c..b9ea4716a 100644 --- a/xmake/rules/c++/config/dynamic_debugging.lua +++ b/xmake/rules/c++/config/dynamic_debugging.lua @@ -65,7 +65,7 @@ function main(target, sourcekind) end local version = vcvars.VCToolsVersion - if not version or not semver.compare(version, "19.44") >= 0 then + if not version or semver.compare(version, "19.44") < 0 then wprint("C++ Dynamic Debugging requires MSVC 19.44+, found: %s", version or "unknown") return end |
