This is the mail archive of the elfutils-devel@sourceware.org mailing list for the elfutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] Increase stack usage limit to 512k


On windows x86_64 we need more stack in some places.

Signed-off-by: Ulf Hermann <ulf.hermann@qt.io>
---
 config/ChangeLog | 4 ++++
 config/eu.am     | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/config/ChangeLog b/config/ChangeLog
index 0f240ea..642d765 100644
--- a/config/ChangeLog
+++ b/config/ChangeLog
@@ -1,3 +1,7 @@
+2017-05-04  Ulf Hermann  <ulf.hermann@qt.io>
+
+	* eu.am: Increase stack limit to 512k.
+
 2017-04-28  Ulf Hermann  <ulf.hermann@qt.io>
 
 	* eu.am: Disable textrel_check if we're not building ELF files.
diff --git a/config/eu.am b/config/eu.am
index 637a2c2..d7befba 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
-- 
2.1.4


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]