mirror of https://github.com/procxx/kepka.git
Remove -flto in Linux 32bit (it fails Release link: virtual memory exhausted)
This commit is contained in:
parent
246e39adb1
commit
acc7e08a54
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue