blob: cd0574bd56537ff245859af39eb99abdd3572eb4 (
plain)
1
2
3
4
5
6
7
8
9
|
Don't rely on the cmake macro to pass -fno-lto to the problematic
FastJmp.cpp so that it works if users add -flto themselves.
--- a/common/CMakeLists.txt
+++ b/common/CMakeLists.txt
@@ -275,3 +275,3 @@
-if (USE_GCC AND CMAKE_INTERPROCEDURAL_OPTIMIZATION)
+if (USE_GCC)
# GCC LTO doesn't work with asm statements
|