2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2006-02-14 18:36:04 +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.
|
2006-02-14 18:36:04 +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.
|
|
|
|
============================================================================*/
|
2006-02-14 18:36:04 +03:00
|
|
|
#include "cmMakefileExecutableTargetGenerator.h"
|
|
|
|
|
|
|
|
#include "cmGeneratedFileStream.h"
|
2006-12-14 22:30:41 +03:00
|
|
|
#include "cmGlobalUnixMakefileGenerator3.h"
|
2006-02-14 18:36:04 +03:00
|
|
|
#include "cmLocalUnixMakefileGenerator3.h"
|
|
|
|
#include "cmMakefile.h"
|
|
|
|
#include "cmSourceFile.h"
|
|
|
|
#include "cmTarget.h"
|
2006-06-14 20:28:32 +04:00
|
|
|
#include "cmake.h"
|
2006-02-14 18:36:04 +03:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2008-02-19 00:38:34 +03:00
|
|
|
cmMakefileExecutableTargetGenerator
|
2012-10-10 23:32:37 +04:00
|
|
|
::cmMakefileExecutableTargetGenerator(cmGeneratorTarget* target):
|
|
|
|
cmMakefileTargetGenerator(target->Target)
|
2006-09-29 00:40:35 +04:00
|
|
|
{
|
2007-05-01 21:51:25 +04:00
|
|
|
this->CustomCommandDriver = OnDepends;
|
2008-02-19 00:38:34 +03:00
|
|
|
this->Target->GetExecutableNames(
|
|
|
|
this->TargetNameOut, this->TargetNameReal, this->TargetNameImport,
|
2009-07-03 16:41:10 +04:00
|
|
|
this->TargetNamePDB, this->ConfigName);
|
2008-02-19 00:38:34 +03:00
|
|
|
|
2012-10-10 23:32:37 +04:00
|
|
|
this->OSXBundleGenerator = new cmOSXBundleGenerator(target,
|
2012-07-07 21:54:16 +04:00
|
|
|
this->ConfigName);
|
2012-07-16 19:34:22 +04:00
|
|
|
this->OSXBundleGenerator->SetMacContentFolders(&this->MacContentFolders);
|
2012-07-07 21:54:16 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmMakefileExecutableTargetGenerator
|
|
|
|
::~cmMakefileExecutableTargetGenerator()
|
|
|
|
{
|
|
|
|
delete this->OSXBundleGenerator;
|
2006-09-29 00:40:35 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2006-02-14 18:36:04 +03:00
|
|
|
void cmMakefileExecutableTargetGenerator::WriteRuleFiles()
|
|
|
|
{
|
|
|
|
// create the build.make file and directory, put in the common blocks
|
|
|
|
this->CreateRuleFile();
|
2006-03-28 17:54:01 +04:00
|
|
|
|
2006-06-01 19:45:51 +04:00
|
|
|
// write rules used to help build object files
|
2006-02-14 18:36:04 +03:00
|
|
|
this->WriteCommonCodeRules();
|
2006-02-16 00:35:16 +03:00
|
|
|
|
2006-06-01 19:45:51 +04:00
|
|
|
// write the per-target per-language flags
|
|
|
|
this->WriteTargetLanguageFlags();
|
|
|
|
|
2011-03-15 20:31:42 +03:00
|
|
|
// write in rules for object files and custom commands
|
|
|
|
this->WriteTargetBuildRules();
|
|
|
|
|
2006-02-14 18:36:04 +03:00
|
|
|
// write the link rules
|
2006-02-16 23:19:00 +03:00
|
|
|
this->WriteExecutableRule(false);
|
2009-07-08 21:03:47 +04:00
|
|
|
if(this->Target->NeedRelinkBeforeInstall(this->ConfigName))
|
2006-02-16 23:19:00 +03:00
|
|
|
{
|
|
|
|
// Write rules to link an installable version of the target.
|
|
|
|
this->WriteExecutableRule(true);
|
|
|
|
}
|
2006-02-14 18:36:04 +03:00
|
|
|
|
|
|
|
// Write the requires target.
|
|
|
|
this->WriteTargetRequiresRules();
|
|
|
|
|
|
|
|
// Write clean target
|
|
|
|
this->WriteTargetCleanRules();
|
|
|
|
|
2007-12-21 20:22:12 +03:00
|
|
|
// Write the dependency generation rule. This must be done last so
|
|
|
|
// that multiple output pair information is available.
|
|
|
|
this->WriteTargetDependRules();
|
|
|
|
|
2006-02-14 18:36:04 +03:00
|
|
|
// close the streams
|
|
|
|
this->CloseFileStreams();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2006-02-16 23:19:00 +03:00
|
|
|
void cmMakefileExecutableTargetGenerator::WriteExecutableRule(bool relink)
|
2006-02-14 18:36:04 +03:00
|
|
|
{
|
|
|
|
std::vector<std::string> commands;
|
|
|
|
|
|
|
|
// Build list of dependencies.
|
|
|
|
std::vector<std::string> depends;
|
2010-11-05 15:33:47 +03:00
|
|
|
this->AppendLinkDepends(depends);
|
2006-02-14 18:36:04 +03:00
|
|
|
|
|
|
|
// Get the name of the executable to generate.
|
|
|
|
std::string targetName;
|
|
|
|
std::string targetNameReal;
|
2007-03-19 17:00:36 +03:00
|
|
|
std::string targetNameImport;
|
2007-02-01 17:57:24 +03:00
|
|
|
std::string targetNamePDB;
|
2006-05-12 20:29:09 +04:00
|
|
|
this->Target->GetExecutableNames
|
2007-03-19 17:00:36 +03:00
|
|
|
(targetName, targetNameReal, targetNameImport, targetNamePDB,
|
2009-07-03 16:41:10 +04:00
|
|
|
this->ConfigName);
|
2006-02-14 18:36:04 +03:00
|
|
|
|
|
|
|
// Construct the full path version of the names.
|
2009-07-03 18:34:10 +04:00
|
|
|
std::string outpath = this->Target->GetDirectory(this->ConfigName);
|
2008-02-15 19:22:23 +03:00
|
|
|
if(this->Target->IsAppBundleOnApple())
|
2006-02-14 18:36:04 +03:00
|
|
|
{
|
2012-07-07 21:54:16 +04:00
|
|
|
this->OSXBundleGenerator->CreateAppBundle(targetName, outpath);
|
2006-02-14 18:36:04 +03:00
|
|
|
}
|
2013-05-06 06:19:05 +04:00
|
|
|
outpath += "/";
|
2007-03-19 17:00:36 +03:00
|
|
|
std::string outpathImp;
|
2006-02-16 23:19:00 +03:00
|
|
|
if(relink)
|
|
|
|
{
|
|
|
|
outpath = this->Makefile->GetStartOutputDirectory();
|
2006-06-14 20:28:32 +04:00
|
|
|
outpath += cmake::GetCMakeFilesDirectory();
|
|
|
|
outpath += "/CMakeRelink.dir";
|
2006-02-16 23:19:00 +03:00
|
|
|
cmSystemTools::MakeDirectory(outpath.c_str());
|
|
|
|
outpath += "/";
|
2007-03-19 17:00:36 +03:00
|
|
|
if(!targetNameImport.empty())
|
|
|
|
{
|
|
|
|
outpathImp = outpath;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-04-07 21:39:13 +04:00
|
|
|
cmSystemTools::MakeDirectory(outpath.c_str());
|
2007-03-19 17:00:36 +03:00
|
|
|
if(!targetNameImport.empty())
|
|
|
|
{
|
2009-07-03 18:34:10 +04:00
|
|
|
outpathImp = this->Target->GetDirectory(this->ConfigName, true);
|
2008-04-07 21:39:13 +04:00
|
|
|
cmSystemTools::MakeDirectory(outpathImp.c_str());
|
2007-03-19 17:00:36 +03:00
|
|
|
outpathImp += "/";
|
|
|
|
}
|
2006-02-16 23:19:00 +03:00
|
|
|
}
|
2012-09-25 05:30:42 +04:00
|
|
|
|
2014-02-24 23:15:21 +04:00
|
|
|
std::string compilePdbOutputPath =
|
|
|
|
this->Target->GetCompilePDBDirectory(this->ConfigName);
|
|
|
|
cmSystemTools::MakeDirectory(compilePdbOutputPath.c_str());
|
|
|
|
|
2014-02-21 18:25:30 +04:00
|
|
|
std::string pdbOutputPath = this->Target->GetPDBDirectory(this->ConfigName);
|
2012-09-25 05:30:42 +04:00
|
|
|
cmSystemTools::MakeDirectory(pdbOutputPath.c_str());
|
|
|
|
pdbOutputPath += "/";
|
|
|
|
|
2006-02-14 18:36:04 +03:00
|
|
|
std::string targetFullPath = outpath + targetName;
|
|
|
|
std::string targetFullPathReal = outpath + targetNameReal;
|
2012-09-25 05:30:42 +04:00
|
|
|
std::string targetFullPathPDB = pdbOutputPath + targetNamePDB;
|
2007-03-19 17:00:36 +03:00
|
|
|
std::string targetFullPathImport = outpathImp + targetNameImport;
|
2012-07-07 21:57:40 +04:00
|
|
|
std::string targetOutPathPDB =
|
2006-04-20 00:36:14 +04:00
|
|
|
this->Convert(targetFullPathPDB.c_str(),
|
2009-09-17 16:42:31 +04:00
|
|
|
cmLocalGenerator::NONE,
|
2007-03-08 18:31:03 +03:00
|
|
|
cmLocalGenerator::SHELL);
|
2006-02-14 18:36:04 +03:00
|
|
|
// Convert to the output path to use in constructing commands.
|
|
|
|
std::string targetOutPath =
|
|
|
|
this->Convert(targetFullPath.c_str(),
|
2006-04-20 00:36:14 +04:00
|
|
|
cmLocalGenerator::START_OUTPUT,
|
2007-03-08 18:31:03 +03:00
|
|
|
cmLocalGenerator::SHELL);
|
2006-02-14 18:36:04 +03:00
|
|
|
std::string targetOutPathReal =
|
|
|
|
this->Convert(targetFullPathReal.c_str(),
|
2006-04-20 00:36:14 +04:00
|
|
|
cmLocalGenerator::START_OUTPUT,
|
2007-03-08 18:31:03 +03:00
|
|
|
cmLocalGenerator::SHELL);
|
2007-03-19 17:00:36 +03:00
|
|
|
std::string targetOutPathImport =
|
|
|
|
this->Convert(targetFullPathImport.c_str(),
|
|
|
|
cmLocalGenerator::START_OUTPUT,
|
|
|
|
cmLocalGenerator::SHELL);
|
|
|
|
|
2006-02-14 18:36:04 +03:00
|
|
|
// Get the language to use for linking this executable.
|
2014-02-04 06:20:56 +04:00
|
|
|
std::string linkLanguage =
|
2009-07-08 21:04:04 +04:00
|
|
|
this->Target->GetLinkerLanguage(this->ConfigName);
|
2006-02-14 18:36:04 +03:00
|
|
|
|
|
|
|
// Make sure we have a link language.
|
2014-02-04 06:20:56 +04:00
|
|
|
if(linkLanguage.empty())
|
2006-02-14 18:36:04 +03:00
|
|
|
{
|
|
|
|
cmSystemTools::Error("Cannot determine link language for target \"",
|
2014-02-07 02:31:47 +04:00
|
|
|
this->Target->GetName().c_str(), "\".");
|
2006-02-14 18:36:04 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-03-16 23:55:58 +03:00
|
|
|
if(!this->NoRuleMessages)
|
|
|
|
{
|
|
|
|
// Add the link message.
|
|
|
|
std::string buildEcho = "Linking ";
|
|
|
|
buildEcho += linkLanguage;
|
|
|
|
buildEcho += " executable ";
|
|
|
|
buildEcho += targetOutPath;
|
|
|
|
this->LocalGenerator->AppendEcho(commands, buildEcho.c_str(),
|
|
|
|
cmLocalUnixMakefileGenerator3::EchoLink);
|
|
|
|
}
|
2006-02-14 18:36:04 +03:00
|
|
|
|
|
|
|
// Build a list of compiler flags and linker flags.
|
|
|
|
std::string flags;
|
|
|
|
std::string linkFlags;
|
|
|
|
|
|
|
|
// Add flags to create an executable.
|
|
|
|
this->LocalGenerator->
|
2006-02-24 19:13:31 +03:00
|
|
|
AddConfigVariableFlags(linkFlags, "CMAKE_EXE_LINKER_FLAGS",
|
2009-07-03 16:41:10 +04:00
|
|
|
this->ConfigName);
|
2006-02-14 18:36:04 +03:00
|
|
|
|
|
|
|
|
|
|
|
if(this->Target->GetPropertyAsBool("WIN32_EXECUTABLE"))
|
|
|
|
{
|
2006-05-12 20:29:09 +04:00
|
|
|
this->LocalGenerator->AppendFlags
|
|
|
|
(linkFlags, this->Makefile->GetDefinition("CMAKE_CREATE_WIN32_EXE"));
|
2006-02-14 18:36:04 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-05-12 20:29:09 +04:00
|
|
|
this->LocalGenerator->AppendFlags
|
|
|
|
(linkFlags, this->Makefile->GetDefinition("CMAKE_CREATE_CONSOLE_EXE"));
|
2006-02-14 18:36:04 +03:00
|
|
|
}
|
|
|
|
|
2007-04-18 07:39:47 +04:00
|
|
|
// Add symbol export flags if necessary.
|
2008-01-28 16:38:36 +03:00
|
|
|
if(this->Target->IsExecutableWithExports())
|
2007-04-18 07:39:47 +04:00
|
|
|
{
|
|
|
|
std::string export_flag_var = "CMAKE_EXE_EXPORTS_";
|
|
|
|
export_flag_var += linkLanguage;
|
|
|
|
export_flag_var += "_FLAG";
|
|
|
|
this->LocalGenerator->AppendFlags
|
|
|
|
(linkFlags, this->Makefile->GetDefinition(export_flag_var.c_str()));
|
|
|
|
}
|
|
|
|
|
2009-10-02 21:51:49 +04:00
|
|
|
// Add language feature flags.
|
|
|
|
this->AddFeatureFlags(flags, linkLanguage);
|
2006-02-14 18:36:04 +03:00
|
|
|
|
2012-09-16 03:16:43 +04:00
|
|
|
this->LocalGenerator->AddArchitectureFlags(flags, this->GeneratorTarget,
|
2009-10-23 16:02:24 +04:00
|
|
|
linkLanguage, this->ConfigName);
|
2009-10-21 21:00:49 +04:00
|
|
|
|
2006-02-14 18:36:04 +03:00
|
|
|
// Add target-specific linker flags.
|
2006-05-12 20:29:09 +04:00
|
|
|
this->LocalGenerator->AppendFlags
|
|
|
|
(linkFlags, this->Target->GetProperty("LINK_FLAGS"));
|
2006-04-03 20:57:51 +04:00
|
|
|
std::string linkFlagsConfig = "LINK_FLAGS_";
|
2009-07-03 16:41:10 +04:00
|
|
|
linkFlagsConfig += cmSystemTools::UpperCase(this->ConfigName);
|
2006-05-12 20:29:09 +04:00
|
|
|
this->LocalGenerator->AppendFlags
|
|
|
|
(linkFlags, this->Target->GetProperty(linkFlagsConfig.c_str()));
|
|
|
|
|
2009-09-30 00:39:07 +04:00
|
|
|
this->AddModuleDefinitionFlag(linkFlags);
|
|
|
|
|
2006-02-14 18:36:04 +03:00
|
|
|
// Construct a list of files associated with this executable that
|
|
|
|
// may need to be cleaned.
|
|
|
|
std::vector<std::string> exeCleanFiles;
|
2009-05-01 18:39:28 +04:00
|
|
|
exeCleanFiles.push_back(this->Convert(targetFullPath.c_str(),
|
2006-02-14 18:36:04 +03:00
|
|
|
cmLocalGenerator::START_OUTPUT,
|
2006-03-09 22:30:35 +03:00
|
|
|
cmLocalGenerator::UNCHANGED));
|
2006-08-15 23:28:29 +04:00
|
|
|
#ifdef _WIN32
|
|
|
|
// There may be a manifest file for this target. Add it to the
|
|
|
|
// clean set just in case.
|
2009-05-01 18:39:28 +04:00
|
|
|
exeCleanFiles.push_back(this->Convert((targetFullPath+".manifest").c_str(),
|
2006-08-15 23:28:29 +04:00
|
|
|
cmLocalGenerator::START_OUTPUT,
|
|
|
|
cmLocalGenerator::UNCHANGED));
|
|
|
|
#endif
|
2009-05-01 18:39:28 +04:00
|
|
|
if(targetNameReal != targetName)
|
2006-02-14 18:36:04 +03:00
|
|
|
{
|
2009-05-01 18:39:28 +04:00
|
|
|
exeCleanFiles.push_back(this->Convert(targetFullPathReal.c_str(),
|
2006-02-14 18:36:04 +03:00
|
|
|
cmLocalGenerator::START_OUTPUT,
|
2006-03-09 22:30:35 +03:00
|
|
|
cmLocalGenerator::UNCHANGED));
|
2006-02-14 18:36:04 +03:00
|
|
|
}
|
2009-05-01 18:39:28 +04:00
|
|
|
if(!targetNameImport.empty())
|
2007-03-19 17:00:36 +03:00
|
|
|
{
|
2009-05-01 18:39:28 +04:00
|
|
|
exeCleanFiles.push_back(this->Convert(targetFullPathImport.c_str(),
|
2007-03-19 17:00:36 +03:00
|
|
|
cmLocalGenerator::START_OUTPUT,
|
|
|
|
cmLocalGenerator::UNCHANGED));
|
2011-12-06 01:39:07 +04:00
|
|
|
std::string implib;
|
|
|
|
if(this->Target->GetImplibGNUtoMS(targetFullPathImport, implib))
|
|
|
|
{
|
|
|
|
exeCleanFiles.push_back(this->Convert(implib.c_str(),
|
|
|
|
cmLocalGenerator::START_OUTPUT,
|
|
|
|
cmLocalGenerator::UNCHANGED));
|
|
|
|
}
|
2007-03-19 17:00:36 +03:00
|
|
|
}
|
2007-02-02 00:52:52 +03:00
|
|
|
|
|
|
|
// List the PDB for cleaning only when the whole target is
|
|
|
|
// cleaned. We do not want to delete the .pdb file just before
|
|
|
|
// linking the target.
|
|
|
|
this->CleanFiles.push_back
|
2009-05-01 18:39:28 +04:00
|
|
|
(this->Convert(targetFullPathPDB.c_str(),
|
2007-02-02 00:52:52 +03:00
|
|
|
cmLocalGenerator::START_OUTPUT,
|
|
|
|
cmLocalGenerator::UNCHANGED));
|
2006-02-14 18:36:04 +03:00
|
|
|
|
2006-02-16 23:39:19 +03:00
|
|
|
// Add the pre-build and pre-link rules building but not when relinking.
|
|
|
|
if(!relink)
|
|
|
|
{
|
|
|
|
this->LocalGenerator
|
2009-02-10 16:50:33 +03:00
|
|
|
->AppendCustomCommands(commands, this->Target->GetPreBuildCommands(),
|
|
|
|
this->Target);
|
2006-02-16 23:39:19 +03:00
|
|
|
this->LocalGenerator
|
2009-02-10 16:50:33 +03:00
|
|
|
->AppendCustomCommands(commands, this->Target->GetPreLinkCommands(),
|
|
|
|
this->Target);
|
2006-02-16 23:39:19 +03:00
|
|
|
}
|
2006-02-14 18:36:04 +03:00
|
|
|
|
2007-12-28 22:59:06 +03:00
|
|
|
// Determine whether a link script will be used.
|
|
|
|
bool useLinkScript = this->GlobalGenerator->GetUseLinkScript();
|
|
|
|
|
2006-02-14 18:36:04 +03:00
|
|
|
// Construct the main link rule.
|
2007-12-28 22:59:06 +03:00
|
|
|
std::vector<std::string> real_link_commands;
|
2006-02-14 18:36:04 +03:00
|
|
|
std::string linkRuleVar = "CMAKE_";
|
|
|
|
linkRuleVar += linkLanguage;
|
|
|
|
linkRuleVar += "_LINK_EXECUTABLE";
|
2011-12-06 01:28:03 +04:00
|
|
|
std::string linkRule = this->GetLinkRule(linkRuleVar.c_str());
|
2007-10-18 17:38:34 +04:00
|
|
|
std::vector<std::string> commands1;
|
2007-12-28 22:59:06 +03:00
|
|
|
cmSystemTools::ExpandListArgument(linkRule, real_link_commands);
|
2008-01-28 16:38:36 +03:00
|
|
|
if(this->Target->IsExecutableWithExports())
|
2007-03-22 16:45:25 +03:00
|
|
|
{
|
|
|
|
// If a separate rule for creating an import library is specified
|
|
|
|
// add it now.
|
|
|
|
std::string implibRuleVar = "CMAKE_";
|
|
|
|
implibRuleVar += linkLanguage;
|
|
|
|
implibRuleVar += "_CREATE_IMPORT_LIBRARY";
|
|
|
|
if(const char* rule =
|
|
|
|
this->Makefile->GetDefinition(implibRuleVar.c_str()))
|
|
|
|
{
|
2007-12-28 22:59:06 +03:00
|
|
|
cmSystemTools::ExpandListArgument(rule, real_link_commands);
|
2007-03-22 16:45:25 +03:00
|
|
|
}
|
|
|
|
}
|
2006-02-14 18:36:04 +03:00
|
|
|
|
2008-02-28 01:10:45 +03:00
|
|
|
// Select whether to use a response file for objects.
|
2014-03-04 22:21:15 +04:00
|
|
|
bool useResponseFileForObjects = false;
|
2008-02-28 01:10:45 +03:00
|
|
|
{
|
|
|
|
std::string responseVar = "CMAKE_";
|
|
|
|
responseVar += linkLanguage;
|
|
|
|
responseVar += "_USE_RESPONSE_FILE_FOR_OBJECTS";
|
|
|
|
if(this->Makefile->IsOn(responseVar.c_str()))
|
|
|
|
{
|
2014-03-04 22:21:15 +04:00
|
|
|
useResponseFileForObjects = true;
|
2008-02-28 01:10:45 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-04 22:25:42 +04:00
|
|
|
// Select whether to use a response file for libraries.
|
|
|
|
bool useResponseFileForLibs = false;
|
|
|
|
{
|
|
|
|
std::string responseVar = "CMAKE_";
|
|
|
|
responseVar += linkLanguage;
|
|
|
|
responseVar += "_USE_RESPONSE_FILE_FOR_LIBRARIES";
|
|
|
|
if(this->Makefile->IsOn(responseVar.c_str()))
|
|
|
|
{
|
|
|
|
useResponseFileForLibs = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-12-28 22:59:06 +03:00
|
|
|
// Expand the rule variables.
|
|
|
|
{
|
2008-01-30 05:16:49 +03:00
|
|
|
// Set path conversion for link script shells.
|
|
|
|
this->LocalGenerator->SetLinkScriptShell(useLinkScript);
|
|
|
|
|
2006-02-14 18:36:04 +03:00
|
|
|
// Collect up flags to link in needed libraries.
|
2012-09-26 16:38:15 +04:00
|
|
|
std::string linkLibs;
|
2014-03-04 22:25:42 +04:00
|
|
|
this->CreateLinkLibs(linkLibs, relink, useResponseFileForLibs, depends);
|
2014-03-04 20:20:27 +04:00
|
|
|
|
2006-02-14 18:36:04 +03:00
|
|
|
// Construct object file lists that may be needed to expand the
|
|
|
|
// rule.
|
2007-12-28 22:59:06 +03:00
|
|
|
std::string buildObjs;
|
2014-03-04 22:21:15 +04:00
|
|
|
this->CreateObjectLists(useLinkScript, false,
|
|
|
|
useResponseFileForObjects, buildObjs, depends);
|
2006-02-14 18:36:04 +03:00
|
|
|
|
2006-02-20 21:42:18 +03:00
|
|
|
cmLocalGenerator::RuleVariables vars;
|
2009-02-10 16:51:15 +03:00
|
|
|
vars.RuleLauncher = "RULE_LAUNCH_LINK";
|
|
|
|
vars.CMTarget = this->Target;
|
2014-02-04 06:20:56 +04:00
|
|
|
vars.Language = linkLanguage.c_str();
|
2006-02-20 21:42:18 +03:00
|
|
|
vars.Objects = buildObjs.c_str();
|
2013-12-23 18:41:45 +04:00
|
|
|
std::string objectDir = this->Target->GetSupportDirectory();
|
|
|
|
objectDir = this->Convert(objectDir.c_str(),
|
|
|
|
cmLocalGenerator::START_OUTPUT,
|
|
|
|
cmLocalGenerator::SHELL);
|
|
|
|
vars.ObjectDir = objectDir.c_str();
|
2006-02-20 21:42:18 +03:00
|
|
|
vars.Target = targetOutPathReal.c_str();
|
2006-04-20 00:36:14 +04:00
|
|
|
vars.TargetPDB = targetOutPathPDB.c_str();
|
2006-10-17 02:17:14 +04:00
|
|
|
|
|
|
|
// Setup the target version.
|
|
|
|
std::string targetVersionMajor;
|
|
|
|
std::string targetVersionMinor;
|
|
|
|
{
|
|
|
|
cmOStringStream majorStream;
|
|
|
|
cmOStringStream minorStream;
|
|
|
|
int major;
|
|
|
|
int minor;
|
|
|
|
this->Target->GetTargetVersion(major, minor);
|
|
|
|
majorStream << major;
|
|
|
|
minorStream << minor;
|
|
|
|
targetVersionMajor = majorStream.str();
|
|
|
|
targetVersionMinor = minorStream.str();
|
|
|
|
}
|
|
|
|
vars.TargetVersionMajor = targetVersionMajor.c_str();
|
|
|
|
vars.TargetVersionMinor = targetVersionMinor.c_str();
|
|
|
|
|
2012-09-26 16:38:15 +04:00
|
|
|
vars.LinkLibraries = linkLibs.c_str();
|
2006-02-20 21:42:18 +03:00
|
|
|
vars.Flags = flags.c_str();
|
|
|
|
vars.LinkFlags = linkFlags.c_str();
|
2006-02-14 18:36:04 +03:00
|
|
|
// Expand placeholders in the commands.
|
2007-03-19 17:00:36 +03:00
|
|
|
this->LocalGenerator->TargetImplib = targetOutPathImport;
|
2007-12-28 22:59:06 +03:00
|
|
|
for(std::vector<std::string>::iterator i = real_link_commands.begin();
|
|
|
|
i != real_link_commands.end(); ++i)
|
2006-02-14 18:36:04 +03:00
|
|
|
{
|
2006-02-20 21:42:18 +03:00
|
|
|
this->LocalGenerator->ExpandRuleVariables(*i, vars);
|
2006-02-14 18:36:04 +03:00
|
|
|
}
|
2007-03-19 17:00:36 +03:00
|
|
|
this->LocalGenerator->TargetImplib = "";
|
2008-01-30 05:16:49 +03:00
|
|
|
|
|
|
|
// Restore path conversion to normal shells.
|
|
|
|
this->LocalGenerator->SetLinkScriptShell(false);
|
2007-12-28 22:59:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Optionally convert the build rule to use a script to avoid long
|
|
|
|
// command lines in the make shell.
|
|
|
|
if(useLinkScript)
|
|
|
|
{
|
|
|
|
// Use a link script.
|
|
|
|
const char* name = (relink? "relink.txt" : "link.txt");
|
2008-02-20 22:56:29 +03:00
|
|
|
this->CreateLinkScript(name, real_link_commands, commands1, depends);
|
2007-12-28 22:59:06 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// No link script. Just use the link rule directly.
|
|
|
|
commands1 = real_link_commands;
|
|
|
|
}
|
|
|
|
this->LocalGenerator->CreateCDCommand
|
|
|
|
(commands1,
|
|
|
|
this->Makefile->GetStartOutputDirectory(),
|
2008-10-09 23:30:07 +04:00
|
|
|
cmLocalGenerator::HOME_OUTPUT);
|
2007-12-28 22:59:06 +03:00
|
|
|
commands.insert(commands.end(), commands1.begin(), commands1.end());
|
|
|
|
commands1.clear();
|
|
|
|
|
|
|
|
// Add a rule to create necessary symlinks for the library.
|
|
|
|
if(targetOutPath != targetOutPathReal)
|
|
|
|
{
|
|
|
|
std::string symlink = "$(CMAKE_COMMAND) -E cmake_symlink_executable ";
|
|
|
|
symlink += targetOutPathReal;
|
|
|
|
symlink += " ";
|
|
|
|
symlink += targetOutPath;
|
|
|
|
commands1.push_back(symlink);
|
|
|
|
this->LocalGenerator->CreateCDCommand(commands1,
|
|
|
|
this->Makefile->GetStartOutputDirectory(),
|
2008-10-09 23:30:07 +04:00
|
|
|
cmLocalGenerator::HOME_OUTPUT);
|
2007-12-28 22:59:06 +03:00
|
|
|
commands.insert(commands.end(), commands1.begin(), commands1.end());
|
|
|
|
commands1.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add the post-build rules when building but not when relinking.
|
|
|
|
if(!relink)
|
|
|
|
{
|
|
|
|
this->LocalGenerator->
|
2009-02-10 16:50:33 +03:00
|
|
|
AppendCustomCommands(commands, this->Target->GetPostBuildCommands(),
|
|
|
|
this->Target);
|
2007-12-28 22:59:06 +03:00
|
|
|
}
|
2006-02-14 18:36:04 +03:00
|
|
|
|
|
|
|
// Write the build rule.
|
2006-03-28 17:54:01 +04:00
|
|
|
this->LocalGenerator->WriteMakeRule(*this->BuildFileStream,
|
2006-02-14 18:36:04 +03:00
|
|
|
0,
|
2006-03-28 17:54:01 +04:00
|
|
|
targetFullPathReal.c_str(),
|
2006-02-16 00:35:16 +03:00
|
|
|
depends, commands, false);
|
2006-02-14 18:36:04 +03:00
|
|
|
|
|
|
|
// The symlink name for the target should depend on the real target
|
|
|
|
// so if the target version changes it rebuilds and recreates the
|
|
|
|
// symlink.
|
|
|
|
if(targetFullPath != targetFullPathReal)
|
|
|
|
{
|
|
|
|
depends.clear();
|
|
|
|
commands.clear();
|
|
|
|
depends.push_back(targetFullPathReal.c_str());
|
|
|
|
this->LocalGenerator->WriteMakeRule(*this->BuildFileStream, 0,
|
2006-03-28 17:54:01 +04:00
|
|
|
targetFullPath.c_str(),
|
2006-02-16 00:35:16 +03:00
|
|
|
depends, commands, false);
|
2006-02-14 18:36:04 +03:00
|
|
|
}
|
|
|
|
|
2006-06-01 19:45:51 +04:00
|
|
|
// Write the main driver rule to build everything in this target.
|
|
|
|
this->WriteTargetDriverRule(targetFullPath.c_str(), relink);
|
2006-02-14 18:36:04 +03:00
|
|
|
|
2007-08-02 17:37:10 +04:00
|
|
|
// Clean all the possible executable names and symlinks.
|
2006-02-14 18:36:04 +03:00
|
|
|
this->CleanFiles.insert(this->CleanFiles.end(),
|
|
|
|
exeCleanFiles.begin(),
|
|
|
|
exeCleanFiles.end());
|
|
|
|
}
|