diff options
author | Mike Pall <mike> | 2011-06-23 19:40:21 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2011-06-23 19:40:21 +0200 |
commit | 29e89adfa74d4c14db67d2a267215e002f03e2ce (patch) | |
tree | 022e6aa30d5324ef23e00120d172666a98329870 | |
parent | f50c962e9428b88366e618cbcf329659fd908c6a (diff) | |
download | luajit2-29e89adfa74d4c14db67d2a267215e002f03e2ce.tar.gz |
RELEASE LuaJIT-2.0.0-beta8 (fixed)v2.0.0-beta8-fixed
-rw-r--r-- | src/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile index b3415ffd..9f7bcfcc 100644 --- a/src/Makefile +++ b/src/Makefile @@ -147,7 +147,7 @@ XCFLAGS= # # Turn on assertions for the whole LuaJIT VM. This significantly slows down # everything. Use only if you suspect a problem with LuaJIT itself. -XCFLAGS+= -DLUA_USE_ASSERT +#XCFLAGS+= -DLUA_USE_ASSERT # ############################################################################## # You probably don't need to change anything below this line! @@ -296,7 +296,7 @@ else TARGET_XLDFLAGS+= -Wl,-E endif ifeq (Linux,$(TARGET_SYS)) - TARGET_XLIBS+= -ldl -lpthread + TARGET_XLIBS+= -ldl endif ifeq (GNU/kFreeBSD,$(TARGET_SYS)) TARGET_XLIBS+= -ldl |