From 8aefb0ab22dac45e8515154ddadb7317f2f0387b Mon Sep 17 00:00:00 2001 From: ruki Date: Thu, 30 Mar 2017 13:29:27 +0800 Subject: add vm obj for widows --- core/src/luajit/makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 -- cgit v1.3.1