summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorUlf Hermann <[email protected]>2017-05-02 14:39:02 +0200
committerUlf Hermann <[email protected]>2017-05-08 10:12:06 +0000
commiteec331727eaaa341605c33bd28f48569ba37f6b7 (patch)
treec6a702d78abddea4c158a5db1c74c4bc74a0419f /config
parent8df18d00bd1cb59a56d558dcf9ac990199ccceb1 (diff)
Increase stack usage limit to 512k
On windows x86_64 we need more stack in some places. Change-Id: Ic56d3294388521786bf429a24e76f21fa6d626d7 Reviewed-by: Christian Kandeler <[email protected]>
Diffstat (limited to 'config')
-rw-r--r--config/ChangeLog4
-rw-r--r--config/eu.am4
2 files changed, 6 insertions, 2 deletions
diff --git a/config/ChangeLog b/config/ChangeLog
index 0f240ea4..642d7653 100644
--- a/config/ChangeLog
+++ b/config/ChangeLog
@@ -1,3 +1,7 @@
+2017-05-04 Ulf Hermann <[email protected]>
+
+ * eu.am: Increase stack limit to 512k.
+
2017-04-28 Ulf Hermann <[email protected]>
* eu.am: Disable textrel_check if we're not building ELF files.
diff --git a/config/eu.am b/config/eu.am
index 9603668e..d0ceb272 100644
--- a/config/eu.am
+++ b/config/eu.am
@@ -39,9 +39,9 @@ endif
# with deterministic archives.
ARFLAGS = cr
-# Warn about stack usage of more than 256K = 262144 bytes.
+# Warn about stack usage of more than 512K = 524288 bytes.
if ADD_STACK_USAGE_WARNING
-STACK_USAGE_WARNING=-Wstack-usage=262144
+STACK_USAGE_WARNING=-Wstack-usage=524288
else
STACK_USAGE_WARNING=
endif