[Cmake-commits] CMake branch, master, updated. v3.1.1-880-g9f559a2

Brad King brad.king at kitware.com
Fri Jan 23 10:50:23 EST 2015


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".

The branch, master has been updated
       via  9f559a26080a7c76210277999385e50a9412300c (commit)
       via  374a66b58ced947d9713dfd6f439a52b6646e923 (commit)
      from  0bda22f247bffa75abc184e96451835f4450145c (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=9f559a26080a7c76210277999385e50a9412300c
commit 9f559a26080a7c76210277999385e50a9412300c
Merge: 0bda22f 374a66b
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Fri Jan 23 10:50:22 2015 -0500
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Fri Jan 23 10:50:22 2015 -0500

    Merge topic 'GNU-4.4-compile-features'
    
    374a66b5 Features: Blacklist raw string literals test for GNU 4.4

diff --cc Tests/CompileFeatures/CMakeLists.txt
index ef37dcb,0642487..aacf4c1
--- a/Tests/CompileFeatures/CMakeLists.txt
+++ b/Tests/CompileFeatures/CMakeLists.txt
@@@ -51,18 -51,15 +51,26 @@@ if (CMAKE_CXX_COMPILER_ID STREQUAL "App
    )
  endif()
  
 +if (CMAKE_CXX_COMPILER_ID STREQUAL SunPro)
 +  list(REMOVE_ITEM CXX_non_features
 +    cxx_attribute_deprecated
 +    cxx_contextual_conversions
 +    cxx_extended_friend_declarations
 +    cxx_long_long_type
 +    cxx_sizeof_member
 +    cxx_variadic_macros
 +  )
 +endif()
 +
  if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU"
+     AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.5)
+   # The cxx_raw_string_literals feature happens to work in some distributions
+   # of GNU 4.4, but it is first documented as available with GNU 4.5.
+   list(REMOVE_ITEM CXX_non_features
+     cxx_raw_string_literals
+   )
+ endif()
+ if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU"
      AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.6)
    # The cxx_constexpr feature happens to work (for *this* testcase) with
    # GNU 4.5, but it is first documented as available with GNU 4.6.

-----------------------------------------------------------------------

Summary of changes:
 Tests/CompileFeatures/CMakeLists.txt |    8 ++++++++
 1 file changed, 8 insertions(+)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list