2002-08-28 22:49:25 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2002-08-28 22:49:25 +04:00
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
2002-08-28 22:49:25 +04:00
|
|
|
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
PURPOSE. See the above copyright notices for more information.
|
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#include "cmTryCompileCommand.h"
|
|
|
|
#include "cmCacheManager.h"
|
2002-09-19 22:36:46 +04:00
|
|
|
#include "cmListFileCache.h"
|
2002-08-28 22:49:25 +04:00
|
|
|
|
2002-09-19 17:49:14 +04:00
|
|
|
int cmTryCompileCommand::CoreTryCompileCode(
|
|
|
|
cmMakefile *mf, std::vector<std::string> const& argv, bool clean)
|
2002-08-28 22:49:25 +04:00
|
|
|
{
|
2002-09-18 19:37:40 +04:00
|
|
|
// which signature were we called with ?
|
2002-09-19 22:36:46 +04:00
|
|
|
bool srcFileSignature = false;
|
|
|
|
unsigned int i;
|
2002-09-18 19:37:40 +04:00
|
|
|
|
2002-09-12 19:08:35 +04:00
|
|
|
// where will the binaries be stored
|
2002-09-17 17:16:53 +04:00
|
|
|
const char* binaryDirectory = argv[1].c_str();
|
|
|
|
const char* sourceDirectory = argv[2].c_str();
|
2002-09-12 19:08:35 +04:00
|
|
|
const char* projectName = 0;
|
2002-09-11 00:52:56 +04:00
|
|
|
const char* targetName = 0;
|
2002-09-12 19:08:35 +04:00
|
|
|
std::string tmpString;
|
2002-09-19 22:36:46 +04:00
|
|
|
|
|
|
|
// do we have a srcfile signature
|
2002-09-20 21:15:56 +04:00
|
|
|
if (argv.size() == 3 || argv[3] == "CMAKE_FLAGS" || argv[3] == "COMPILE_DEFINITIONS" ||
|
|
|
|
argv[3] == "OUTPUT_VARIABLE")
|
2002-09-12 19:08:35 +04:00
|
|
|
{
|
2002-09-19 22:36:46 +04:00
|
|
|
srcFileSignature = true;
|
2002-09-12 19:08:35 +04:00
|
|
|
}
|
2002-09-19 22:36:46 +04:00
|
|
|
|
2002-09-19 17:49:14 +04:00
|
|
|
// look for CMAKE_FLAGS and store them
|
|
|
|
std::vector<std::string> cmakeFlags;
|
|
|
|
for (i = 3; i < argv.size(); ++i)
|
|
|
|
{
|
|
|
|
if (argv[i] == "CMAKE_FLAGS")
|
|
|
|
{
|
2002-09-20 21:15:56 +04:00
|
|
|
for (; i < argv.size() && argv[i] != "COMPILE_DEFINITIONS" &&
|
|
|
|
argv[i] != "OUTPUT_VARIABLE";
|
2002-09-19 17:49:14 +04:00
|
|
|
++i)
|
|
|
|
{
|
|
|
|
cmakeFlags.push_back(argv[i]);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-09-20 21:15:56 +04:00
|
|
|
// look for OUTPUT_VARIABLE and store them
|
|
|
|
std::string outputVariable;
|
|
|
|
for (i = 3; i < argv.size(); ++i)
|
|
|
|
{
|
|
|
|
if (argv[i] == "OUTPUT_VARIABLE")
|
|
|
|
{
|
|
|
|
if ( argv.size() <= (i+1) )
|
|
|
|
{
|
|
|
|
cmSystemTools::Error(
|
|
|
|
"OUTPUT_VARIABLE specified but there is no variable");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
outputVariable = argv[i+1];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-09-19 17:49:14 +04:00
|
|
|
// look for COMPILE_DEFINITIONS and store them
|
|
|
|
std::vector<std::string> compileFlags;
|
2002-09-19 22:36:46 +04:00
|
|
|
for (i = 3; i < argv.size(); ++i)
|
2002-09-19 17:49:14 +04:00
|
|
|
{
|
|
|
|
if (argv[i] == "COMPILE_DEFINITIONS")
|
|
|
|
{
|
|
|
|
// only valid for srcfile signatures
|
|
|
|
if (!srcFileSignature)
|
|
|
|
{
|
|
|
|
cmSystemTools::Error(
|
|
|
|
"COMPILE_FLAGS specified on a srcdir type TRY_COMPILE");
|
|
|
|
return -1;
|
|
|
|
}
|
2002-09-20 21:15:56 +04:00
|
|
|
for (i = i + 1; i < argv.size() && argv[i] != "CMAKE_FLAGS" &&
|
|
|
|
argv[i] != "OUTPUT_VARIABLE";
|
2002-09-19 17:49:14 +04:00
|
|
|
++i)
|
|
|
|
{
|
|
|
|
compileFlags.push_back(argv[i]);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2002-09-20 23:01:00 +04:00
|
|
|
|
2002-09-19 22:36:46 +04:00
|
|
|
// compute the binary dir when TRY_COMPILE is called with a src file
|
|
|
|
// signature
|
|
|
|
if (srcFileSignature)
|
|
|
|
{
|
|
|
|
tmpString = argv[1] + "/CMakeTmp";
|
|
|
|
binaryDirectory = tmpString.c_str();
|
|
|
|
}
|
|
|
|
// make sure the binary directory exists
|
|
|
|
cmSystemTools::MakeDirectory(binaryDirectory);
|
|
|
|
|
|
|
|
// do not allow recursive try Compiles
|
|
|
|
if (!strcmp(binaryDirectory,mf->GetHomeOutputDirectory()))
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("Attempt at a recursive or nested TRY_COMPILE",
|
|
|
|
binaryDirectory);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string outFileName = tmpString + "/CMakeLists.txt";
|
2002-09-12 19:08:35 +04:00
|
|
|
// which signature are we using? If we are using var srcfile bindir
|
2002-09-18 19:37:40 +04:00
|
|
|
if (srcFileSignature)
|
2002-09-12 19:08:35 +04:00
|
|
|
{
|
|
|
|
// remove any CMakeCache.txt files so we will have a clean test
|
|
|
|
std::string ccFile = tmpString + "/CMakeCache.txt";
|
|
|
|
cmSystemTools::RemoveFile(ccFile.c_str());
|
|
|
|
|
|
|
|
// we need to create a directory and CMakeList file etc...
|
|
|
|
// first create the directories
|
|
|
|
sourceDirectory = binaryDirectory;
|
|
|
|
|
|
|
|
// now create a CMakeList.txt file in that directory
|
|
|
|
FILE *fout = fopen(outFileName.c_str(),"w");
|
|
|
|
if (!fout)
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("Failed to create CMakeList file for ",
|
|
|
|
outFileName.c_str());
|
2002-09-19 17:49:14 +04:00
|
|
|
return -1;
|
2002-09-12 19:08:35 +04:00
|
|
|
}
|
2002-09-25 18:07:45 +04:00
|
|
|
|
|
|
|
std::string source = argv[2];
|
2002-11-08 23:46:08 +03:00
|
|
|
cmSystemTools::FileFormat format =
|
2002-09-25 18:07:45 +04:00
|
|
|
cmSystemTools::GetFileFormat(
|
|
|
|
cmSystemTools::GetFilenameExtension(source).c_str());
|
|
|
|
if ( format == cmSystemTools::C_FILE_FORMAT )
|
|
|
|
{
|
|
|
|
fprintf(fout, "PROJECT(CMAKE_TRY_COMPILE C)\n");
|
|
|
|
}
|
|
|
|
else if ( format == cmSystemTools::CXX_FILE_FORMAT )
|
|
|
|
{
|
|
|
|
fprintf(fout, "PROJECT(CMAKE_TRY_COMPILE CXX)\n");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("Unknown file format for file: ", source.c_str(),
|
|
|
|
"; TRY_COMPILE only works for C and CXX files");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(fout, "ADD_DEFINITIONS(${COMPILE_DEFINITIONS})\n");
|
|
|
|
fprintf(fout, "INCLUDE_DIRECTORIES(${INCLUDE_DIRECTORIES})\n");
|
|
|
|
fprintf(fout, "LINK_DIRECTORIES(${LINK_DIRECTORIES})\n");
|
2002-09-19 17:49:14 +04:00
|
|
|
// handle any compile flags we need to pass on
|
|
|
|
if (compileFlags.size())
|
|
|
|
{
|
|
|
|
fprintf(fout, "ADD_DEFINITIONS( ");
|
|
|
|
for (i = 0; i < compileFlags.size(); ++i)
|
|
|
|
{
|
|
|
|
fprintf(fout,"%s ",compileFlags[i].c_str());
|
|
|
|
}
|
|
|
|
fprintf(fout, ")\n");
|
|
|
|
}
|
|
|
|
|
2002-09-25 18:07:45 +04:00
|
|
|
fprintf(fout, "ADD_EXECUTABLE(cmTryCompileExec \"%s\")\n",source.c_str());
|
|
|
|
fprintf(fout, "TARGET_LINK_LIBRARIES(cmTryCompileExec ${LINK_LIBRARIES})\n");
|
2002-09-12 19:08:35 +04:00
|
|
|
fclose(fout);
|
|
|
|
projectName = "CMAKE_TRY_COMPILE";
|
|
|
|
targetName = "cmTryCompileExec";
|
|
|
|
}
|
|
|
|
// else the srcdir bindir project target signature
|
|
|
|
else
|
2002-09-11 00:52:56 +04:00
|
|
|
{
|
2002-09-12 19:08:35 +04:00
|
|
|
projectName = argv[3].c_str();
|
|
|
|
|
|
|
|
if (argv.size() == 5)
|
|
|
|
{
|
|
|
|
targetName = argv[4].c_str();
|
|
|
|
}
|
2002-09-11 00:52:56 +04:00
|
|
|
}
|
|
|
|
|
2002-09-20 21:15:56 +04:00
|
|
|
std::string output;
|
2002-09-12 19:08:35 +04:00
|
|
|
// actually do the try compile now that everything is setup
|
2002-09-19 17:49:14 +04:00
|
|
|
int res = mf->TryCompile(sourceDirectory, binaryDirectory,
|
2002-09-20 21:15:56 +04:00
|
|
|
projectName, targetName, &cmakeFlags, &output);
|
2002-08-28 22:49:25 +04:00
|
|
|
|
2002-09-11 00:52:56 +04:00
|
|
|
// set the result var to the return value to indicate success or failure
|
2002-09-20 23:01:00 +04:00
|
|
|
mf->AddCacheDefinition(argv[0].c_str(), (res == 0 ? "TRUE" : "FALSE"),
|
|
|
|
"Result of TRY_COMPILE",
|
|
|
|
cmCacheManager::INTERNAL);
|
2002-09-20 21:15:56 +04:00
|
|
|
|
|
|
|
if ( outputVariable.size() > 0 )
|
|
|
|
{
|
|
|
|
mf->AddDefinition(outputVariable.c_str(), output.c_str());
|
|
|
|
}
|
2002-09-19 17:49:14 +04:00
|
|
|
|
|
|
|
// if They specified clean then we clean up what we can
|
|
|
|
if (srcFileSignature && clean)
|
2002-09-19 22:36:46 +04:00
|
|
|
{
|
|
|
|
cmListFileCache::GetInstance()->FlushCache(outFileName.c_str());
|
2002-09-23 19:06:01 +04:00
|
|
|
cmTryCompileCommand::CleanupFiles(binaryDirectory);
|
2002-09-13 18:42:50 +04:00
|
|
|
}
|
2002-09-13 19:02:15 +04:00
|
|
|
|
2002-09-19 17:49:14 +04:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
// cmExecutableCommand
|
|
|
|
bool cmTryCompileCommand::InitialPass(std::vector<std::string> const& argv)
|
|
|
|
{
|
|
|
|
if(argv.size() < 3)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2002-09-20 23:01:00 +04:00
|
|
|
if ( m_Makefile->GetLocal() )
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2002-09-19 17:49:14 +04:00
|
|
|
cmTryCompileCommand::CoreTryCompileCode(m_Makefile,argv,true);
|
|
|
|
|
2002-08-28 22:49:25 +04:00
|
|
|
return true;
|
|
|
|
}
|
2002-09-23 21:32:14 +04:00
|
|
|
|
|
|
|
static void cmTryCompileCommandNotUsed(bool){}
|
|
|
|
|
2002-09-23 19:06:01 +04:00
|
|
|
void cmTryCompileCommand::CleanupFiles(const char* binDir, bool recursive)
|
|
|
|
{
|
|
|
|
if ( !binDir )
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2002-09-23 21:32:14 +04:00
|
|
|
cmTryCompileCommandNotUsed(recursive);
|
2002-09-23 19:06:01 +04:00
|
|
|
#ifdef WIN32
|
|
|
|
if ( recursive )
|
|
|
|
{
|
|
|
|
std::string bdir = binDir;
|
|
|
|
bdir += "/Debug";
|
|
|
|
cmTryCompileCommand::CleanupFiles(bdir.c_str(), false);
|
|
|
|
}
|
|
|
|
#endif
|
2002-08-28 22:49:25 +04:00
|
|
|
|
2002-09-23 19:06:01 +04:00
|
|
|
cmDirectory dir;
|
|
|
|
dir.Load(binDir);
|
|
|
|
size_t fileNum;
|
|
|
|
for (fileNum = 0; fileNum < dir.GetNumberOfFiles(); ++fileNum)
|
|
|
|
{
|
|
|
|
if (strcmp(dir.GetFile(fileNum),".") &&
|
|
|
|
strcmp(dir.GetFile(fileNum),".."))
|
|
|
|
{
|
|
|
|
std::string fullPath = binDir;
|
|
|
|
fullPath += "/";
|
|
|
|
fullPath += dir.GetFile(fileNum);
|
|
|
|
cmSystemTools::RemoveFile(fullPath.c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|