Re: [libvirt PATCH 1/6] meson: Allow larger stack frames when instrumenting

2021-05-03 Thread Pavel Hrdina
On Mon, May 03, 2021 at 12:01:41PM +0200, Tim Wiederhake wrote: > When enabling sanitizers, gcc adds some instrumentation to the code > that may enlarge stack frames. Some function's stack frames are already > close to the limit of 4096 and are enlarged past that threshold, > e.g. virLXCProcessStar

[libvirt PATCH 1/6] meson: Allow larger stack frames when instrumenting

2021-05-03 Thread Tim Wiederhake
When enabling sanitizers, gcc adds some instrumentation to the code that may enlarge stack frames. Some function's stack frames are already close to the limit of 4096 and are enlarged past that threshold, e.g. virLXCProcessStart which reaches a frame size of 4624 bytes. Signed-off-by: Tim Wiederha