From 13f3c69ec6fc36f04f60a6b3593320ffcbd41d18 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Tue, 18 Jul 2017 09:48:18 -0400 Subject: [PATCH] Fix LTO (fixes #26) --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index aef4acc9..8457d93c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,6 +16,7 @@ if (CMAKE_COMPILER_IS_GNUCC) if(NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 7.0) set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wimplicit-fallthrough=0") endif() + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-lto-type-mismatch") endif() if (CMAKE_BUILD_TYPE MATCHES Release) # Some variables are only used for assertions