File tree 3 files changed +8
-4
lines changed
3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,11 @@ check the type and reposition the arguments accordingly.
18
18
- https://github.com/Phrogz/SLAXML (also supports DOM)
19
19
- https://github.com/manoelcampos/xml2lua
20
20
21
+ ## memory managers
22
+
23
+ - https://github.com/emeryberger/Malloc-Implementations
24
+ - ftp://gee.cs.oswego.edu/pub/misc/malloc.c excellent
25
+ - google perftools
21
26
22
27
## Table iteration
23
28
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ website := ${pwd}/docs/website/docs
9
9
luasrc := ${pwd}/lib/lua53/src
10
10
ldadd := ${pwd}/lib/lua53/src/liblua.a
11
11
lua_embed_opts := ""
12
- lua_cflags := -DLUA_COMPAT_5_3 -DLUA_COMPAT_MODULE -DLUA_COMPAT_BITLIB
12
+ lua_cflags := -DLUA_COMPAT_5_3 -DLUA_COMPAT_MODULE -DLUA_COMPAT_BITLIB -I../../milagro-crypto-c/include -I../../../src
13
13
14
14
# ----------------
15
15
# zenroom defaults
Original file line number Diff line number Diff line change @@ -269,9 +269,8 @@ void luaE_freethread (lua_State *L, lua_State *L1) {
269
269
luaM_free (L , l );
270
270
}
271
271
272
- #include "../../milagro-crypto-c/include/amcl.h"
273
- #include "../../../src/zenroom.h"
274
-
272
+ #include <amcl.h>
273
+ #include <zenroom.h>
275
274
extern zenroom_t * Z ;
276
275
277
276
LUA_API lua_State * lua_newstate (lua_Alloc f , void * ud ) {
You can’t perform that action at this time.
0 commit comments