diff options
Diffstat (limited to 'core/src/luajit/xmake.lua')
| -rw-r--r-- | core/src/luajit/xmake.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/src/luajit/xmake.lua b/core/src/luajit/xmake.lua index 250210e0e..d5590a771 100644 --- a/core/src/luajit/xmake.lua +++ b/core/src/luajit/xmake.lua @@ -19,7 +19,9 @@ target("luajit") -- add the common source files add_files("src/*.c|ljamalg.c|luajit.c") - add_files("src/autogen/$(plat)/$(arch)/*.s") + if not is_plat("windows") then + add_files("src/autogen/$(plat)/$(arch)/*.s") + end -- disable jit compiler? -- add_defines("LUAJIT_DISABLE_JIT") |
