You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in lj_gc.c:963 the function sweep_arena is forward declared as void sweep_arena(global_State *g, MSize i); but is later declared as static void sweep_arena(global_State *g, MSize i, MSize celltop)
I changed the forward declaration to the latter and passing 0 as the argument for MSize celltop in lj_gc.c:975
Now I get a bunch of errors in enablelargepages at lj_alloc.c:412 where windows specific functions are being used.
Just commenting that out the contents of the function and returning 0 I get a linker error:
/usr/bin/ld: lj_vm_dyn.o: relocation R_X86_64_PC32 against symbol `lj_gc_emptygrayssb' can not be used when making a shared object; recompile with -fPIC
/usr/bin/ld: final link failed: Bad value
in lj_gc.c:963 the function
sweep_arena
is forward declared asvoid sweep_arena(global_State *g, MSize i);
but is later declared asstatic void sweep_arena(global_State *g, MSize i, MSize celltop)
I changed the forward declaration to the latter and passing 0 as the argument for
MSize celltop
inlj_gc.c:975
Now I get a bunch of errors in
enablelargepages
at lj_alloc.c:412 where windows specific functions are being used.Just commenting that out the contents of the function and returning 0 I get a linker error:
There are also many warnings
https://gist.github.com/CapsAdmin/c5cab3e28f9cad5af1d15811e3c097f2
The text was updated successfully, but these errors were encountered: