summaryrefslogtreecommitdiff
path: root/core/src
diff options
context:
space:
mode:
authorruki <[email protected]>2017-03-30 13:29:27 +0800
committerruki <[email protected]>2017-03-30 13:29:27 +0800
commit8aefb0ab22dac45e8515154ddadb7317f2f0387b (patch)
tree515bb5fa9ffa79feafa26f1a1c385be0fa5a61c8 /core/src
parent9da72206d922fe81b6a12d413dc0909c26862063 (diff)
add vm obj for widows
Diffstat (limited to 'core/src')
-rw-r--r--core/src/luajit/makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/core/src/luajit/makefile b/core/src/luajit/makefile
index 6a742dbea..b6770666c 100644
--- a/core/src/luajit/makefile
+++ b/core/src/luajit/makefile
@@ -75,7 +75,10 @@ luajit_C_FILES += \
src/lj_vmmath
# asm files
-ifneq ($PLAT,windows)
+ifeq ($PLAT,windows)
+luajit_OBJ_FILES += \
+ src/autogen/$(PLAT)/$(ARCH)/lj_vm
+else
luajit_ASM_FILES += \
src/autogen/$(PLAT)/$(ARCH)/lj_vm
endif