summaryrefslogtreecommitdiff
path: root/volk
diff options
context:
space:
mode:
authorJosh Blum2012-08-08 18:32:40 -0700
committerJohnathan Corgan2012-08-28 12:13:18 -0700
commit31e992a2850450121199169f8538f28b2f634cd7 (patch)
treefda5ddf55cb00c0c0629c3804f9151b2debf850c /volk
parent94eef790aca68f8508df26d6b42fe6a19a2b0d0e (diff)
downloadgnuradio-31e992a2850450121199169f8538f28b2f634cd7.tar.gz
gnuradio-31e992a2850450121199169f8538f28b2f634cd7.tar.bz2
gnuradio-31e992a2850450121199169f8538f28b2f634cd7.zip
volk: special werror unused cmd line arg for clang
Diffstat (limited to 'volk')
-rw-r--r--volk/lib/CMakeLists.txt13
1 files changed, 13 insertions, 0 deletions
diff --git a/volk/lib/CMakeLists.txt b/volk/lib/CMakeLists.txt
index 8288786c9..2ba1bf8fd 100644
--- a/volk/lib/CMakeLists.txt
+++ b/volk/lib/CMakeLists.txt
@@ -55,6 +55,17 @@ if(NOT DEFINED COMPILER_NAME)
endif()
########################################################################
+# Special clang flag so flag checks can fail
+########################################################################
+if(COMPILER_NAME MATCHES "GNU")
+ include(CheckCXXCompilerFlag)
+ CHECK_CXX_COMPILER_FLAG("-Werror=unused-command-line-argument" HAVE_WERROR_UNUSED_CMD_LINE_ARG)
+ if(HAVE_WERROR_UNUSED_CMD_LINE_ARG)
+ set(VOLK_FLAG_CHECK_FLAGS "-Werror=unused-command-line-argument")
+ endif()
+endif()
+
+########################################################################
# detect x86 flavor of CPU
########################################################################
if (${CMAKE_SYSTEM_PROCESSOR} MATCHES "^(i.86|x86|x86_64|amd64)$")
@@ -82,7 +93,9 @@ macro(check_arch arch_name)
COMMAND ${PYTHON_EXECUTABLE} -c "import re; print(re.sub('\\W', '_', '${have_flag}'))"
OUTPUT_VARIABLE have_flag OUTPUT_STRIP_TRAILING_WHITESPACE
)
+ set(CMAKE_REQUIRED_FLAGS VOLK_FLAG_CHECK_FLAGS)
CHECK_CXX_COMPILER_FLAG(${flag} ${have_flag})
+ unset(CMAKE_REQUIRED_FLAGS)
if (NOT ${have_flag})
set(have_${arch_name} FALSE)
endif()