From 91cbb32d3122dc9a63a5fdfc09d7c8822f95ddf6 Mon Sep 17 00:00:00 2001 From: Sander Vrijders Date: Tue, 14 Nov 2017 21:49:19 +0100 Subject: build: Set CMAKE_REQUIRED_FLAGS in CompilerUtils This sets the cmake variable CMAKE_REQUIRED_FLAGS to the compiler flags that are being tested so that the linker doesn't fail when trying the compile flag. Signed-off-by: Sander Vrijders Signed-off-by: Dimitri Staessens --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index f5836217..1a5e4a94 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -71,11 +71,11 @@ if (CMAKE_BUILD_TYPE STREQUAL "Release") test_and_set_c_compiler_flag_global(-O3) endif () if (CMAKE_BUILD_TYPE STREQUAL "DebugASan") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fsanitize=address") + test_and_set_c_compiler_flag_global(-fsanitize=address) elseif (CMAKE_BUILD_TYPE STREQUAL "DebugTSan") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fsanitize=thread") + test_and_set_c_compiler_flag_global(-fsanitize=thread) elseif (CMAKE_BUILD_TYPE STREQUAL "DebugLSan") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fsanitize=leak") + test_and_set_c_compiler_flag_global(-fsanitize=leak) endif () configure_file("${CMAKE_CURRENT_SOURCE_DIR}/ouroboros-dev.pc.in" -- cgit v1.2.3