mirror of
https://github.com/dragonflydb/dragonfly.git
synced 2024-12-14 11:58:02 +00:00
29 lines
650 B
Diff
29 lines
650 B
Diff
diff --git a/luaconf.h b/luaconf.h
|
|
index d42d14b7..75647e72 100644
|
|
--- a/luaconf.h
|
|
+++ b/luaconf.h
|
|
@@ -731,7 +731,7 @@
|
|
** (It must fit into max(size_t)/32.)
|
|
*/
|
|
#if LUAI_IS32INT
|
|
-#define LUAI_MAXSTACK 1000000
|
|
+#define LUAI_MAXSTACK 4096
|
|
#else
|
|
#define LUAI_MAXSTACK 15000
|
|
#endif
|
|
diff --git a/makefile b/makefile
|
|
index d46e650c..52d8d57b 100644
|
|
--- a/makefile
|
|
+++ b/makefile
|
|
@@ -66,9 +66,9 @@ LOCAL = $(TESTS) $(CWARNS)
|
|
|
|
|
|
# enable Linux goodies
|
|
-MYCFLAGS= $(LOCAL) -std=c99 -DLUA_USE_LINUX -DLUA_USE_READLINE
|
|
+MYCFLAGS= $(LOCAL) -std=c99 -g -O2 -DLUA_USE_LINUX
|
|
MYLDFLAGS= $(LOCAL) -Wl,-E
|
|
-MYLIBS= -ldl -lreadline
|
|
+MYLIBS= -ldl
|
|
|
|
|
|
CC= gcc
|