From d74b75af09626502d898991151ce1b152ac2e0ef Mon Sep 17 00:00:00 2001 From: David Cole Date: Thu, 29 Jan 2009 15:23:18 -0500 Subject: [PATCH] ENH: Emit a little more information in the error message when the output file is not found during a core try compile. --- Source/cmCoreTryCompile.cxx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Source/cmCoreTryCompile.cxx b/Source/cmCoreTryCompile.cxx index e756c1c6d..0ebe2cde0 100644 --- a/Source/cmCoreTryCompile.cxx +++ b/Source/cmCoreTryCompile.cxx @@ -22,7 +22,6 @@ int cmCoreTryCompile::TryCompileCode(std::vector const& argv) { - this->BinaryDirectory = argv[1].c_str(); this->OutputFile = ""; // which signature were we called with ? @@ -305,6 +304,7 @@ int cmCoreTryCompile::TryCompileCode(std::vector const& argv) if (this->SrcFileSignature) { this->FindOutputFile(targetName); + if ((res==0) && (copyFile.size())) { if(!cmSystemTools::CopyFileAlways(this->OutputFile.c_str(), @@ -314,6 +314,13 @@ int cmCoreTryCompile::TryCompileCode(std::vector const& argv) emsg << "Could not COPY_FILE.\n" << " OutputFile: '" << this->OutputFile.c_str() << "'\n" << " copyFile: '" << copyFile.c_str() << "'\n"; + + if (this->FindErrorMessage.size()) + { + emsg << "\n"; + emsg << this->FindErrorMessage.c_str() << "\n"; + } + cmSystemTools::Error(emsg.str().c_str()); return -1; }