From 1541e703d1f6a6f6c7fdb0df588212d8be623631 Mon Sep 17 00:00:00 2001 From: Nick Vatamaniuc Date: Thu, 30 Nov 2023 01:31:09 -0500 Subject: [PATCH] [experiment] re-enable stack checks in ASAN Experiment with re-enabling stack checks in ASAN. This is one way to make test_proxy_is_array test pass. --- quickjs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickjs.c b/quickjs.c index e531ef58e..e666e0407 100644 --- a/quickjs.c +++ b/quickjs.c @@ -65,7 +65,7 @@ #define CONFIG_PRINTF_RNDN #endif -#if !defined(EMSCRIPTEN) && !defined(__ASAN__) +#if !defined(EMSCRIPTEN) /* enable stack limitation */ #define CONFIG_STACK_CHECK #endif