summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJari Vetoniemi <mailroxas@gmail.com>2018-11-18 16:36:56 +0200
committerJari Vetoniemi <mailroxas@gmail.com>2018-11-18 16:36:56 +0200
commit7342b5de4041c8444f9d0b3baac04d9365dab269 (patch)
tree2cc04dd5dd8af9308e3b396c4d40f0433145793c
parent1ea54a6a5564cc1f63765b73707caaec2c23ec2e (diff)
Makefile: larger stack usage
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7caa000..b26bb32 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ BINDIR ?= /bin
MAKEFLAGS += --no-builtin-rules
# GCC 7: -Wstringop-overflow=, -Walloc-size-larger-than=, -Wduplicated-{branches,cond}
-WARNINGS := -Wall -Wextra -Wpedantic -Wformat=2 -Wstrict-aliasing=3 -Wstrict-overflow=3 -Wstack-usage=12500 \
+WARNINGS := -Wall -Wextra -Wpedantic -Wformat=2 -Wstrict-aliasing=3 -Wstrict-overflow=3 -Wstack-usage=4096000 \
-Wfloat-equal -Wcast-align -Wpointer-arith -Wchar-subscripts -Warray-bounds=2 -Wno-unused-parameter
override CFLAGS ?= -g