From: Peter Krempa Date: Mon, 5 Sep 2022 12:38:09 +0000 (+0200) Subject: build: Decrease maximum stack frame size to 2048 X-Git-Tag: v9.8.0-rc1~216 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=42bc76cdb8486ef502200f3bce9e3faebdd78103;p=thirdparty%2Flibvirt.git build: Decrease maximum stack frame size to 2048 After recent cleanups we can now restrict the maximum stack frame size to 2k. Signed-off-by: Peter Krempa Reviewed-by: Kristina Hanicova --- diff --git a/meson.build b/meson.build index dd7a4e8d34..6b6f7ccb7c 100644 --- a/meson.build +++ b/meson.build @@ -248,7 +248,7 @@ alloc_max = run_command( ) # sanitizer instrumentation may enlarge stack frames -stack_frame_size = get_option('b_sanitize') == 'none' ? 4096 : 32768 +stack_frame_size = get_option('b_sanitize') == 'none' ? 2048 : 32768 # array_bounds=2 check triggers false positive on some GCC # versions when using sanitizers. Seen on Fedora 34 with