[Cmake-commits] CMake branch, next, updated. v3.7.0-1461-g5ae1cea
Brad King
brad.king at kitware.com
Wed Nov 30 14:31:02 EST 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, next has been updated
via 5ae1cea2ba711a22e0b7ebadeb71e5347b8547ef (commit)
via 418afd5b2c4e7e55f157e05d3afb1223d38d4829 (commit)
from 7080e8b39714568a81f8bd80e5ae79d00ee3eb23 (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=5ae1cea2ba711a22e0b7ebadeb71e5347b8547ef
commit 5ae1cea2ba711a22e0b7ebadeb71e5347b8547ef
Merge: 7080e8b 418afd5
Author: Brad King <brad.king at kitware.com>
AuthorDate: Wed Nov 30 14:31:01 2016 -0500
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Wed Nov 30 14:31:01 2016 -0500
Merge topic 'vs-Zc-inline' into next
418afd5b VS: Add v140 flag table entries for `-Zc:inline[-]`
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=418afd5b2c4e7e55f157e05d3afb1223d38d4829
commit 418afd5b2c4e7e55f157e05d3afb1223d38d4829
Author: Brad King <brad.king at kitware.com>
AuthorDate: Wed Nov 30 14:20:15 2016 -0500
Commit: Brad King <brad.king at kitware.com>
CommitDate: Wed Nov 30 14:20:15 2016 -0500
VS: Add v140 flag table entries for `-Zc:inline[-]`
The documentation of this option [1] claims that the default is off, but
VS seems to use `-Zc:inline` by default if `RemoveUnreferencedCodeData`
does not appear in the `.vcxproj` file. Add the flag table entry to
allow use of the flag to be configured.
[1] https://msdn.microsoft.com/en-us/library/dn642448.aspx
Suggested-by: Serti Ayoub <ayb.serti at gmail.com>
diff --git a/Source/cmVS140CLFlagTable.h b/Source/cmVS140CLFlagTable.h
index 317cc18..60b4379 100644
--- a/Source/cmVS140CLFlagTable.h
+++ b/Source/cmVS140CLFlagTable.h
@@ -164,6 +164,8 @@ static cmVS7FlagTable cmVS140CLFlagTable[] = {
{ "TreatWChar_tAsBuiltInType", "Zc:wchar_t", "", "true", 0 },
{ "ForceConformanceInForLoopScope", "Zc:forScope-", "", "false", 0 },
{ "ForceConformanceInForLoopScope", "Zc:forScope", "", "true", 0 },
+ { "RemoveUnreferencedCodeData", "Zc:inline-", "", "false", 0 },
+ { "RemoveUnreferencedCodeData", "Zc:inline", "", "true", 0 },
{ "RuntimeTypeInfo", "GR-", "", "false", 0 },
{ "RuntimeTypeInfo", "GR", "", "true", 0 },
{ "OpenMPSupport", "openmp-", "", "false", 0 },
-----------------------------------------------------------------------
Summary of changes:
Source/cmVS140CLFlagTable.h | 2 ++
1 file changed, 2 insertions(+)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list