summaryrefslogtreecommitdiff
path: root/cmake/CompilerUtils.cmake
diff options
context:
space:
mode:
authorSander Vrijders <sander.vrijders@ugent.be>2017-04-07 10:18:46 +0000
committerdimitri staessens <dimitri.staessens@ugent.be>2017-04-07 10:18:46 +0000
commit97dd492cb7c6d88fbd9f95fe2469a637e445b762 (patch)
tree580153354f3018d08cd25d46b624bc3b4ff42300 /cmake/CompilerUtils.cmake
parenta520f53970e59b4663b2baa70dd458175154622b (diff)
parent20d0532a4b1fd7568adf63654d023d782373873e (diff)
downloadouroboros-97dd492cb7c6d88fbd9f95fe2469a637e445b762.tar.gz
ouroboros-97dd492cb7c6d88fbd9f95fe2469a637e445b762.zip
Merged in sandervrijders/ouroboros/be-netmap-cmake (pull request #470)
ipcpd: shim-eth-llc: Add check for netmap headers
Diffstat (limited to 'cmake/CompilerUtils.cmake')
-rw-r--r--cmake/CompilerUtils.cmake3
1 files changed, 0 insertions, 3 deletions
diff --git a/cmake/CompilerUtils.cmake b/cmake/CompilerUtils.cmake
index fb81b7e7..b9fd391c 100644
--- a/cmake/CompilerUtils.cmake
+++ b/cmake/CompilerUtils.cmake
@@ -6,10 +6,7 @@ function(test_and_set_c_compiler_flag_global _flag)
check_c_compiler_flag(${_flag} COMPILER_SUPPORTS_FLAG_${_sflag})
if(COMPILER_SUPPORTS_FLAG_${_sflag})
- message(STATUS "Compiler supports flag ${_flag}, added globally")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${_flag}" PARENT_SCOPE)
- else(${_retval})
- message(STATUS "Compiler does not support flag ${_flag}, discarded")
endif()
endfunction(test_and_set_c_compiler_flag_global)