You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cd xmake-repo
xmake l ./scripts/test.lua --shallow --vs_runtime=MTd -m debug "assimp 5.2.4"
Code changes in Line 102
old:if not package:gitref() and package:version():lt("v5.2.4") then
new:if not package:gitref() and package:version():lt("v5.2.5") then
Xmake Version
v2.8.5+dev.1ccbc20e7
Operating System Version and Architecture
Windows11 22H2 22621.2861
Describe Bug
Using VS2022 as toolchain and below statement in xmake
add_requires("assimp >= 5.2.4", {configs = {debug = true, vs_runtime = "MTd"}} )
Fail to install it, the detailed output log shows there's something wrong with the "/EHsc" flags and all these warnings are considered as errors.
Just change version limit is not working, test by command in local:
Code changes in Line 102
old:
if not package:gitref() and package:version():lt("v5.2.4") then
new:
if not package:gitref() and package:version():lt("v5.2.5") then
Expected Behavior
Should install successfully.
Project Configuration
add_requires("assimp >= 5.2.4", {configs = {debug = true, vs_runtime = "MTd"}} )
Additional Information and Error Logs
install.txt
The text was updated successfully, but these errors were encountered: