2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2001-03-08 18:30:18 +03: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.
|
2001-03-08 18:30:18 +03: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.
|
|
|
|
============================================================================*/
|
2001-03-08 18:30:18 +03:00
|
|
|
#include "cmUtilitySourceCommand.h"
|
|
|
|
|
|
|
|
// cmUtilitySourceCommand
|
2008-01-23 18:28:26 +03:00
|
|
|
bool cmUtilitySourceCommand
|
|
|
|
::InitialPass(std::vector<std::string> const& args, cmExecutionStatus &)
|
2001-03-08 18:30:18 +03:00
|
|
|
{
|
2002-12-12 02:13:33 +03:00
|
|
|
if(args.size() < 3)
|
2001-03-08 18:30:18 +03:00
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
2002-03-29 22:20:32 +03:00
|
|
|
|
2001-03-08 18:30:18 +03:00
|
|
|
std::vector<std::string>::const_iterator arg = args.begin();
|
|
|
|
|
|
|
|
// The first argument is the cache entry name.
|
|
|
|
std::string cacheEntry = *arg++;
|
|
|
|
const char* cacheValue =
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->GetDefinition(cacheEntry.c_str());
|
2005-07-28 00:37:44 +04:00
|
|
|
// If it exists already and appears up to date then we are done. If
|
|
|
|
// the string contains "(IntDir)" but that is not the
|
|
|
|
// CMAKE_CFG_INTDIR setting then the value is out of date.
|
2006-05-12 22:12:13 +04:00
|
|
|
const char* intDir =
|
|
|
|
this->Makefile->GetRequiredDefinition("CMAKE_CFG_INTDIR");
|
2007-08-10 23:02:38 +04:00
|
|
|
|
|
|
|
bool haveCacheValue = false;
|
|
|
|
if (this->Makefile->IsOn("CMAKE_CROSSCOMPILING"))
|
|
|
|
{
|
|
|
|
haveCacheValue = (cacheValue != 0);
|
|
|
|
if (!haveCacheValue)
|
|
|
|
{
|
|
|
|
std::string msg = "UTILITY_SOURCE is used in cross compiling mode for ";
|
|
|
|
msg += cacheEntry;
|
|
|
|
msg += ". If your intention is to run this executable, you need to "
|
|
|
|
"preload the cache with the full path to a version of that "
|
|
|
|
"program, which runs on this build machine.";
|
|
|
|
cmSystemTools::Message(msg.c_str() ,"Warning");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
haveCacheValue = (cacheValue &&
|
2005-07-28 00:37:44 +04:00
|
|
|
(strstr(cacheValue, "(IntDir)") == 0 ||
|
2009-09-11 16:18:15 +04:00
|
|
|
(intDir && strcmp(intDir, "$(IntDir)") == 0)) &&
|
2006-03-15 19:02:08 +03:00
|
|
|
(this->Makefile->GetCacheMajorVersion() != 0 &&
|
2007-08-10 23:02:38 +04:00
|
|
|
this->Makefile->GetCacheMinorVersion() != 0 ));
|
|
|
|
}
|
|
|
|
|
|
|
|
if(haveCacheValue)
|
2001-03-08 18:30:18 +03:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// The second argument is the utility's executable name, which will be
|
|
|
|
// needed later.
|
|
|
|
std::string utilityName = *arg++;
|
|
|
|
|
|
|
|
// The third argument specifies the relative directory of the source
|
|
|
|
// of the utility.
|
|
|
|
std::string relativeSource = *arg++;
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string utilitySource = this->Makefile->GetCurrentDirectory();
|
2001-03-08 18:30:18 +03:00
|
|
|
utilitySource = utilitySource+"/"+relativeSource;
|
|
|
|
|
|
|
|
// If the directory doesn't exist, the source has not been included.
|
|
|
|
if(!cmSystemTools::FileExists(utilitySource.c_str()))
|
|
|
|
{ return true; }
|
|
|
|
|
|
|
|
// Make sure all the files exist in the source directory.
|
|
|
|
while(arg != args.end())
|
|
|
|
{
|
|
|
|
std::string file = utilitySource+"/"+*arg++;
|
|
|
|
if(!cmSystemTools::FileExists(file.c_str()))
|
|
|
|
{ return true; }
|
|
|
|
}
|
|
|
|
|
2001-03-09 18:53:32 +03:00
|
|
|
// The source exists.
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string cmakeCFGout =
|
|
|
|
this->Makefile->GetRequiredDefinition("CMAKE_CFG_INTDIR");
|
|
|
|
std::string utilityDirectory = this->Makefile->GetCurrentOutputDirectory();
|
2001-06-07 22:52:29 +04:00
|
|
|
std::string exePath;
|
2006-03-15 19:02:08 +03:00
|
|
|
if (this->Makefile->GetDefinition("EXECUTABLE_OUTPUT_PATH"))
|
2001-06-07 22:52:29 +04:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
exePath = this->Makefile->GetDefinition("EXECUTABLE_OUTPUT_PATH");
|
2001-06-07 22:52:29 +04:00
|
|
|
}
|
|
|
|
if(exePath.size())
|
|
|
|
{
|
|
|
|
utilityDirectory = exePath;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
utilityDirectory += "/"+relativeSource;
|
|
|
|
}
|
2001-03-09 18:53:32 +03:00
|
|
|
|
|
|
|
// Construct the cache entry for the executable's location.
|
|
|
|
std::string utilityExecutable =
|
2001-04-09 18:31:36 +04:00
|
|
|
utilityDirectory+"/"+cmakeCFGout+"/"
|
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
|
|
|
+utilityName+this->Makefile->GetDefinition("CMAKE_EXECUTABLE_SUFFIX");
|
2003-08-01 21:54:53 +04:00
|
|
|
|
|
|
|
// make sure we remove any /./ in the name
|
|
|
|
cmSystemTools::ReplaceString(utilityExecutable, "/./", "/");
|
2001-03-08 18:30:18 +03:00
|
|
|
|
|
|
|
// Enter the value into the cache.
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->AddCacheDefinition(cacheEntry.c_str(),
|
2001-08-08 19:54:46 +04:00
|
|
|
utilityExecutable.c_str(),
|
|
|
|
"Path to an internal program.",
|
|
|
|
cmCacheManager::FILEPATH);
|
2001-06-07 22:52:29 +04:00
|
|
|
// add a value into the cache that maps from the
|
|
|
|
// full path to the name of the project
|
|
|
|
cmSystemTools::ConvertToUnixSlashes(utilityExecutable);
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->AddCacheDefinition(utilityExecutable.c_str(),
|
2001-08-08 19:54:46 +04:00
|
|
|
utilityName.c_str(),
|
|
|
|
"Executable to project name.",
|
|
|
|
cmCacheManager::INTERNAL);
|
2001-03-08 18:30:18 +03:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|