| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388 |
- /*============================================================================
- CMake - Cross Platform Makefile Generator
- Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
- Distributed under the OSI-approved BSD License (the "License");
- see accompanying file Copyright.txt for details.
- 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.
- ============================================================================*/
- #include "cmTryRunCommand.h"
- #include "cmCacheManager.h"
- #include "cmTryCompileCommand.h"
- #include <cmsys/FStream.hxx>
- // cmTryRunCommand
- bool cmTryRunCommand
- ::InitialPass(std::vector<std::string> const& argv, cmExecutionStatus &)
- {
- if(argv.size() < 4)
- {
- return false;
- }
- if(this->Makefile->GetCMakeInstance()->GetWorkingMode() ==
- cmake::FIND_PACKAGE_MODE)
- {
- this->Makefile->IssueMessage(cmake::FATAL_ERROR,
- "The TRY_RUN() command is not supported in --find-package mode.");
- return false;
- }
- // build an arg list for TryCompile and extract the runArgs,
- std::vector<std::string> tryCompile;
- this->CompileResultVariable = "";
- this->RunResultVariable = "";
- this->OutputVariable = "";
- this->RunOutputVariable = "";
- this->CompileOutputVariable = "";
- std::string runArgs;
- unsigned int i;
- for (i = 1; i < argv.size(); ++i)
- {
- if (argv[i] == "ARGS")
- {
- ++i;
- while (i < argv.size() && argv[i] != "COMPILE_DEFINITIONS" &&
- argv[i] != "CMAKE_FLAGS")
- {
- runArgs += " ";
- runArgs += argv[i];
- ++i;
- }
- if (i < argv.size())
- {
- tryCompile.push_back(argv[i]);
- }
- }
- else
- {
- if (argv[i] == "OUTPUT_VARIABLE")
- {
- if ( argv.size() <= (i+1) )
- {
- cmSystemTools::Error(
- "OUTPUT_VARIABLE specified but there is no variable");
- return false;
- }
- 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]);
- }
- }
- }
- // although they could be used together, don't allow it, because
- // using OUTPUT_VARIABLE makes crosscompiling harder
- if (this->OutputVariable.size()
- && ((this->RunOutputVariable.size())
- || (this->CompileOutputVariable.size())))
- {
- 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;
- if (this->OutputVariable.size())
- {
- captureRunOutput = true;
- tryCompile.push_back("OUTPUT_VARIABLE");
- tryCompile.push_back(this->OutputVariable);
- }
- if (this->CompileOutputVariable.size())
- {
- tryCompile.push_back("OUTPUT_VARIABLE");
- tryCompile.push_back(this->CompileOutputVariable);
- }
- if (this->RunOutputVariable.size())
- {
- captureRunOutput = true;
- }
- this->RunResultVariable = argv[0];
- this->CompileResultVariable = argv[1];
- // do the try compile
- int res = this->TryCompileCode(tryCompile);
- // now try running the command if it compiled
- if (!res)
- {
- if (this->OutputFile.size() == 0)
- {
- cmSystemTools::Error(this->FindErrorMessage.c_str());
- }
- else
- {
- // "run" it and capture the output
- std::string runOutputContents;
- if (this->Makefile->IsOn("CMAKE_CROSSCOMPILING"))
- {
- this->DoNotRunExecutable(runArgs,
- argv[3],
- captureRunOutput ? &runOutputContents : 0);
- }
- else
- {
- this->RunExecutable(runArgs, &runOutputContents);
- }
- // now put the output into the variables
- if(this->RunOutputVariable.size())
- {
- this->Makefile->AddDefinition(this->RunOutputVariable,
- runOutputContents.c_str());
- }
- if(this->OutputVariable.size())
- {
- // if the TryCompileCore saved output in this outputVariable then
- // prepend that output to this output
- const char* compileOutput
- = this->Makefile->GetDefinition(this->OutputVariable);
- if (compileOutput)
- {
- runOutputContents = std::string(compileOutput) + runOutputContents;
- }
- this->Makefile->AddDefinition(this->OutputVariable,
- runOutputContents.c_str());
- }
- }
- }
- // if we created a directory etc, then cleanup after ourselves
- if(!this->Makefile->GetCMakeInstance()->GetDebugTryCompile())
- {
- this->CleanupFiles(this->BinaryDirectory.c_str());
- }
- return true;
- }
- void cmTryRunCommand::RunExecutable(const std::string& runArgs,
- std::string* out)
- {
- int retVal = -1;
- std::string finalCommand = cmSystemTools::ConvertToRunCommandPath(
- this->OutputFile.c_str());
- if (runArgs.size())
- {
- finalCommand += runArgs;
- }
- int timeout = 0;
- bool worked = cmSystemTools::RunSingleCommand(finalCommand.c_str(),
- out, &retVal,
- 0, cmSystemTools::OUTPUT_NONE, timeout);
- // set the run var
- char retChar[1000];
- if (worked)
- {
- sprintf(retChar, "%i", retVal);
- }
- else
- {
- strcpy(retChar, "FAILED_TO_RUN");
- }
- this->Makefile->AddCacheDefinition(this->RunResultVariable, retChar,
- "Result of TRY_RUN",
- cmCacheManager::INTERNAL);
- }
- /* This is only used when cross compiling. Instead of running the
- executable, two cache variables are created which will hold the results
- the executable would have produced.
- */
- void cmTryRunCommand::DoNotRunExecutable(const std::string& runArgs,
- const std::string& srcFile,
- std::string* out
- )
- {
- // 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();
- copyDest += cmake::GetCMakeFilesDirectory();
- copyDest += "/";
- copyDest += cmSystemTools::GetFilenameWithoutExtension(
- this->OutputFile);
- copyDest += "-";
- copyDest += this->RunResultVariable;
- copyDest += cmSystemTools::GetFilenameExtension(this->OutputFile);
- cmSystemTools::CopyFileAlways(this->OutputFile, copyDest);
- std::string resultFileName = this->Makefile->GetHomeOutputDirectory();
- resultFileName += "/TryRunResults.cmake";
- std::string detailsString = "For details see ";
- detailsString += resultFileName;
- std::string internalRunOutputName=this->RunResultVariable+"__TRYRUN_OUTPUT";
- bool error = false;
- if (this->Makefile->GetDefinition(this->RunResultVariable) == 0)
- {
- // if the variables doesn't exist, create it with a helpful error text
- // and mark it as advanced
- std::string comment;
- comment += "Run result of TRY_RUN(), indicates whether the executable "
- "would have been able to run on its target platform.\n";
- comment += detailsString;
- this->Makefile->AddCacheDefinition(this->RunResultVariable,
- "PLEASE_FILL_OUT-FAILED_TO_RUN",
- comment.c_str(),
- cmCacheManager::STRING);
- cmCacheManager::CacheIterator it = this->Makefile->GetCacheManager()->
- GetCacheIterator(this->RunResultVariable.c_str());
- if ( !it.IsAtEnd() )
- {
- it.SetProperty("ADVANCED", "1");
- }
- error = true;
- }
- // is the output from the executable used ?
- if (out!=0)
- {
- if (this->Makefile->GetDefinition(internalRunOutputName) == 0)
- {
- // if the variables doesn't exist, create it with a helpful error text
- // and mark it as advanced
- std::string comment;
- 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;
- this->Makefile->AddCacheDefinition(internalRunOutputName,
- "PLEASE_FILL_OUT-NOTFOUND",
- comment.c_str(),
- cmCacheManager::STRING);
- cmCacheManager::CacheIterator it = this->Makefile->GetCacheManager()->
- GetCacheIterator(internalRunOutputName.c_str());
- if ( !it.IsAtEnd() )
- {
- it.SetProperty("ADVANCED", "1");
- }
- error = true;
- }
- }
- if (error)
- {
- static bool firstTryRun = true;
- cmsys::ofstream file(resultFileName.c_str(),
- firstTryRun ? std::ios::out : std::ios::app);
- if ( file )
- {
- 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;
- comment += "\n indicates whether the executable would have been able "
- "to run on its\n"
- " target platform. If so, set ";
- comment += this->RunResultVariable;
- comment += " to\n"
- " the exit code (in many cases 0 for success), otherwise "
- "enter \"FAILED_TO_RUN\".\n";
- if (out!=0)
- {
- comment += internalRunOutputName;
- comment += "\n contains the text the executable "
- "would have printed on stdout and stderr.\n"
- " If the executable would not have been able to run, set ";
- comment += internalRunOutputName;
- comment += " empty.\n"
- " Otherwise check if the output is evaluated by the "
- "calling CMake code. If so,\n"
- " check what the source file would have printed when "
- "called with the given arguments.\n";
- }
- 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";
- comment += " Called from: " + this->Makefile->GetListFileStack();
- cmsys::SystemTools::ReplaceString(comment, "\n", "\n# ");
- file << comment << "\n\n";
- file << "set( " << this->RunResultVariable << " \n \""
- << this->Makefile->GetDefinition(this->RunResultVariable)
- << "\"\n CACHE STRING \"Result from TRY_RUN\" FORCE)\n\n";
- if (out!=0)
- {
- file << "set( " << internalRunOutputName << " \n \""
- << this->Makefile->GetDefinition(internalRunOutputName)
- << "\"\n CACHE STRING \"Output from TRY_RUN\" FORCE)\n\n";
- }
- file.close();
- }
- firstTryRun = false;
- std::string errorMessage = "TRY_RUN() invoked in cross-compiling mode, "
- "please set the following cache variables "
- "appropriately:\n";
- errorMessage += " " + this->RunResultVariable + " (advanced)\n";
- if (out!=0)
- {
- errorMessage += " " + internalRunOutputName + " (advanced)\n";
- }
- errorMessage += detailsString;
- cmSystemTools::Error(errorMessage.c_str());
- return;
- }
- if (out!=0)
- {
- (*out) = this->Makefile->GetDefinition(internalRunOutputName);
- }
- }
|