Remove -flto in Linux 32bit (it fails Release link: virtual memory exhausted)

This commit is contained in:
John Preston 2016-04-14 16:06:36 +03:00
parent 246e39adb1
commit acc7e08a54
1 changed files with 9 additions and 0 deletions

View File

@ -339,6 +339,15 @@ CONFIG(release, debug|release) {
QMAKE_LFLAGS_RELEASE -= -O1
QMAKE_LFLAGS_RELEASE += -Ofast -flto -g -rdynamic
}
# Linux 32bit fails Release link with Link-Time Optimization: virtual memory exhausted
unix {
!contains(QMAKE_TARGET.arch, x86_64) {
CONFIG(release, debug|release) {
QMAKE_CXXFLAGS_RELEASE -= -flto
QMAKE_LFLAGS_RELEASE -= -flto
}
}
}
CONFIG(debug, debug|release) {
QMAKE_LFLAGS_DEBUG += -g -rdynamic
}