[Cmake-commits] CMake branch, master, updated. v3.6.0-rc4-352-g0ca8f3e
Brad King
brad.king at kitware.com
Thu Jul 7 09:02:30 EDT 2016
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 0ca8f3e699fc2936ccf65a78edf9c74aed0adb68 (commit)
via a66004bee06023e9da4e0895ee1afbceaff33bdb (commit)
via cdde77e5f66cee933a7b7c538c22e8c323a91d09 (commit)
via f9dbe22ca273501cf6d50585211c9d18a0e15f97 (commit)
via 5a3ed0d780edde72877e462bc9c3d10017c904f9 (commit)
from 5553aab0bdc8cfb84c26b99b98779f4401e25a42 (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 -----------------------------------------------------------------
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=0ca8f3e699fc2936ccf65a78edf9c74aed0adb68
commit 0ca8f3e699fc2936ccf65a78edf9c74aed0adb68
Merge: 5553aab a66004b
Author: Brad King <brad.king at kitware.com>
AuthorDate: Thu Jul 7 09:02:23 2016 -0400
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Thu Jul 7 09:02:23 2016 -0400
Merge topic 'toolchain-flag-init'
a66004be Honor CMAKE_<LANG>_FLAGS[_<CONFIG>]_INIT set in toolchain files
cdde77e5 OpenWatcom: Partially modernize platform information modules
f9dbe22c Intel: Do not use GNU-like flags on Windows
5a3ed0d7 Intel: Do not use MSVC-like flags for Fortran
-----------------------------------------------------------------------
Summary of changes:
Help/manual/cmake-variables.7.rst | 5 +++
Help/release/dev/toolchain-flag-init.rst | 7 +++++
Help/variable/CMAKE_LANG_FLAGS_DEBUG_INIT.rst | 10 ++++++
Help/variable/CMAKE_LANG_FLAGS_INIT.rst | 15 +++++++++
Help/variable/CMAKE_LANG_FLAGS_MINSIZEREL_INIT.rst | 10 ++++++
Help/variable/CMAKE_LANG_FLAGS_RELEASE_INIT.rst | 10 ++++++
.../CMAKE_LANG_FLAGS_RELWITHDEBINFO_INIT.rst | 10 ++++++
Help/variable/CMAKE_USER_MAKE_RULES_OVERRIDE.rst | 6 ++--
Modules/Compiler/ARMCC.cmake | 10 +++---
Modules/Compiler/Absoft-Fortran.cmake | 10 +++---
Modules/Compiler/Bruce-C.cmake | 10 +++---
Modules/Compiler/G95-Fortran.cmake | 10 +++---
Modules/Compiler/GHS-C.cmake | 10 +++---
Modules/Compiler/GHS-CXX.cmake | 10 +++---
Modules/Compiler/GNU-Fortran.cmake | 4 +--
Modules/Compiler/GNU.cmake | 10 +++---
Modules/Compiler/Intel-ASM.cmake | 11 +++----
Modules/Compiler/Intel-C.cmake | 11 +++----
Modules/Compiler/Intel-CXX.cmake | 11 +++----
Modules/Compiler/Intel-Fortran.cmake | 9 ++----
.../Windows-Clang.cmake => Compiler/Intel.cmake} | 26 ++++++++-------
Modules/Compiler/PGI-C.cmake | 4 +--
Modules/Compiler/PGI-CXX.cmake | 4 +--
Modules/Compiler/PGI-Fortran.cmake | 4 +--
Modules/Compiler/PGI.cmake | 10 +++---
Modules/Compiler/PathScale-C.cmake | 4 +--
Modules/Compiler/PathScale-CXX.cmake | 4 +--
Modules/Compiler/PathScale.cmake | 10 +++---
Modules/Compiler/SunPro-ASM.cmake | 10 +++---
Modules/Compiler/SunPro-C.cmake | 10 +++---
Modules/Compiler/SunPro-CXX.cmake | 10 +++---
Modules/Compiler/SunPro-Fortran.cmake | 10 +++---
Modules/Compiler/TinyCC-C.cmake | 10 +++---
Modules/Compiler/XL-ASM.cmake | 10 +++---
Modules/Compiler/XL-C.cmake | 6 ++--
Modules/Compiler/XL-CXX.cmake | 6 ++--
Modules/Compiler/XL-Fortran.cmake | 2 +-
Modules/Compiler/XL.cmake | 8 ++---
Modules/Platform/ARTOS-GNU-C.cmake | 10 +++---
Modules/Platform/Generic-ADSP-C.cmake | 8 ++---
Modules/Platform/Generic-ADSP-CXX.cmake | 8 ++---
Modules/Platform/Generic-SDCC-C.cmake | 2 +-
Modules/Platform/HP-UX-HP-CXX.cmake | 8 ++---
Modules/Platform/HP-UX-HP.cmake | 2 +-
Modules/Platform/Windows-Embarcadero.cmake | 10 +++---
Modules/Platform/Windows-Intel-Fortran.cmake | 10 +++---
Modules/Platform/Windows-MSVC.cmake | 33 +++++++++++---------
Modules/Platform/Windows-OpenWatcom-C.cmake | 1 +
Modules/Platform/Windows-OpenWatcom-CXX.cmake | 1 +
...ndows-wcl386.cmake => Windows-OpenWatcom.cmake} | 32 +++++++++++++++----
Modules/Platform/Windows-Watcom-C.cmake | 1 +
Modules/Platform/Windows-Watcom-CXX.cmake | 1 +
Tests/RunCMake/ToolchainFile/FlagsInit-stdout.txt | 30 ++++++++++++++++++
.../ToolchainFile/FlagsInit-toolchain.cmake | 7 +++++
Tests/RunCMake/ToolchainFile/FlagsInit.cmake | 7 +++++
Tests/RunCMake/ToolchainFile/RunCMakeTest.cmake | 1 +
56 files changed, 324 insertions(+), 185 deletions(-)
create mode 100644 Help/release/dev/toolchain-flag-init.rst
create mode 100644 Help/variable/CMAKE_LANG_FLAGS_DEBUG_INIT.rst
create mode 100644 Help/variable/CMAKE_LANG_FLAGS_INIT.rst
create mode 100644 Help/variable/CMAKE_LANG_FLAGS_MINSIZEREL_INIT.rst
create mode 100644 Help/variable/CMAKE_LANG_FLAGS_RELEASE_INIT.rst
create mode 100644 Help/variable/CMAKE_LANG_FLAGS_RELWITHDEBINFO_INIT.rst
copy Modules/{Platform/Windows-Clang.cmake => Compiler/Intel.cmake} (57%)
create mode 100644 Modules/Platform/Windows-OpenWatcom-C.cmake
create mode 100644 Modules/Platform/Windows-OpenWatcom-CXX.cmake
rename Modules/Platform/{Windows-wcl386.cmake => Windows-OpenWatcom.cmake} (78%)
create mode 100644 Modules/Platform/Windows-Watcom-C.cmake
create mode 100644 Modules/Platform/Windows-Watcom-CXX.cmake
create mode 100644 Tests/RunCMake/ToolchainFile/FlagsInit-stdout.txt
create mode 100644 Tests/RunCMake/ToolchainFile/FlagsInit-toolchain.cmake
create mode 100644 Tests/RunCMake/ToolchainFile/FlagsInit.cmake
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list