From 76c5c11a1be8e81110e136412ec5b543098230e3 Mon Sep 17 00:00:00 2001 From: Ilya Kitaev Date: Wed, 19 Oct 2016 15:49:11 +0300 Subject: [PATCH] windows-build-x86: explained why stack is increased --- monero-core.pro | 2 ++ 1 file changed, 2 insertions(+) diff --git a/monero-core.pro b/monero-core.pro index d50f704c..3121f109 100644 --- a/monero-core.pro +++ b/monero-core.pro @@ -78,6 +78,8 @@ win32 { !contains(QMAKE_TARGET.arch, x86_64) { message("x86 build") ## Windows x86 (32bit) specific build here + ## there's 2Mb stack in libwallet allocated internally + ## this fixes app crash for x86 Windows build QMAKE_LFLAGS += -Wl,--stack,4194304 } else { message("x64 build")