cmake/Source/cmCoreTryCompile.cxx

705 lines
23 KiB
C++
Raw Normal View History

2009-10-04 10:30:41 +03:00
/*============================================================================
CMake - Cross Platform Makefile Generator
2011-02-07 16:37:25 +01:00
Copyright 2000-2011 Kitware, Inc., Insight Software Consortium
2009-10-04 10:30:41 +03:00
Distributed under the OSI-approved BSD License (the "License");
see accompanying file Copyright.txt for details.
2009-10-04 10:30:41 +03: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.
============================================================================*/
#include "cmCoreTryCompile.h"
#include "cmake.h"
2015-11-17 17:22:37 +01:00
#include "cmOutputConverter.h"
#include "cmGlobalGenerator.h"
2015-08-17 11:37:30 +02:00
#include "cmAlgorithms.h"
2013-03-16 19:13:01 +02:00
#include "cmExportTryCompileFileGenerator.h"
#include <cmsys/Directory.hxx>
2013-03-16 19:13:01 +02:00
#include <assert.h>
int cmCoreTryCompile::TryCompileCode(std::vector<std::string> const& argv)
{
this->BinaryDirectory = argv[1].c_str();
this->OutputFile = "";
// which signature were we called with ?
2013-11-03 12:27:13 +02:00
this->SrcFileSignature = true;
2012-02-18 12:40:36 +02:00
const char* sourceDirectory = argv[2].c_str();
const char* projectName = 0;
2015-04-27 22:25:09 +02:00
std::string targetName;
2015-11-17 17:22:37 +01:00
std::vector<std::string> cmakeFlags(1, "CMAKE_FLAGS"); // fake argv[0]
2013-11-03 12:27:13 +02:00
std::vector<std::string> compileDefs;
std::string outputVariable;
2013-11-03 12:27:13 +02:00
std::string copyFile;
std::string copyFileError;
2016-03-13 13:35:51 +01:00
std::vector<std::string> targets;
2013-11-03 12:27:13 +02:00
std::string libsToLink = " ";
bool useOldLinkLibs = true;
char targetNameBuf[64];
bool didOutputVariable = false;
bool didCopyFile = false;
bool didCopyFileError = false;
bool useSources = argv[2] == "SOURCES";
std::vector<std::string> sources;
enum Doing { DoingNone, DoingCMakeFlags, DoingCompileDefinitions,
DoingLinkLibraries, DoingOutputVariable, DoingCopyFile,
DoingCopyFileError, DoingSources };
Doing doing = useSources? DoingSources : DoingNone;
for(size_t i=3; i < argv.size(); ++i)
{
2013-11-03 12:27:13 +02:00
if(argv[i] == "CMAKE_FLAGS")
{
2013-11-03 12:27:13 +02:00
doing = DoingCMakeFlags;
}
2013-11-03 12:27:13 +02:00
else if(argv[i] == "COMPILE_DEFINITIONS")
{
2013-11-03 12:27:13 +02:00
doing = DoingCompileDefinitions;
}
2013-11-03 12:27:13 +02:00
else if(argv[i] == "LINK_LIBRARIES")
2013-03-16 19:13:01 +02:00
{
2013-11-03 12:27:13 +02:00
doing = DoingLinkLibraries;
2013-03-16 19:13:01 +02:00
useOldLinkLibs = false;
2013-11-03 12:27:13 +02:00
}
else if(argv[i] == "OUTPUT_VARIABLE")
{
doing = DoingOutputVariable;
didOutputVariable = true;
}
else if(argv[i] == "COPY_FILE")
{
doing = DoingCopyFile;
didCopyFile = true;
}
else if(argv[i] == "COPY_FILE_ERROR")
{
doing = DoingCopyFileError;
didCopyFileError = true;
}
else if(doing == DoingCMakeFlags)
{
cmakeFlags.push_back(argv[i]);
}
else if(doing == DoingCompileDefinitions)
{
compileDefs.push_back(argv[i]);
}
else if(doing == DoingLinkLibraries)
{
libsToLink += "\"" + cmSystemTools::TrimWhitespace(argv[i]) + "\" ";
2014-08-03 19:52:23 +02:00
if(cmTarget *tgt = this->Makefile->FindTargetToUse(argv[i]))
2013-03-16 19:13:01 +02:00
{
switch(tgt->GetType())
2013-11-03 12:27:13 +02:00
{
2016-03-13 13:35:51 +01:00
case cmState::SHARED_LIBRARY:
case cmState::STATIC_LIBRARY:
case cmState::INTERFACE_LIBRARY:
case cmState::UNKNOWN_LIBRARY:
2013-03-16 19:13:01 +02:00
break;
2016-03-13 13:35:51 +01:00
case cmState::EXECUTABLE:
2013-11-03 12:27:13 +02:00
if (tgt->IsExecutableWithExports())
{
break;
}
default:
this->Makefile->IssueMessage(cmake::FATAL_ERROR,
2015-04-27 22:25:09 +02:00
"Only libraries may be used as try_compile or try_run IMPORTED "
2013-11-03 12:27:13 +02:00
"LINK_LIBRARIES. Got " + std::string(tgt->GetName()) + " of "
2016-03-13 13:35:51 +01:00
"type " + cmState::GetTargetTypeName(tgt->GetType()) + ".");
2013-11-03 12:27:13 +02:00
return -1;
}
if (tgt->IsImported())
2013-03-16 19:13:01 +02:00
{
2016-03-13 13:35:51 +01:00
targets.push_back(argv[i]);
2013-03-16 19:13:01 +02:00
}
}
2013-11-03 12:27:13 +02:00
}
else if(doing == DoingOutputVariable)
{
outputVariable = argv[i].c_str();
doing = DoingNone;
}
else if(doing == DoingCopyFile)
{
copyFile = argv[i].c_str();
doing = DoingNone;
}
else if(doing == DoingCopyFileError)
{
copyFileError = argv[i].c_str();
doing = DoingNone;
}
else if(doing == DoingSources)
{
sources.push_back(argv[i]);
}
else if(i == 3)
{
this->SrcFileSignature = false;
projectName = argv[i].c_str();
}
else if(i == 4 && !this->SrcFileSignature)
{
targetName = argv[i].c_str();
}
else
{
2015-04-27 22:25:09 +02:00
std::ostringstream m;
2013-11-03 12:27:13 +02:00
m << "try_compile given unknown argument \"" << argv[i] << "\".";
this->Makefile->IssueMessage(cmake::AUTHOR_WARNING, m.str());
2013-03-16 19:13:01 +02:00
}
}
2013-11-03 12:27:13 +02:00
if(didCopyFile && copyFile.empty())
{
2013-11-03 12:27:13 +02:00
this->Makefile->IssueMessage(cmake::FATAL_ERROR,
"COPY_FILE must be followed by a file path");
return -1;
}
if(didCopyFileError && copyFileError.empty())
{
this->Makefile->IssueMessage(cmake::FATAL_ERROR,
"COPY_FILE_ERROR must be followed by a variable name");
return -1;
}
if(didCopyFileError && !didCopyFile)
{
this->Makefile->IssueMessage(cmake::FATAL_ERROR,
"COPY_FILE_ERROR may be used only with COPY_FILE");
return -1;
}
if(didOutputVariable && outputVariable.empty())
{
this->Makefile->IssueMessage(cmake::FATAL_ERROR,
"OUTPUT_VARIABLE must be followed by a variable name");
return -1;
}
2012-02-18 12:40:36 +02:00
2013-11-03 12:27:13 +02:00
if(useSources && sources.empty())
{
2013-11-03 12:27:13 +02:00
this->Makefile->IssueMessage(cmake::FATAL_ERROR,
"SOURCES must be followed by at least one source file");
return -1;
}
// compute the binary dir when TRY_COMPILE is called with a src file
// signature
if (this->SrcFileSignature)
{
this->BinaryDirectory += cmake::GetCMakeFilesDirectory();
this->BinaryDirectory += "/CMakeTmp";
}
else
{
// only valid for srcfile signatures
2015-04-27 22:25:09 +02:00
if (!compileDefs.empty())
{
2011-02-07 16:37:25 +01:00
this->Makefile->IssueMessage(cmake::FATAL_ERROR,
2013-11-03 12:27:13 +02:00
"COMPILE_DEFINITIONS specified on a srcdir type TRY_COMPILE");
return -1;
}
2015-04-27 22:25:09 +02:00
if (!copyFile.empty())
{
2011-02-07 16:37:25 +01:00
this->Makefile->IssueMessage(cmake::FATAL_ERROR,
"COPY_FILE specified on a srcdir type TRY_COMPILE");
return -1;
}
}
// make sure the binary directory exists
cmSystemTools::MakeDirectory(this->BinaryDirectory.c_str());
2012-02-18 12:40:36 +02:00
// do not allow recursive try Compiles
if (this->BinaryDirectory == this->Makefile->GetHomeOutputDirectory())
{
2015-04-27 22:25:09 +02:00
std::ostringstream e;
2011-02-07 16:37:25 +01:00
e << "Attempt at a recursive or nested TRY_COMPILE in directory\n"
<< " " << this->BinaryDirectory << "\n";
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
return -1;
}
2012-02-18 12:40:36 +02:00
std::string outFileName = this->BinaryDirectory + "/CMakeLists.txt";
// which signature are we using? If we are using var srcfile bindir
if (this->SrcFileSignature)
{
// remove any CMakeCache.txt files so we will have a clean test
std::string ccFile = this->BinaryDirectory + "/CMakeCache.txt";
2015-04-27 22:25:09 +02:00
cmSystemTools::RemoveFile(ccFile);
2012-02-18 12:40:36 +02:00
2013-11-03 12:27:13 +02:00
// Choose sources.
if(!useSources)
{
sources.push_back(argv[2]);
}
// Detect languages to enable.
2015-08-17 11:37:30 +02:00
cmGlobalGenerator* gg = this->Makefile->GetGlobalGenerator();
2013-11-03 12:27:13 +02:00
std::set<std::string> testLangs;
for(std::vector<std::string>::iterator si = sources.begin();
si != sources.end(); ++si)
{
std::string ext = cmSystemTools::GetFilenameLastExtension(*si);
2015-04-27 22:25:09 +02:00
std::string lang = gg->GetLanguageFromExtension(ext.c_str());
if(!lang.empty())
2013-11-03 12:27:13 +02:00
{
testLangs.insert(lang);
}
else
{
2015-04-27 22:25:09 +02:00
std::ostringstream err;
2013-11-03 12:27:13 +02:00
err << "Unknown extension \"" << ext << "\" for file\n"
<< " " << *si << "\n"
<< "try_compile() works only for enabled languages. "
2015-08-17 11:37:30 +02:00
<< "Currently these are:\n ";
2013-11-03 12:27:13 +02:00
std::vector<std::string> langs;
gg->GetEnabledLanguages(langs);
2015-08-17 11:37:30 +02:00
err << cmJoin(langs, " ");
2013-11-03 12:27:13 +02:00
err << "\nSee project() command to enable other languages.";
this->Makefile->IssueMessage(cmake::FATAL_ERROR, err.str());
return -1;
}
}
2012-04-19 19:04:21 +03:00
// we need to create a directory and CMakeLists file etc...
// first create the directories
sourceDirectory = this->BinaryDirectory.c_str();
2012-04-19 19:04:21 +03:00
// now create a CMakeLists.txt file in that directory
2015-04-27 22:25:09 +02:00
FILE *fout = cmsys::SystemTools::Fopen(outFileName,"w");
if (!fout)
{
2015-04-27 22:25:09 +02:00
std::ostringstream e;
2011-02-07 16:37:25 +01:00
e << "Failed to open\n"
2015-04-27 22:25:09 +02:00
<< " " << outFileName << "\n"
2011-02-07 16:37:25 +01:00
<< cmSystemTools::GetLastSystemError();
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
return -1;
}
const char* def = this->Makefile->GetDefinition("CMAKE_MODULE_PATH");
2011-01-16 11:35:12 +01:00
fprintf(fout, "cmake_minimum_required(VERSION %u.%u.%u.%u)\n",
cmVersion::GetMajorVersion(), cmVersion::GetMinorVersion(),
cmVersion::GetPatchVersion(), cmVersion::GetTweakVersion());
if(def)
{
2015-08-17 11:37:30 +02:00
fprintf(fout, "set(CMAKE_MODULE_PATH \"%s\")\n", def);
}
2010-11-13 01:00:53 +02:00
2013-11-03 12:27:13 +02:00
std::string projectLangs;
for(std::set<std::string>::iterator li = testLangs.begin();
li != testLangs.end(); ++li)
2010-11-13 01:00:53 +02:00
{
2013-11-03 12:27:13 +02:00
projectLangs += " " + *li;
std::string rulesOverrideBase = "CMAKE_USER_MAKE_RULES_OVERRIDE";
std::string rulesOverrideLang = rulesOverrideBase + "_" + *li;
if(const char* rulesOverridePath =
2015-04-27 22:25:09 +02:00
this->Makefile->GetDefinition(rulesOverrideLang))
{
2014-08-03 19:52:23 +02:00
fprintf(fout, "set(%s \"%s\")\n",
2013-11-03 12:27:13 +02:00
rulesOverrideLang.c_str(), rulesOverridePath);
}
else if(const char* rulesOverridePath2 =
2015-04-27 22:25:09 +02:00
this->Makefile->GetDefinition(rulesOverrideBase))
2013-11-03 12:27:13 +02:00
{
2014-08-03 19:52:23 +02:00
fprintf(fout, "set(%s \"%s\")\n",
2013-11-03 12:27:13 +02:00
rulesOverrideBase.c_str(), rulesOverridePath2);
}
}
2014-08-03 19:52:23 +02:00
fprintf(fout, "project(CMAKE_TRY_COMPILE%s)\n", projectLangs.c_str());
fprintf(fout, "set(CMAKE_VERBOSE_MAKEFILE 1)\n");
2013-11-03 12:27:13 +02:00
for(std::set<std::string>::iterator li = testLangs.begin();
li != testLangs.end(); ++li)
{
2013-11-03 12:27:13 +02:00
std::string langFlags = "CMAKE_" + *li + "_FLAGS";
2015-04-27 22:25:09 +02:00
const char* flags = this->Makefile->GetDefinition(langFlags);
2014-08-03 19:52:23 +02:00
fprintf(fout, "set(CMAKE_%s_FLAGS %s)\n", li->c_str(),
2015-11-17 17:22:37 +01:00
cmOutputConverter::EscapeForCMake(flags?flags:"").c_str());
2014-08-03 19:52:23 +02:00
fprintf(fout, "set(CMAKE_%s_FLAGS \"${CMAKE_%s_FLAGS}"
2013-11-03 12:27:13 +02:00
" ${COMPILE_DEFINITIONS}\")\n", li->c_str(), li->c_str());
}
2015-04-27 22:25:09 +02:00
switch(this->Makefile->GetPolicyStatus(cmPolicies::CMP0056))
{
case cmPolicies::WARN:
if(this->Makefile->PolicyOptionalWarningEnabled(
"CMAKE_POLICY_WARNING_CMP0056"))
{
std::ostringstream w;
2015-08-17 11:37:30 +02:00
w << cmPolicies::GetPolicyWarning(cmPolicies::CMP0056) << "\n"
2015-04-27 22:25:09 +02:00
"For compatibility with older versions of CMake, try_compile "
"is not honoring caller link flags (e.g. CMAKE_EXE_LINKER_FLAGS) "
"in the test project."
;
this->Makefile->IssueMessage(cmake::AUTHOR_WARNING, w.str());
}
case cmPolicies::OLD:
// OLD behavior is to do nothing.
break;
case cmPolicies::REQUIRED_IF_USED:
case cmPolicies::REQUIRED_ALWAYS:
this->Makefile->IssueMessage(
cmake::FATAL_ERROR,
2015-08-17 11:37:30 +02:00
cmPolicies::GetRequiredPolicyError(cmPolicies::CMP0056)
2015-04-27 22:25:09 +02:00
);
case cmPolicies::NEW:
// NEW behavior is to pass linker flags.
{
const char* exeLinkFlags =
this->Makefile->GetDefinition("CMAKE_EXE_LINKER_FLAGS");
fprintf(fout, "set(CMAKE_EXE_LINKER_FLAGS %s)\n",
2015-11-17 17:22:37 +01:00
cmOutputConverter::EscapeForCMake(
2015-08-17 11:37:30 +02:00
exeLinkFlags ? exeLinkFlags : "").c_str());
2015-04-27 22:25:09 +02:00
} break;
}
fprintf(fout, "set(CMAKE_EXE_LINKER_FLAGS \"${CMAKE_EXE_LINKER_FLAGS}"
" ${EXE_LINKER_FLAGS}\")\n");
2014-08-03 19:52:23 +02:00
fprintf(fout, "include_directories(${INCLUDE_DIRECTORIES})\n");
fprintf(fout, "set(CMAKE_SUPPRESS_REGENERATION 1)\n");
fprintf(fout, "link_directories(${LINK_DIRECTORIES})\n");
// handle any compile flags we need to pass on
2015-04-27 22:25:09 +02:00
if (!compileDefs.empty())
{
2015-08-17 11:37:30 +02:00
fprintf(fout, "add_definitions(%s)\n", cmJoin(compileDefs, " ").c_str());
}
2013-03-16 19:13:01 +02:00
/* Use a random file name to avoid rapid creation and deletion
of the same executable name (some filesystems fail on that). */
2015-08-17 11:37:30 +02:00
sprintf(targetNameBuf, "cmTC_%05x",
cmSystemTools::RandomSeed() & 0xFFFFF);
2013-03-16 19:13:01 +02:00
targetName = targetNameBuf;
if (!targets.empty())
{
std::string fname = "/" + std::string(targetName) + "Targets.cmake";
2016-03-13 13:35:51 +01:00
cmExportTryCompileFileGenerator tcfg(gg, targets, this->Makefile);
2013-03-16 19:13:01 +02:00
tcfg.SetExportFile((this->BinaryDirectory + fname).c_str());
2015-04-27 22:25:09 +02:00
tcfg.SetConfig(this->Makefile->GetSafeDefinition(
2013-03-16 19:13:01 +02:00
"CMAKE_TRY_COMPILE_CONFIGURATION"));
if(!tcfg.GenerateImportFile())
{
this->Makefile->IssueMessage(cmake::FATAL_ERROR,
"could not write export file.");
2013-04-21 10:33:41 +03:00
fclose(fout);
2013-03-16 19:13:01 +02:00
return -1;
}
fprintf(fout,
"\ninclude(\"${CMAKE_CURRENT_LIST_DIR}/%s\")\n\n",
fname.c_str());
}
/* for the TRY_COMPILEs we want to be able to specify the architecture.
2014-08-03 19:52:23 +02:00
So the user can set CMAKE_OSX_ARCHITECTURES to i386;ppc and then set
CMAKE_TRY_COMPILE_OSX_ARCHITECTURES first to i386 and then to ppc to
2012-02-18 12:40:36 +02:00
have the tests run for each specific architecture. Since
cmLocalGenerator doesn't allow building for "the other"
2011-02-07 16:37:25 +01:00
architecture only via CMAKE_OSX_ARCHITECTURES.
*/
if(this->Makefile->GetDefinition("CMAKE_TRY_COMPILE_OSX_ARCHITECTURES")!=0)
{
std::string flag="-DCMAKE_OSX_ARCHITECTURES=";
flag += this->Makefile->GetSafeDefinition(
"CMAKE_TRY_COMPILE_OSX_ARCHITECTURES");
cmakeFlags.push_back(flag);
}
else if (this->Makefile->GetDefinition("CMAKE_OSX_ARCHITECTURES")!=0)
{
std::string flag="-DCMAKE_OSX_ARCHITECTURES=";
flag += this->Makefile->GetSafeDefinition("CMAKE_OSX_ARCHITECTURES");
cmakeFlags.push_back(flag);
}
2009-10-04 10:30:41 +03:00
/* on APPLE also pass CMAKE_OSX_SYSROOT to the try_compile */
if(this->Makefile->GetDefinition("CMAKE_OSX_SYSROOT")!=0)
{
std::string flag="-DCMAKE_OSX_SYSROOT=";
flag += this->Makefile->GetSafeDefinition("CMAKE_OSX_SYSROOT");
cmakeFlags.push_back(flag);
}
/* on APPLE also pass CMAKE_OSX_DEPLOYMENT_TARGET to the try_compile */
if(this->Makefile->GetDefinition("CMAKE_OSX_DEPLOYMENT_TARGET")!=0)
{
std::string flag="-DCMAKE_OSX_DEPLOYMENT_TARGET=";
flag += this->Makefile->GetSafeDefinition("CMAKE_OSX_DEPLOYMENT_TARGET");
cmakeFlags.push_back(flag);
}
2014-08-03 19:52:23 +02:00
if (const char *cxxDef
= this->Makefile->GetDefinition("CMAKE_CXX_COMPILER_TARGET"))
{
std::string flag="-DCMAKE_CXX_COMPILER_TARGET=";
flag += cxxDef;
cmakeFlags.push_back(flag);
}
if (const char *cDef
= this->Makefile->GetDefinition("CMAKE_C_COMPILER_TARGET"))
{
std::string flag="-DCMAKE_C_COMPILER_TARGET=";
flag += cDef;
cmakeFlags.push_back(flag);
}
if (const char *tcxxDef = this->Makefile->GetDefinition(
"CMAKE_CXX_COMPILER_EXTERNAL_TOOLCHAIN"))
{
std::string flag="-DCMAKE_CXX_COMPILER_EXTERNAL_TOOLCHAIN=";
flag += tcxxDef;
cmakeFlags.push_back(flag);
}
if (const char *tcDef = this->Makefile->GetDefinition(
"CMAKE_C_COMPILER_EXTERNAL_TOOLCHAIN"))
{
std::string flag="-DCMAKE_C_COMPILER_EXTERNAL_TOOLCHAIN=";
flag += tcDef;
cmakeFlags.push_back(flag);
}
if (const char *rootDef
= this->Makefile->GetDefinition("CMAKE_SYSROOT"))
{
std::string flag="-DCMAKE_SYSROOT=";
flag += rootDef;
cmakeFlags.push_back(flag);
}
2012-06-27 20:52:58 +03:00
if(this->Makefile->GetDefinition("CMAKE_POSITION_INDEPENDENT_CODE")!=0)
{
2014-08-03 19:52:23 +02:00
fprintf(fout, "set(CMAKE_POSITION_INDEPENDENT_CODE \"ON\")\n");
2012-06-27 20:52:58 +03:00
}
2015-11-17 17:22:37 +01:00
if (const char *lssDef = this->Makefile->GetDefinition(
"CMAKE_LINK_SEARCH_START_STATIC"))
{
fprintf(fout, "set(CMAKE_LINK_SEARCH_START_STATIC \"%s\")\n", lssDef);
}
if (const char *lssDef = this->Makefile->GetDefinition(
"CMAKE_LINK_SEARCH_END_STATIC"))
{
fprintf(fout, "set(CMAKE_LINK_SEARCH_END_STATIC \"%s\")\n", lssDef);
}
/* Set the appropriate policy information for ENABLE_EXPORTS */
fprintf(fout, "cmake_policy(SET CMP0065 %s)\n",
this->Makefile->GetPolicyStatus(cmPolicies::CMP0065) ==
cmPolicies::NEW ? "NEW" : "OLD");
if(const char *ee = this->Makefile->GetDefinition(
"CMAKE_ENABLE_EXPORTS"))
{
fprintf(fout, "set(CMAKE_ENABLE_EXPORTS %s)\n", ee);
}
2011-02-07 16:37:25 +01:00
/* Put the executable at a known location (for COPY_FILE). */
2014-08-03 19:52:23 +02:00
fprintf(fout, "set(CMAKE_RUNTIME_OUTPUT_DIRECTORY \"%s\")\n",
2011-02-07 16:37:25 +01:00
this->BinaryDirectory.c_str());
/* Create the actual executable. */
2015-04-27 22:25:09 +02:00
fprintf(fout, "add_executable(%s", targetName.c_str());
2013-11-03 12:27:13 +02:00
for(std::vector<std::string>::iterator si = sources.begin();
si != sources.end(); ++si)
{
fprintf(fout, " \"%s\"", si->c_str());
// Add dependencies on any non-temporary sources.
if(si->find("CMakeTmp") == si->npos)
{
this->Makefile->AddCMakeDependFile(*si);
}
}
fprintf(fout, ")\n");
2013-03-16 19:13:01 +02:00
if (useOldLinkLibs)
{
fprintf(fout,
2015-04-27 22:25:09 +02:00
"target_link_libraries(%s ${LINK_LIBRARIES})\n",
targetName.c_str());
2013-03-16 19:13:01 +02:00
}
else
{
2014-08-03 19:52:23 +02:00
fprintf(fout, "target_link_libraries(%s %s)\n",
2015-04-27 22:25:09 +02:00
targetName.c_str(),
2013-03-16 19:13:01 +02:00
libsToLink.c_str());
}
fclose(fout);
projectName = "CMAKE_TRY_COMPILE";
}
2012-02-18 12:40:36 +02:00
bool erroroc = cmSystemTools::GetErrorOccuredFlag();
cmSystemTools::ResetErrorOccuredFlag();
std::string output;
// actually do the try compile now that everything is setup
2012-02-18 12:40:36 +02:00
int res = this->Makefile->TryCompile(sourceDirectory,
2015-04-27 22:25:09 +02:00
this->BinaryDirectory,
2012-02-18 12:40:36 +02:00
projectName,
targetName,
2009-10-04 10:30:41 +03:00
this->SrcFileSignature,
2012-02-18 12:40:36 +02:00
&cmakeFlags,
2015-04-27 22:25:09 +02:00
output);
if ( erroroc )
{
cmSystemTools::SetErrorOccured();
}
2012-02-18 12:40:36 +02:00
// set the result var to the return value to indicate success or failure
2015-04-27 22:25:09 +02:00
this->Makefile->AddCacheDefinition(argv[0],
(res == 0 ? "TRUE" : "FALSE"),
"Result of TRY_COMPILE",
2015-08-17 11:37:30 +02:00
cmState::INTERNAL);
2015-04-27 22:25:09 +02:00
if (!outputVariable.empty())
{
2015-04-27 22:25:09 +02:00
this->Makefile->AddDefinition(outputVariable, output.c_str());
}
2012-02-18 12:40:36 +02:00
if (this->SrcFileSignature)
{
2013-11-03 12:27:13 +02:00
std::string copyFileErrorMessage;
this->FindOutputFile(targetName);
2009-10-04 10:30:41 +03:00
2015-04-27 22:25:09 +02:00
if ((res==0) && !copyFile.empty())
{
2009-11-06 22:07:41 +02:00
if(this->OutputFile.empty() ||
2015-04-27 22:25:09 +02:00
!cmSystemTools::CopyFileAlways(this->OutputFile,
copyFile))
{
2015-04-27 22:25:09 +02:00
std::ostringstream emsg;
2011-02-07 16:37:25 +01:00
emsg << "Cannot copy output executable\n"
2015-04-27 22:25:09 +02:00
<< " '" << this->OutputFile << "'\n"
2011-02-07 16:37:25 +01:00
<< "to destination specified by COPY_FILE:\n"
2015-04-27 22:25:09 +02:00
<< " '" << copyFile << "'\n";
2011-02-07 16:37:25 +01:00
if(!this->FindErrorMessage.empty())
2009-10-04 10:30:41 +03:00
{
2011-02-07 16:37:25 +01:00
emsg << this->FindErrorMessage.c_str();
2009-10-04 10:30:41 +03:00
}
2013-11-03 12:27:13 +02:00
if(copyFileError.empty())
{
this->Makefile->IssueMessage(cmake::FATAL_ERROR, emsg.str());
return -1;
}
else
{
copyFileErrorMessage = emsg.str();
}
}
}
2013-11-03 12:27:13 +02:00
if(!copyFileError.empty())
{
2015-04-27 22:25:09 +02:00
this->Makefile->AddDefinition(copyFileError,
2013-11-03 12:27:13 +02:00
copyFileErrorMessage.c_str());
}
}
return res;
}
void cmCoreTryCompile::CleanupFiles(const char* binDir)
{
if ( !binDir )
{
return;
}
2012-02-18 12:40:36 +02:00
std::string bdir = binDir;
if(bdir.find("CMakeTmp") == std::string::npos)
{
cmSystemTools::Error(
"TRY_COMPILE attempt to remove -rf directory that does not contain "
"CMakeTmp:", binDir);
return;
}
2012-02-18 12:40:36 +02:00
cmsys::Directory dir;
dir.Load(binDir);
size_t fileNum;
2015-04-27 22:25:09 +02:00
std::set<std::string> deletedFiles;
for (fileNum = 0; fileNum < dir.GetNumberOfFiles(); ++fileNum)
{
if (strcmp(dir.GetFile(static_cast<unsigned long>(fileNum)),".") &&
strcmp(dir.GetFile(static_cast<unsigned long>(fileNum)),".."))
{
2012-02-18 12:40:36 +02:00
if(deletedFiles.find( dir.GetFile(static_cast<unsigned long>(fileNum)))
== deletedFiles.end())
{
deletedFiles.insert(dir.GetFile(static_cast<unsigned long>(fileNum)));
std::string fullPath = binDir;
fullPath += "/";
fullPath += dir.GetFile(static_cast<unsigned long>(fileNum));
2015-04-27 22:25:09 +02:00
if(cmSystemTools::FileIsDirectory(fullPath))
{
this->CleanupFiles(fullPath.c_str());
2015-04-27 22:25:09 +02:00
cmSystemTools::RemoveADirectory(fullPath);
}
else
{
2014-08-03 19:52:23 +02:00
#ifdef _WIN32
2011-01-16 11:35:12 +01:00
// Sometimes anti-virus software hangs on to new files so we
// cannot delete them immediately. Try a few times.
2014-08-03 19:52:23 +02:00
cmSystemTools::WindowsFileRetry retry =
cmSystemTools::GetWindowsFileRetry();
2011-01-16 11:35:12 +01:00
while(!cmSystemTools::RemoveFile(fullPath.c_str()) &&
2014-08-03 19:52:23 +02:00
--retry.Count && cmSystemTools::FileExists(fullPath.c_str()))
{
2014-08-03 19:52:23 +02:00
cmSystemTools::Delay(retry.Delay);
2011-01-16 11:35:12 +01:00
}
2014-08-03 19:52:23 +02:00
if(retry.Count == 0)
#else
2015-04-27 22:25:09 +02:00
if(!cmSystemTools::RemoveFile(fullPath))
2014-08-03 19:52:23 +02:00
#endif
2011-01-16 11:35:12 +01:00
{
std::string m = "Remove failed on file: " + fullPath;
cmSystemTools::ReportLastSystemError(m.c_str());
}
}
}
}
}
}
2015-04-27 22:25:09 +02:00
void cmCoreTryCompile::FindOutputFile(const std::string& targetName)
{
this->FindErrorMessage = "";
this->OutputFile = "";
std::string tmpOutputFile = "/";
tmpOutputFile += targetName;
tmpOutputFile +=this->Makefile->GetSafeDefinition("CMAKE_EXECUTABLE_SUFFIX");
// a list of directories where to search for the compilation result
// at first directly in the binary dir
std::vector<std::string> searchDirs;
searchDirs.push_back("");
const char* config = this->Makefile->GetDefinition(
"CMAKE_TRY_COMPILE_CONFIGURATION");
// if a config was specified try that first
if (config && config[0])
{
std::string tmp = "/";
tmp += config;
searchDirs.push_back(tmp);
}
searchDirs.push_back("/Debug");
2015-04-27 22:25:09 +02:00
#if defined(__APPLE__)
std::string app = "/Debug/" + targetName + ".app";
searchDirs.push_back(app);
#endif
searchDirs.push_back("/Development");
for(std::vector<std::string>::const_iterator it = searchDirs.begin();
it != searchDirs.end();
++it)
{
std::string command = this->BinaryDirectory;
command += *it;
command += tmpOutputFile;
if(cmSystemTools::FileExists(command.c_str()))
{
2015-08-17 11:37:30 +02:00
this->OutputFile = cmSystemTools::CollapseFullPath(command);
return;
}
}
2015-04-27 22:25:09 +02:00
std::ostringstream emsg;
2011-02-07 16:37:25 +01:00
emsg << "Unable to find the executable at any of:\n";
2015-08-17 11:37:30 +02:00
emsg << cmWrap(" " + this->BinaryDirectory,
searchDirs,
tmpOutputFile, "\n") << "\n";
this->FindErrorMessage = emsg.str();
return;
}