[Cmake-commits] CMake branch, next, updated. v2.8.3-1536-g4db6140
David Cole
david.cole at kitware.com
Mon Jan 31 15:18:30 EST 2011
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 4db6140ab99f91d20e7c970c1e298a861a60e1fc (commit)
via d503206fbea7aab6a4eaae08acf1ab53b0997df3 (commit)
from 6272e63327500bb7c3cb224a54b754fa9b53b5b2 (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=4db6140ab99f91d20e7c970c1e298a861a60e1fc
commit 4db6140ab99f91d20e7c970c1e298a861a60e1fc
Merge: 6272e63 d503206
Author: David Cole <david.cole at kitware.com>
AuthorDate: Mon Jan 31 15:18:22 2011 -0500
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Mon Jan 31 15:18:22 2011 -0500
Merge topic 'add-floating-point-flags' into next
d503206 Add FloatingPointModel to the list of known VS7 generator flags.
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=d503206fbea7aab6a4eaae08acf1ab53b0997df3
commit d503206fbea7aab6a4eaae08acf1ab53b0997df3
Author: James Bigler <jamesbigler at gmail.com>
AuthorDate: Fri Jan 28 17:03:39 2011 -0700
Commit: David Cole <david.cole at kitware.com>
CommitDate: Mon Jan 31 14:47:46 2011 -0500
Add FloatingPointModel to the list of known VS7 generator flags.
Added FloatingPointModel with /fp:precise, /fp:strict, and /fp:fast.
diff --git a/Source/cmLocalVisualStudio7Generator.cxx b/Source/cmLocalVisualStudio7Generator.cxx
index e839ed3..f65a134 100644
--- a/Source/cmLocalVisualStudio7Generator.cxx
+++ b/Source/cmLocalVisualStudio7Generator.cxx
@@ -381,6 +381,11 @@ cmVS7FlagTable cmLocalVisualStudio7GeneratorFlagTable[] =
"Use sse2 instructions", "2", 0},
{"EnableEnhancedInstructionSet", "arch:SSE",
"Use sse instructions", "1", 0},
+ {"FloatingPointModel", "fp:precise",
+ "Use precise floating point model", "0", 0},
+ {"FloatingPointModel", "fp:strict",
+ "Use strict floating point model", "1", 0},
+ {"FloatingPointModel", "fp:fast", "Use fast floating point model", "2", 0},
{"FavorSizeOrSpeed", "Ot", "Favor fast code", "1", 0},
{"FavorSizeOrSpeed", "Os", "Favor small code", "2", 0},
{"CompileAs", "TC", "Compile as c code", "1", 0},
-----------------------------------------------------------------------
Summary of changes:
Source/cmLocalVisualStudio7Generator.cxx | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list