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.
Этот коммит содержится в:
Rafal Kupiec 2019-06-10 20:06:25 +02:00
родитель 5c824ec67d
Коммит 815b1481fc
Подписано: belliash
Идентификатор ключа GPG: 4E829243E0CFE6B4

Просмотреть файл

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