Skip to content

Commit

Permalink
Restore use of LUAJIT_CFLAGS
Browse files Browse the repository at this point in the history
When switching to Raptorjit the CFLAGS use got removed
from the Makefile. It's needed for certain tests, see
commit a50aa9d.
  • Loading branch information
takikawa committed May 4, 2018
1 parent a63cf7d commit fdf5d02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ LUAJIT_CFLAGS := -include $(CURDIR)/gcc-preinclude.h

all: $(LUAJIT) $(SYSCALL) $(PFLUA)
# LuaJIT
@(cd lib/luajit && (cd src && $(MAKE) reusevm) && $(MAKE))
@(cd lib/luajit && (cd src && $(MAKE) reusevm) && $(MAKE) CFLAGS="$(LUAJIT_CFLAGS)")
# ljsyscall
@mkdir -p src/syscall/linux
@cp -p lib/ljsyscall/syscall.lua src/
Expand Down

0 comments on commit fdf5d02

Please sign in to comment.