[Cmake-commits] CMake branch, next, updated. v2.8.11.2-3888-gd67a550
Rolf Eike Beer
eike at sf-mail.de
Wed Aug 14 16:53:10 EDT 2013
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, next has been updated
via d67a550dbe04d29aade5d5ecf4d92bd5ab91e6c7 (commit)
via 9dad4759708aea82c479457e3a499259af8b8b2a (commit)
from f61423ae410adaf8b21852449ec59f04887465a4 (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=d67a550dbe04d29aade5d5ecf4d92bd5ab91e6c7
commit d67a550dbe04d29aade5d5ecf4d92bd5ab91e6c7
Merge: f61423a 9dad475
Author: Rolf Eike Beer <eike at sf-mail.de>
AuthorDate: Wed Aug 14 16:53:07 2013 -0400
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Wed Aug 14 16:53:07 2013 -0400
Merge topic 'cxx11' into next
9dad475 CXXFeatures: try to prevent failure with g++ 2.9
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=9dad4759708aea82c479457e3a499259af8b8b2a
commit 9dad4759708aea82c479457e3a499259af8b8b2a
Author: Rolf Eike Beer <eike at sf-mail.de>
AuthorDate: Wed Aug 14 22:52:47 2013 +0200
Commit: Rolf Eike Beer <eike at sf-mail.de>
CommitDate: Wed Aug 14 22:52:47 2013 +0200
CXXFeatures: try to prevent failure with g++ 2.9
diff --git a/Tests/Module/FindCXXFeatures/CMakeLists.txt b/Tests/Module/FindCXXFeatures/CMakeLists.txt
index ea346ba..7f03457 100644
--- a/Tests/Module/FindCXXFeatures/CMakeLists.txt
+++ b/Tests/Module/FindCXXFeatures/CMakeLists.txt
@@ -65,6 +65,11 @@ if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
static_assert
variadic_templates)
endif ()
+ # At least on one AIX dashboard machine the detection fails with
+ # gcc 2.9, looks like that didn't properly detect the flags.
+ if (CMAKE_CXX_COMPILER_VERSION VERSION_LESS 3)
+ set(_compiler_unknown_flag)
+ endif ()
elseif (CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
if (NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 17)
list(APPEND _expected_features
-----------------------------------------------------------------------
Summary of changes:
Tests/Module/FindCXXFeatures/CMakeLists.txt | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list