diff options
author | Stephen Kelly <steveire@gmail.com> | 2014-11-11 22:06:03 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2014-11-12 21:59:17 (GMT) |
commit | 82c283f914c23df9e11cdc50f764bfa054540f54 (patch) | |
tree | 9eae0465dfc3334922a12c7fce1fef5af98f919c /Modules/Compiler/Clang-C.cmake | |
parent | b18155b7885705f794af5025173b2d1e45154d67 (diff) | |
download | CMake-82c283f914c23df9e11cdc50f764bfa054540f54.zip CMake-82c283f914c23df9e11cdc50f764bfa054540f54.tar.gz CMake-82c283f914c23df9e11cdc50f764bfa054540f54.tar.bz2 |
Features: Use the correct dialect flag when recording features.
Avoid using -std=c++1y for compilers which support -std=c++14, for
example.
Diffstat (limited to 'Modules/Compiler/Clang-C.cmake')
-rw-r--r-- | Modules/Compiler/Clang-C.cmake | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Modules/Compiler/Clang-C.cmake b/Modules/Compiler/Clang-C.cmake index 05d3c0b..92119ba 100644 --- a/Modules/Compiler/Clang-C.cmake +++ b/Modules/Compiler/Clang-C.cmake @@ -21,16 +21,16 @@ set(CMAKE_C_STANDARD_DEFAULT 90) macro(cmake_record_c_compile_features) macro(_get_clang_features std_version list) - record_compiler_features(C "-std=${std_version}" ${list}) + record_compiler_features(C "${std_version}" ${list}) endmacro() if (UNIX AND NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 3.4) - _get_clang_features(c11 CMAKE_C11_COMPILE_FEATURES) + _get_clang_features(${CMAKE_C11_STANDARD_COMPILE_OPTION} CMAKE_C11_COMPILE_FEATURES) if (_result EQUAL 0) - _get_clang_features(c99 CMAKE_C99_COMPILE_FEATURES) + _get_clang_features(${CMAKE_C99_STANDARD_COMPILE_OPTION} CMAKE_C99_COMPILE_FEATURES) endif() if (_result EQUAL 0) - _get_clang_features(c90 CMAKE_C90_COMPILE_FEATURES) + _get_clang_features(${CMAKE_C90_STANDARD_COMPILE_OPTION} CMAKE_C90_COMPILE_FEATURES) endif() else() set(_result 0) |