mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 05:35:25 +00:00
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 <pkrempa@redhat.com> Reviewed-by: Kristina Hanicova <khanicov@redhat.com>
This commit is contained in:
parent
9e5f2fe402
commit
42bc76cdb8
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user