diff options
author | Stephen Kelly <steveire@gmail.com> | 2014-11-12 23:20:36 +0100 |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2014-11-12 23:20:36 +0100 |
commit | ded30405b23ef08d4ba6564cde3732eef8ca4518 (patch) | |
tree | 21914f87e9a2f278fb15479dd7573648506561fe /Modules/Compiler | |
parent | 5d1fe90ed12f16f1af033b01318062a836d1f4e2 (diff) | |
download | cmake-ded30405b23ef08d4ba6564cde3732eef8ca4518.tar.gz |
Features: Don't record for AppleClang
Features are currently recorded accidentally for all versions of
AppleClang > 3.4 (I have no idea how that relates to upstream
Clang). Presumably that version has the features which are
accidentally recorded, but in the future features will be
recorded initially for only AppleClang >= 5.1, which would
appear as a feature regression.
Commit v3.1.0-rc1~635^2~11 (Don't load Clang-CXX from
AppleClang-CXX., 2013-11-11) ajusted the logic for the CXX
language. Make a similar change for the C language.
Diffstat (limited to 'Modules/Compiler')
-rw-r--r-- | Modules/Compiler/AppleClang-C.cmake | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Modules/Compiler/AppleClang-C.cmake b/Modules/Compiler/AppleClang-C.cmake index 44070b83fe..98fcd0b3ff 100644 --- a/Modules/Compiler/AppleClang-C.cmake +++ b/Modules/Compiler/AppleClang-C.cmake @@ -1 +1,2 @@ -include(Compiler/Clang-C) +include(Compiler/Clang) +__compiler_clang(C) |