Permit a discontiguous stack which is grown automatically as needed.
已通過所有檢查
The build was successful.

The stack will have a guaranteed zone which is always available. The size of the guard area will be target specific. It will include enough stack space to actually allocate more stack space. Each function will have to verify that
it has enough space in the current stack to execute.
此提交包含在:
2019-06-10 20:06:25 +02:00
父節點 5c824ec67d
當前提交 815b1481fc

查看文件

@@ -2,7 +2,7 @@
CFLAGS = -fPIC -Iinclude -I. -W -Wunused -Wall
# Additional CFLAGS for debug build
DCFLAGS = -O0 -g3
DCFLAGS = -O0 -g3 -fsplit-stack
# Addditional CFLAGS for release build
RCFLAGS = -O3 -s