We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
max_cstack_size
1 parent 37d543b commit c2ef152Copy full SHA for c2ef152
src/lib.rs
@@ -30,7 +30,7 @@ impl Build {
30
out_dir: env::var_os("OUT_DIR").map(|s| PathBuf::from(s).join("luau-build")),
31
target: env::var("TARGET").ok(),
32
host: env::var("HOST").ok(),
33
- max_cstack_size: 100000,
+ max_cstack_size: 1000000,
34
use_longjmp: false,
35
enable_codegen: false,
36
vector_size: 3,
testcrate/src/lib.rs
@@ -70,7 +70,7 @@ extern "C" {
70
}
71
72
pub unsafe fn lua_getglobal(state: *mut c_void, k: *const c_char) {
73
- lua_getfield(state, -102002 /* LUA_GLOBALSINDEX */, k);
+ lua_getfield(state, -1002002 /* LUA_GLOBALSINDEX */, k);
74
75
76
#[test]
0 commit comments