1
0
mirror of https://github.com/janet-lang/janet synced 2025-09-05 04:18:03 +00:00

Fix some stack overflow bugs.

This commit is contained in:
Calvin Rose
2019-08-19 01:19:51 -04:00
parent 0360942942
commit 292be33b9d
6 changed files with 25 additions and 10 deletions

View File

@@ -14,7 +14,7 @@ option('int_types', type : 'boolean', value : true)
option('recursion_guard', type : 'integer', min : 10, max : 8000, value : 1024)
option('max_proto_depth', type : 'integer', min : 10, max : 8000, value : 200)
option('max_macro_expand', type : 'integer', min : 1, max : 8000, value : 200)
option('stack_max', type : 'integer', min : 8096, max : 1000000000, value : 16384)
option('stack_max', type : 'integer', min : 8096, max : 0x7fffffff, value : 0x7fffffff)
option('arch_name', type : 'string', value: '')
option('os_name', type : 'string', value: '')