commit 11331de2d1d6fbcb0fe5d987ecb16fc992a5208d parent 265b7b383007970345575c803d297473cbb1a3a9 Author: Florian Dold <florian@dold.me> Date: Mon, 16 Jan 2023 19:06:58 +0100 disable stack check on apple Diffstat:
| M | quickjs/quickjs.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/quickjs/quickjs.c b/quickjs/quickjs.c @@ -73,7 +73,7 @@ #define CONFIG_ATOMICS #endif -#if !defined(EMSCRIPTEN) +#if !defined(EMSCRIPTEN) && !defined(__APPLE__) /* enable stack limitation */ #define CONFIG_STACK_CHECK #endif