1
mirror of https://github.com/monero-project/monero-gui synced 2024-12-29 23:26:24 +01:00

windows-build: increased stack for x86 build as libwallet allocates 2Mb

of stack internally
This commit is contained in:
Ilya Kitaev 2016-10-19 15:44:03 +03:00
parent d7e03f9cde
commit 15bfc85305

View File

@ -73,6 +73,17 @@ win32 {
-lwsock32 \
-lIphlpapi \
-lgdi32
!contains(QMAKE_TARGET.arch, x86_64) {
message("x86 build")
## Windows x86 (32bit) specific build here
QMAKE_LFLAGS += -Wl,--stack,4194304
} else {
message("x64 build")
}
}
linux {