[Cmake-commits] CMake branch, next, updated. v2.8.8-3519-g994670c
Peter Kuemmel
syntheticpp at gmx.net
Wed Jul 18 06:36:07 EDT 2012
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 994670c6e879033e1c615a3991fd4e6b33c07489 (commit)
via 9e30289176c1aaee4df14e452e6590187355040f (commit)
from 83459d6569d903c4c8fc84ebcd6584d4c5ac7a2c (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=994670c6e879033e1c615a3991fd4e6b33c07489
commit 994670c6e879033e1c615a3991fd4e6b33c07489
Merge: 83459d6 9e30289
Author: Peter Kuemmel <syntheticpp at gmx.net>
AuthorDate: Wed Jul 18 06:36:05 2012 -0400
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Wed Jul 18 06:36:05 2012 -0400
Merge topic 'ninja-mingw-TARGET_PDB' into next
9e30289 Ninja: Cannot pass a reference to an anonymous object.
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=9e30289176c1aaee4df14e452e6590187355040f
commit 9e30289176c1aaee4df14e452e6590187355040f
Author: Nicolas Despres <nicolas.despres at gmail.com>
AuthorDate: Wed Jul 18 10:50:57 2012 +0200
Commit: Peter Kümmel <syntheticpp at gmx.net>
CommitDate: Wed Jul 18 12:35:10 2012 +0200
Ninja: Cannot pass a reference to an anonymous object.
diff --git a/Source/cmNinjaNormalTargetGenerator.cxx b/Source/cmNinjaNormalTargetGenerator.cxx
index d832a4b..4c35d25 100644
--- a/Source/cmNinjaNormalTargetGenerator.cxx
+++ b/Source/cmNinjaNormalTargetGenerator.cxx
@@ -444,9 +444,10 @@ void cmNinjaNormalTargetGenerator::WriteLinkStatement()
{
// It is common to place debug symbols at a specific place,
// so we need a plain target name in the rule available.
+ std::string prefix;
std::string base;
std::string suffix;
- this->GetTarget()->GetFullNameComponents(std::string(), base, suffix);
+ this->GetTarget()->GetFullNameComponents(prefix, base, suffix);
std::string dbg_suffix = ".dbg";
// TODO: Where to document?
if (mf->GetDefinition("CMAKE_DEBUG_SYMBOL_SUFFIX"))
-----------------------------------------------------------------------
Summary of changes:
Source/cmNinjaNormalTargetGenerator.cxx | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list