diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2017-04-19 15:23:57 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2017-04-20 09:35:28 +0200 |
commit | 3a4abf2f46aa9c708e59d65713c347af645d45f5 (patch) | |
tree | 85510773d75c6a9d239349feb03ebd74516ad5bd /cmake | |
parent | a79659e723d55546671fbd48ee95c765764d730e (diff) |
cmake: disable lto miscompiling binaries
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/mingw-w64.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/mingw-w64.cmake b/cmake/mingw-w64.cmake index 01bf9209..a0dc4e7f 100644 --- a/cmake/mingw-w64.cmake +++ b/cmake/mingw-w64.cmake @@ -45,7 +45,7 @@ SET(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) # oldest CPU supported here is Northwood-based Pentium 4. -sh 20150811 set(fpu "-ffast-math -mfpmath=both -mstackrealign -falign-functions=16 -falign-loops=16") set(cpu "-O3 -march=pentium4 -mtune=skylake -msse -msse2 -mno-sse3 -mno-avx -frename-registers") -set(lto "-flto -fuse-linker-plugin -flto-compression-level=9 -flto-partition=balanced -fipa-pta -flto-odr-type-merging") +set(lto "-fno-lto -fuse-linker-plugin -flto-compression-level=9 -flto-partition=balanced -fno-ipa-pta -fno-lto-odr-type-merging") set(bloat "") set(sections "-ffunction-sections -fdata-sections") |