forked from Archive/PX4-Autopilot
tests: increase stack size from 8000 to 9000
clang failed with: ../src/systemcmds/tests/test_mathlib.cpp:56:5: fatal error: stack frame size of 7400 bytes in function 'test_mathlib' [-Wframe-larger-than=] int test_mathlib(int argc, char *argv[])
This commit is contained in:
parent
d082060429
commit
cf667dedb8
|
@ -69,9 +69,9 @@ endif()
|
|||
px4_add_module(
|
||||
MODULE systemcmds__tests
|
||||
MAIN tests
|
||||
STACK_MAIN 8000
|
||||
STACK_MAIN 9000
|
||||
COMPILE_FLAGS
|
||||
-Wframe-larger-than=6000
|
||||
-Wframe-larger-than=8000
|
||||
-Wno-float-equal
|
||||
-O0
|
||||
SRCS ${srcs}
|
||||
|
|
Loading…
Reference in New Issue