diff options
author | Jari Vetoniemi <mailroxas@gmail.com> | 2018-11-03 16:19:07 +0200 |
---|---|---|
committer | Jari Vetoniemi <mailroxas@gmail.com> | 2018-11-03 16:19:07 +0200 |
commit | 152eb306f2ef2d5cfbde3ba23cc0bbd401aef0d3 (patch) | |
tree | ad3aeece3b4bb7b7bbd597a7bb14d66fdff56741 /Makefile | |
parent | f10bcee47199f60f1e7b819b6f867d57a14ec03b (diff) |
stack usage warning at 64k
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5,7 +5,7 @@ pkgconfigdir ?= /lib/pkgconfig MAKEFLAGS += --no-builtin-rules -WARNINGS := -Wall -Wextra -Wpedantic -Wformat=2 -Wstrict-aliasing=3 -Wstrict-overflow=5 -Wstack-usage=12500 \ +WARNINGS := -Wall -Wextra -Wpedantic -Wformat=2 -Wstrict-aliasing=3 -Wstrict-overflow=5 -Wstack-usage=64000 \ -Wfloat-equal -Wcast-align -Wpointer-arith -Wchar-subscripts -Warray-bounds=2 override CFLAGS ?= -g |