Permit a discontiguous stack which is grown automatically as needed.
The build was successful. Details

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.
This commit is contained in:
Rafal Kupiec 2019-06-10 20:06:25 +02:00
parent 5c824ec67d
commit 815b1481fc
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4
1 changed files with 1 additions and 1 deletions

View File

@ -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