fix: gcc -flto binaries are broken on some old servers. disable it temporary [skip ci]

This commit is contained in:
ds 2020-10-05 12:00:31 +03:00
commit 6ec507a075

View file

@ -94,15 +94,9 @@ if isCLang or isGCC or (isIntel and not isWindows)
if isOptimize if isOptimize
flagsCompiler += '-msse2' flagsCompiler += '-msse2'
if (isCLang or isGCC) and not isDarwin if isCLang and not isDarwin
flagsCompiler += '-flto' flagsCompiler += '-flto'
flagsLinker += '-flto' flagsLinker += '-flto'
if isGCC
flagsCompiler += [
'-fgraphite-identity'
]
endif
endif endif
endif endif