Unverified Commit 7fa6f1f9 by Dominic Hamon Committed by GitHub

Disable lto-type-mismatch warnings (#1071)

parent 37ced31b
...@@ -194,6 +194,7 @@ else() ...@@ -194,6 +194,7 @@ else()
# Link time optimisation # Link time optimisation
if (BENCHMARK_ENABLE_LTO) if (BENCHMARK_ENABLE_LTO)
add_cxx_compiler_flag(-flto) add_cxx_compiler_flag(-flto)
add_cxx_compiler_flag(-Wno-lto-type-mismatch)
if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU") if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
find_program(GCC_AR gcc-ar) find_program(GCC_AR gcc-ar)
if (GCC_AR) if (GCC_AR)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment