2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2002-09-19 17:48:39 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2002-09-19 17:48:39 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2002-09-19 17:48:39 +04:00
|
|
|
#include "cmTryRunCommand.h"
|
|
|
|
#include "cmTryCompileCommand.h"
|
2014-01-04 09:47:13 +04:00
|
|
|
#include <cmsys/FStream.hxx>
|
2002-09-19 17:48:39 +04:00
|
|
|
|
ENH: merge CMake-CrossCompileBasic to HEAD
-add a RESULT_VARIABLE to INCLUDE()
-add CMAKE_TOOLCHAIN_FILE for specifiying your (potentially crosscompiling) toolchain
-have TRY_RUN() complain if you try to use it in crosscompiling mode (which were compiled but cannot run on this system)
-use CMAKE_EXECUTABLE_SUFFIX in TRY_RUN(), probably TRY_RUN won't be able to
run the executables if they have a different suffix because they are
probably crosscompiled, but nevertheless it should be able to find them
-make several cmake variables presettable by the user: CMAKE_C/CXX_COMPILER, CMAKE_C/CXX_OUTPUT_EXTENSION, CMAKE_SYSTEM_NAME, CMAKE_SYSTEM_INFO_FILE
-support prefix for GNU toolchains (arm-elf-gcc, arm-elf-ar, arm-elf-strip etc.)
-move ranlib on OSX from the file command to a command in executed in cmake_install.cmake
-add support for stripping during install in cmake_install.cmake
-split out cl.cmake from Windows-cl.cmake, first (very incomplete) step to support MS crosscompiling tools
-remove stdio.h from the simple C program which checks if the compiler works, since this may not exist for some embedded platforms
-create a new CMakeFindBinUtils.cmake which collects the search fro ar, ranlib, strip, ld, link, install_name_tool and other tools like these
-add support for CMAKE_FIND_ROOT_PATH for all FIND_XXX commands, which is a
list of directories which will be prepended to all search directories, right
now as a cmake variable, turning it into a global cmake property may need
some more work
-remove cmTestTestHandler::TryExecutable(), it's unused
-split cmFileCommand::HandleInstall() into slightly smaller functions
Alex
2007-05-17 21:20:44 +04:00
|
|
|
// cmTryRunCommand
|
2008-01-23 18:28:26 +03:00
|
|
|
bool cmTryRunCommand
|
|
|
|
::InitialPass(std::vector<std::string> const& argv, cmExecutionStatus &)
|
2002-09-19 17:48:39 +04:00
|
|
|
{
|
|
|
|
if(argv.size() < 4)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-09-15 18:28:35 +04:00
|
|
|
if(this->Makefile->GetCMakeInstance()->GetWorkingMode() ==
|
|
|
|
cmake::FIND_PACKAGE_MODE)
|
|
|
|
{
|
2011-09-27 20:59:42 +04:00
|
|
|
this->Makefile->IssueMessage(cmake::FATAL_ERROR,
|
2011-09-15 18:28:35 +04:00
|
|
|
"The TRY_RUN() command is not supported in --find-package mode.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-01-23 18:28:26 +03:00
|
|
|
// build an arg list for TryCompile and extract the runArgs,
|
2002-09-19 17:48:39 +04:00
|
|
|
std::vector<std::string> tryCompile;
|
2007-06-01 19:16:29 +04:00
|
|
|
|
|
|
|
this->CompileResultVariable = "";
|
|
|
|
this->RunResultVariable = "";
|
|
|
|
this->OutputVariable = "";
|
|
|
|
this->RunOutputVariable = "";
|
|
|
|
this->CompileOutputVariable = "";
|
|
|
|
|
2002-09-19 17:48:39 +04:00
|
|
|
std::string runArgs;
|
2002-09-20 16:09:03 +04:00
|
|
|
unsigned int i;
|
2002-09-19 17:48:39 +04:00
|
|
|
for (i = 1; i < argv.size(); ++i)
|
|
|
|
{
|
|
|
|
if (argv[i] == "ARGS")
|
|
|
|
{
|
|
|
|
++i;
|
|
|
|
while (i < argv.size() && argv[i] != "COMPILE_DEFINITIONS" &&
|
2015-01-02 06:30:08 +03:00
|
|
|
argv[i] != "CMAKE_FLAGS" &&
|
|
|
|
argv[i] != "LINK_LIBRARIES")
|
2002-09-19 17:48:39 +04:00
|
|
|
{
|
|
|
|
runArgs += " ";
|
|
|
|
runArgs += argv[i];
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
if (i < argv.size())
|
|
|
|
{
|
|
|
|
tryCompile.push_back(argv[i]);
|
|
|
|
}
|
2011-09-15 18:20:33 +04:00
|
|
|
}
|
|
|
|
else
|
2002-09-19 17:48:39 +04:00
|
|
|
{
|
2004-09-22 22:42:05 +04:00
|
|
|
if (argv[i] == "OUTPUT_VARIABLE")
|
2007-06-01 19:16:29 +04:00
|
|
|
{
|
2004-09-22 22:42:05 +04:00
|
|
|
if ( argv.size() <= (i+1) )
|
|
|
|
{
|
|
|
|
cmSystemTools::Error(
|
2006-03-10 21:54:57 +03:00
|
|
|
"OUTPUT_VARIABLE specified but there is no variable");
|
2004-09-22 22:42:05 +04:00
|
|
|
return false;
|
|
|
|
}
|
2007-06-01 19:16:29 +04:00
|
|
|
i++;
|
|
|
|
this->OutputVariable = argv[i];
|
|
|
|
}
|
|
|
|
else if (argv[i] == "RUN_OUTPUT_VARIABLE")
|
|
|
|
{
|
|
|
|
if (argv.size() <= (i + 1))
|
|
|
|
{
|
|
|
|
cmSystemTools::Error(
|
|
|
|
"RUN_OUTPUT_VARIABLE specified but there is no variable");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
i++;
|
|
|
|
this->RunOutputVariable = argv[i];
|
|
|
|
}
|
|
|
|
else if (argv[i] == "COMPILE_OUTPUT_VARIABLE")
|
|
|
|
{
|
|
|
|
if (argv.size() <= (i + 1))
|
|
|
|
{
|
|
|
|
cmSystemTools::Error(
|
|
|
|
"COMPILE_OUTPUT_VARIABLE specified but there is no variable");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
i++;
|
|
|
|
this->CompileOutputVariable = argv[i];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
tryCompile.push_back(argv[i]);
|
2004-09-22 22:42:05 +04:00
|
|
|
}
|
2002-09-19 17:48:39 +04:00
|
|
|
}
|
|
|
|
}
|
2007-06-01 19:16:29 +04:00
|
|
|
|
|
|
|
// although they could be used together, don't allow it, because
|
|
|
|
// using OUTPUT_VARIABLE makes crosscompiling harder
|
2011-09-15 18:20:33 +04:00
|
|
|
if (this->OutputVariable.size()
|
2015-01-16 01:04:33 +03:00
|
|
|
&& (!this->RunOutputVariable.empty()
|
|
|
|
|| !this->CompileOutputVariable.empty()))
|
2007-06-01 19:16:29 +04:00
|
|
|
{
|
|
|
|
cmSystemTools::Error(
|
|
|
|
"You cannot use OUTPUT_VARIABLE together with COMPILE_OUTPUT_VARIABLE "
|
|
|
|
"or RUN_OUTPUT_VARIABLE. Please use only COMPILE_OUTPUT_VARIABLE and/or "
|
|
|
|
"RUN_OUTPUT_VARIABLE.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool captureRunOutput = false;
|
2015-01-16 01:04:33 +03:00
|
|
|
if (!this->OutputVariable.empty())
|
2007-06-01 19:16:29 +04:00
|
|
|
{
|
|
|
|
captureRunOutput = true;
|
|
|
|
tryCompile.push_back("OUTPUT_VARIABLE");
|
|
|
|
tryCompile.push_back(this->OutputVariable);
|
|
|
|
}
|
2015-01-16 01:04:33 +03:00
|
|
|
if (!this->CompileOutputVariable.empty())
|
2007-06-01 19:16:29 +04:00
|
|
|
{
|
|
|
|
tryCompile.push_back("OUTPUT_VARIABLE");
|
|
|
|
tryCompile.push_back(this->CompileOutputVariable);
|
|
|
|
}
|
2015-01-16 01:04:33 +03:00
|
|
|
if (!this->RunOutputVariable.empty())
|
2007-06-01 19:16:29 +04:00
|
|
|
{
|
|
|
|
captureRunOutput = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
this->RunResultVariable = argv[0];
|
|
|
|
this->CompileResultVariable = argv[1];
|
|
|
|
|
2002-09-19 17:48:39 +04:00
|
|
|
// do the try compile
|
2007-05-24 19:27:51 +04:00
|
|
|
int res = this->TryCompileCode(tryCompile);
|
2007-05-24 16:56:14 +04:00
|
|
|
|
2002-09-19 17:48:39 +04:00
|
|
|
// now try running the command if it compiled
|
2007-05-24 19:27:51 +04:00
|
|
|
if (!res)
|
2002-09-19 17:48:39 +04:00
|
|
|
{
|
2015-01-15 02:31:49 +03:00
|
|
|
if (this->OutputFile.empty())
|
2002-09-19 17:48:39 +04:00
|
|
|
{
|
2007-05-24 19:27:51 +04:00
|
|
|
cmSystemTools::Error(this->FindErrorMessage.c_str());
|
2007-05-03 23:25:41 +04:00
|
|
|
}
|
2007-05-24 19:27:51 +04:00
|
|
|
else
|
2007-05-03 23:25:41 +04:00
|
|
|
{
|
2007-06-01 19:16:29 +04:00
|
|
|
// "run" it and capture the output
|
|
|
|
std::string runOutputContents;
|
2015-03-28 21:18:38 +03:00
|
|
|
if (this->Makefile->IsOn("CMAKE_CROSSCOMPILING") &&
|
|
|
|
!this->Makefile->IsDefinitionSet("CMAKE_CROSSCOMPILING_EMULATOR"))
|
2007-06-01 19:16:29 +04:00
|
|
|
{
|
2011-09-15 18:20:33 +04:00
|
|
|
this->DoNotRunExecutable(runArgs,
|
|
|
|
argv[3],
|
2007-06-01 19:16:29 +04:00
|
|
|
captureRunOutput ? &runOutputContents : 0);
|
|
|
|
}
|
|
|
|
else
|
2007-05-03 23:25:41 +04:00
|
|
|
{
|
2007-06-01 19:16:29 +04:00
|
|
|
this->RunExecutable(runArgs, &runOutputContents);
|
2007-05-03 23:25:41 +04:00
|
|
|
}
|
2007-06-01 19:16:29 +04:00
|
|
|
|
|
|
|
// now put the output into the variables
|
2015-01-16 01:04:33 +03:00
|
|
|
if(!this->RunOutputVariable.empty())
|
2007-06-01 19:16:29 +04:00
|
|
|
{
|
2014-03-11 03:04:11 +04:00
|
|
|
this->Makefile->AddDefinition(this->RunOutputVariable,
|
2007-06-01 19:16:29 +04:00
|
|
|
runOutputContents.c_str());
|
|
|
|
}
|
|
|
|
|
2015-01-16 01:04:33 +03:00
|
|
|
if(!this->OutputVariable.empty())
|
2007-05-24 19:27:51 +04:00
|
|
|
{
|
|
|
|
// if the TryCompileCore saved output in this outputVariable then
|
|
|
|
// prepend that output to this output
|
|
|
|
const char* compileOutput
|
2014-03-11 03:04:11 +04:00
|
|
|
= this->Makefile->GetDefinition(this->OutputVariable);
|
2007-06-01 19:16:29 +04:00
|
|
|
if (compileOutput)
|
2007-05-24 19:27:51 +04:00
|
|
|
{
|
2007-06-01 19:16:29 +04:00
|
|
|
runOutputContents = std::string(compileOutput) + runOutputContents;
|
2007-05-24 19:27:51 +04:00
|
|
|
}
|
2014-03-11 03:04:11 +04:00
|
|
|
this->Makefile->AddDefinition(this->OutputVariable,
|
2007-06-01 19:16:29 +04:00
|
|
|
runOutputContents.c_str());
|
2007-05-24 19:27:51 +04:00
|
|
|
}
|
2002-09-19 17:48:39 +04:00
|
|
|
}
|
2007-06-01 19:16:29 +04:00
|
|
|
}
|
|
|
|
|
2007-05-24 16:56:14 +04:00
|
|
|
// if we created a directory etc, then cleanup after ourselves
|
2006-03-15 19:02:08 +03:00
|
|
|
if(!this->Makefile->GetCMakeInstance()->GetDebugTryCompile())
|
2004-08-05 01:21:19 +04:00
|
|
|
{
|
2007-05-24 19:27:51 +04:00
|
|
|
this->CleanupFiles(this->BinaryDirectory.c_str());
|
2004-08-05 01:21:19 +04:00
|
|
|
}
|
2002-09-19 17:48:39 +04:00
|
|
|
return true;
|
|
|
|
}
|
2007-06-01 19:16:29 +04:00
|
|
|
|
|
|
|
void cmTryRunCommand::RunExecutable(const std::string& runArgs,
|
|
|
|
std::string* out)
|
|
|
|
{
|
|
|
|
int retVal = -1;
|
2015-03-28 21:18:38 +03:00
|
|
|
|
|
|
|
std::string finalCommand;
|
|
|
|
const std::string emulator =
|
|
|
|
this->Makefile->GetSafeDefinition("CMAKE_CROSSCOMPILING_EMULATOR");
|
|
|
|
if (!emulator.empty())
|
|
|
|
{
|
|
|
|
std::vector<std::string> emulatorWithArgs;
|
|
|
|
cmSystemTools::ExpandListArgument(emulator, emulatorWithArgs);
|
|
|
|
finalCommand += cmSystemTools::ConvertToRunCommandPath(
|
|
|
|
emulatorWithArgs[0].c_str());
|
|
|
|
finalCommand += " ";
|
|
|
|
for (std::vector<std::string>::const_iterator ei =
|
|
|
|
emulatorWithArgs.begin()+1;
|
|
|
|
ei != emulatorWithArgs.end(); ++ei)
|
|
|
|
{
|
|
|
|
finalCommand += "\"";
|
|
|
|
finalCommand += *ei;
|
|
|
|
finalCommand += "\"";
|
|
|
|
finalCommand += " ";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
finalCommand += cmSystemTools::ConvertToRunCommandPath(
|
2007-06-01 19:16:29 +04:00
|
|
|
this->OutputFile.c_str());
|
2015-01-16 01:04:33 +03:00
|
|
|
if (!runArgs.empty())
|
2007-06-01 19:16:29 +04:00
|
|
|
{
|
|
|
|
finalCommand += runArgs;
|
|
|
|
}
|
|
|
|
int timeout = 0;
|
|
|
|
bool worked = cmSystemTools::RunSingleCommand(finalCommand.c_str(),
|
2015-04-20 22:36:57 +03:00
|
|
|
out, out, &retVal,
|
2011-07-26 11:26:18 +04:00
|
|
|
0, cmSystemTools::OUTPUT_NONE, timeout);
|
2007-06-01 19:16:29 +04:00
|
|
|
// set the run var
|
|
|
|
char retChar[1000];
|
|
|
|
if (worked)
|
|
|
|
{
|
|
|
|
sprintf(retChar, "%i", retVal);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
strcpy(retChar, "FAILED_TO_RUN");
|
|
|
|
}
|
2014-03-11 03:04:11 +04:00
|
|
|
this->Makefile->AddCacheDefinition(this->RunResultVariable, retChar,
|
2007-06-01 19:16:29 +04:00
|
|
|
"Result of TRY_RUN",
|
2015-04-07 23:45:54 +03:00
|
|
|
cmState::INTERNAL);
|
2007-06-01 19:16:29 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* This is only used when cross compiling. Instead of running the
|
|
|
|
executable, two cache variables are created which will hold the results
|
2011-09-15 18:20:33 +04:00
|
|
|
the executable would have produced.
|
2007-06-01 19:16:29 +04:00
|
|
|
*/
|
2011-09-15 18:20:33 +04:00
|
|
|
void cmTryRunCommand::DoNotRunExecutable(const std::string& runArgs,
|
2007-06-01 19:16:29 +04:00
|
|
|
const std::string& srcFile,
|
|
|
|
std::string* out
|
|
|
|
)
|
|
|
|
{
|
2007-07-31 22:52:01 +04:00
|
|
|
// copy the executable out of the CMakeFiles/ directory, so it is not
|
|
|
|
// removed at the end of TRY_RUN and the user can run it manually
|
|
|
|
// on the target platform.
|
|
|
|
std::string copyDest = this->Makefile->GetHomeOutputDirectory();
|
2007-09-17 18:53:20 +04:00
|
|
|
copyDest += cmake::GetCMakeFilesDirectory();
|
2007-07-31 22:52:01 +04:00
|
|
|
copyDest += "/";
|
|
|
|
copyDest += cmSystemTools::GetFilenameWithoutExtension(
|
2014-03-11 03:04:11 +04:00
|
|
|
this->OutputFile);
|
2007-07-31 22:52:01 +04:00
|
|
|
copyDest += "-";
|
|
|
|
copyDest += this->RunResultVariable;
|
2014-03-11 03:04:11 +04:00
|
|
|
copyDest += cmSystemTools::GetFilenameExtension(this->OutputFile);
|
2014-10-15 16:54:05 +04:00
|
|
|
cmSystemTools::CopyFileAlways(this->OutputFile, copyDest);
|
2007-07-31 22:52:01 +04:00
|
|
|
|
|
|
|
std::string resultFileName = this->Makefile->GetHomeOutputDirectory();
|
|
|
|
resultFileName += "/TryRunResults.cmake";
|
|
|
|
|
|
|
|
std::string detailsString = "For details see ";
|
|
|
|
detailsString += resultFileName;
|
2007-06-01 19:16:29 +04:00
|
|
|
|
2007-08-01 19:59:51 +04:00
|
|
|
std::string internalRunOutputName=this->RunResultVariable+"__TRYRUN_OUTPUT";
|
2007-06-01 19:16:29 +04:00
|
|
|
bool error = false;
|
|
|
|
|
2014-03-11 03:04:11 +04:00
|
|
|
if (this->Makefile->GetDefinition(this->RunResultVariable) == 0)
|
2007-06-01 19:16:29 +04:00
|
|
|
{
|
|
|
|
// if the variables doesn't exist, create it with a helpful error text
|
|
|
|
// and mark it as advanced
|
|
|
|
std::string comment;
|
2007-07-31 22:52:01 +04:00
|
|
|
comment += "Run result of TRY_RUN(), indicates whether the executable "
|
|
|
|
"would have been able to run on its target platform.\n";
|
|
|
|
comment += detailsString;
|
2014-03-11 03:04:11 +04:00
|
|
|
this->Makefile->AddCacheDefinition(this->RunResultVariable,
|
2007-06-01 19:16:29 +04:00
|
|
|
"PLEASE_FILL_OUT-FAILED_TO_RUN",
|
|
|
|
comment.c_str(),
|
2015-04-07 23:45:54 +03:00
|
|
|
cmState::STRING);
|
2007-06-01 19:16:29 +04:00
|
|
|
|
2015-04-06 11:52:45 +03:00
|
|
|
cmState* state = this->Makefile->GetState();
|
2015-04-05 11:48:04 +03:00
|
|
|
const char* existingValue
|
2015-04-06 11:52:45 +03:00
|
|
|
= state->GetCacheEntryValue(this->RunResultVariable);
|
2015-04-05 11:48:04 +03:00
|
|
|
if (existingValue)
|
2007-06-01 19:16:29 +04:00
|
|
|
{
|
2015-04-06 11:52:45 +03:00
|
|
|
state->SetCacheEntryProperty(this->RunResultVariable, "ADVANCED", "1");
|
2007-06-01 19:16:29 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
error = true;
|
|
|
|
}
|
|
|
|
|
2007-07-23 18:47:23 +04:00
|
|
|
// is the output from the executable used ?
|
2007-06-01 19:16:29 +04:00
|
|
|
if (out!=0)
|
|
|
|
{
|
2014-03-11 03:04:11 +04:00
|
|
|
if (this->Makefile->GetDefinition(internalRunOutputName) == 0)
|
2007-06-01 19:16:29 +04:00
|
|
|
{
|
|
|
|
// if the variables doesn't exist, create it with a helpful error text
|
|
|
|
// and mark it as advanced
|
|
|
|
std::string comment;
|
2007-07-31 22:52:01 +04:00
|
|
|
comment+="Output of TRY_RUN(), contains the text, which the executable "
|
|
|
|
"would have printed on stdout and stderr on its target platform.\n";
|
|
|
|
comment += detailsString;
|
2007-06-01 19:16:29 +04:00
|
|
|
|
2014-03-11 03:04:11 +04:00
|
|
|
this->Makefile->AddCacheDefinition(internalRunOutputName,
|
2007-06-01 19:16:29 +04:00
|
|
|
"PLEASE_FILL_OUT-NOTFOUND",
|
|
|
|
comment.c_str(),
|
2015-04-07 23:45:54 +03:00
|
|
|
cmState::STRING);
|
2015-04-06 11:52:45 +03:00
|
|
|
cmState* state = this->Makefile->GetState();
|
2015-04-05 11:48:04 +03:00
|
|
|
const char* existing =
|
2015-04-06 11:52:45 +03:00
|
|
|
state->GetCacheEntryValue(internalRunOutputName);
|
2015-04-05 11:48:04 +03:00
|
|
|
if (existing)
|
2007-06-01 19:16:29 +04:00
|
|
|
{
|
2015-04-06 11:52:45 +03:00
|
|
|
state->SetCacheEntryProperty(internalRunOutputName,
|
|
|
|
"ADVANCED", "1");
|
2007-06-01 19:16:29 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
error = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (error)
|
|
|
|
{
|
2007-07-23 21:13:29 +04:00
|
|
|
static bool firstTryRun = true;
|
2014-01-04 09:47:13 +04:00
|
|
|
cmsys::ofstream file(resultFileName.c_str(),
|
2007-07-26 16:40:51 +04:00
|
|
|
firstTryRun ? std::ios::out : std::ios::app);
|
2007-07-23 18:47:23 +04:00
|
|
|
if ( file )
|
|
|
|
{
|
2007-07-23 21:13:29 +04:00
|
|
|
if (firstTryRun)
|
|
|
|
{
|
|
|
|
file << "# This file was generated by CMake because it detected "
|
|
|
|
"TRY_RUN() commands\n"
|
|
|
|
"# in crosscompiling mode. It will be overwritten by the next "
|
|
|
|
"CMake run.\n"
|
|
|
|
"# Copy it to a safe location, set the variables to "
|
|
|
|
"appropriate values\n"
|
|
|
|
"# and use it then to preset the CMake cache (using -C).\n\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string comment ="\n";
|
|
|
|
comment += this->RunResultVariable;
|
2007-08-01 19:59:51 +04:00
|
|
|
comment += "\n indicates whether the executable would have been able "
|
2007-08-02 01:10:22 +04:00
|
|
|
"to run on its\n"
|
|
|
|
" target platform. If so, set ";
|
2007-07-31 22:52:01 +04:00
|
|
|
comment += this->RunResultVariable;
|
|
|
|
comment += " to\n"
|
2007-08-01 19:59:51 +04:00
|
|
|
" the exit code (in many cases 0 for success), otherwise "
|
2007-07-31 22:52:01 +04:00
|
|
|
"enter \"FAILED_TO_RUN\".\n";
|
2007-07-23 21:13:29 +04:00
|
|
|
if (out!=0)
|
|
|
|
{
|
|
|
|
comment += internalRunOutputName;
|
2007-08-01 19:59:51 +04:00
|
|
|
comment += "\n contains the text the executable "
|
2007-07-31 22:52:01 +04:00
|
|
|
"would have printed on stdout and stderr.\n"
|
2007-08-01 19:59:51 +04:00
|
|
|
" If the executable would not have been able to run, set ";
|
2007-07-31 22:52:01 +04:00
|
|
|
comment += internalRunOutputName;
|
|
|
|
comment += " empty.\n"
|
2007-08-01 19:59:51 +04:00
|
|
|
" Otherwise check if the output is evaluated by the "
|
2007-07-31 22:52:01 +04:00
|
|
|
"calling CMake code. If so,\n"
|
2007-08-01 19:59:51 +04:00
|
|
|
" check what the source file would have printed when "
|
|
|
|
"called with the given arguments.\n";
|
2007-07-23 21:13:29 +04:00
|
|
|
}
|
2007-07-31 22:52:01 +04:00
|
|
|
comment += "The ";
|
|
|
|
comment += this->CompileResultVariable;
|
|
|
|
comment += " variable holds the build result for this TRY_RUN().\n\n"
|
|
|
|
"Source file : ";
|
|
|
|
comment += srcFile + "\n";
|
|
|
|
comment += "Executable : ";
|
|
|
|
comment += copyDest + "\n";
|
|
|
|
comment += "Run arguments : ";
|
|
|
|
comment += runArgs;
|
|
|
|
comment += "\n";
|
2015-05-16 08:30:33 +03:00
|
|
|
comment += " Called from: " + this->Makefile->FormatListFileStack();
|
2007-07-23 21:13:29 +04:00
|
|
|
cmsys::SystemTools::ReplaceString(comment, "\n", "\n# ");
|
|
|
|
file << comment << "\n\n";
|
|
|
|
|
2013-08-22 13:30:19 +04:00
|
|
|
file << "set( " << this->RunResultVariable << " \n \""
|
2014-03-11 03:04:11 +04:00
|
|
|
<< this->Makefile->GetDefinition(this->RunResultVariable)
|
2007-07-30 22:46:57 +04:00
|
|
|
<< "\"\n CACHE STRING \"Result from TRY_RUN\" FORCE)\n\n";
|
2007-07-23 21:13:29 +04:00
|
|
|
|
2007-07-23 18:47:23 +04:00
|
|
|
if (out!=0)
|
|
|
|
{
|
2013-08-22 13:30:19 +04:00
|
|
|
file << "set( " << internalRunOutputName << " \n \""
|
2014-03-11 03:04:11 +04:00
|
|
|
<< this->Makefile->GetDefinition(internalRunOutputName)
|
2007-07-30 22:46:57 +04:00
|
|
|
<< "\"\n CACHE STRING \"Output from TRY_RUN\" FORCE)\n\n";
|
2007-07-23 18:47:23 +04:00
|
|
|
}
|
|
|
|
file.close();
|
|
|
|
}
|
2007-07-23 21:13:29 +04:00
|
|
|
firstTryRun = false;
|
2007-07-23 18:47:23 +04:00
|
|
|
|
2007-06-01 19:16:29 +04:00
|
|
|
std::string errorMessage = "TRY_RUN() invoked in cross-compiling mode, "
|
|
|
|
"please set the following cache variables "
|
2010-07-02 18:58:00 +04:00
|
|
|
"appropriately:\n";
|
2007-06-01 19:16:29 +04:00
|
|
|
errorMessage += " " + this->RunResultVariable + " (advanced)\n";
|
|
|
|
if (out!=0)
|
|
|
|
{
|
|
|
|
errorMessage += " " + internalRunOutputName + " (advanced)\n";
|
|
|
|
}
|
2007-07-31 22:52:01 +04:00
|
|
|
errorMessage += detailsString;
|
2007-06-01 19:16:29 +04:00
|
|
|
cmSystemTools::Error(errorMessage.c_str());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (out!=0)
|
|
|
|
{
|
2014-03-11 03:04:11 +04:00
|
|
|
(*out) = this->Makefile->GetDefinition(internalRunOutputName);
|
2007-06-01 19:16:29 +04:00
|
|
|
}
|
|
|
|
}
|