We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1f4c6a commit e638a6bCopy full SHA for e638a6b
conanfile.py
@@ -97,6 +97,10 @@ def validate(self):
97
if self.dependencies["sdl"].options.sdl2main != sdl2mainValue:
98
raise ConanInvalidConfiguration(f"sdl:sdl2main option for {self.settings.os} must be set to {sdl2mainValue}")
99
100
+ # LuaJIT
101
+ if is_msvc(self) and self.settings.arch == "armv8" and self.options.lua_lib == "luajit":
102
+ raise ConanInvalidConfiguration("LuaJIT can't be built for MSVC ARM64 at the moment, &:lua_lib option must be set to lua")
103
+
104
# Qt
105
qtDep = self.dependencies["qt"]
106
if qtDep.options.qttools != True:
0 commit comments