[Cmake-commits] CMake branch, next, updated. v2.8.10.2-2256-g2bb5dd1

Marcus D. Hanwell marcus.hanwell at kitware.com
Wed Feb 20 22:36:10 EST 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  2bb5dd19d2d2134efd6b0396daee5c462d7a9bed (commit)
       via  1e0891e28ac8d595a7bdab6dc2ac5c3d76061233 (commit)
      from  7487a8f9b09bd683c34da4db1c969b6cff45e9e9 (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=2bb5dd19d2d2134efd6b0396daee5c462d7a9bed
commit 2bb5dd19d2d2134efd6b0396daee5c462d7a9bed
Merge: 7487a8f 1e0891e
Author:     Marcus D. Hanwell <marcus.hanwell at kitware.com>
AuthorDate: Wed Feb 20 22:36:08 2013 -0500
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Wed Feb 20 22:36:08 2013 -0500

    Merge topic 'generate-export-header-warnings' into next
    
    1e0891e Removed GenerateExportHeader warnings about old compilers


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=1e0891e28ac8d595a7bdab6dc2ac5c3d76061233
commit 1e0891e28ac8d595a7bdab6dc2ac5c3d76061233
Author:     Marcus D. Hanwell <marcus.hanwell at kitware.com>
AuthorDate: Wed Feb 20 11:48:12 2013 -0500
Commit:     Marcus D. Hanwell <marcus.hanwell at kitware.com>
CommitDate: Wed Feb 20 11:48:12 2013 -0500

    Removed GenerateExportHeader warnings about old compilers
    
    These warnings tend to flood the dashboard submissions, and it is doing
    what it should (degrade gracefully with older compilers).

diff --git a/Modules/GenerateExportHeader.cmake b/Modules/GenerateExportHeader.cmake
index ce23d5d..c88a3a2 100644
--- a/Modules/GenerateExportHeader.cmake
+++ b/Modules/GenerateExportHeader.cmake
@@ -156,16 +156,12 @@ macro(_test_compiler_hidden_visibility)
 
   if(CMAKE_COMPILER_IS_GNUCXX AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS "4.2")
     set(GCC_TOO_OLD TRUE)
-    message(WARNING "GCC version older than 4.2")
   elseif(CMAKE_COMPILER_IS_GNUC AND CMAKE_C_COMPILER_VERSION VERSION_LESS "4.2")
     set(GCC_TOO_OLD TRUE)
-    message(WARNING "GCC version older than 4.2")
   elseif(CMAKE_CXX_COMPILER_ID MATCHES Intel AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS "12.0")
     set(_INTEL_TOO_OLD TRUE)
-    message(WARNING "Intel compiler older than 12.0")
   endif()
 
-
   # Exclude XL here because it misinterprets -fvisibility=hidden even though
   # the check_cxx_compiler_flag passes
   # http://www.cdash.org/CDash/testDetails.php?test=109109951&build=1419259

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

Summary of changes:
 Modules/GenerateExportHeader.cmake |    4 ----
 1 files changed, 0 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list