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 "cmMakefileLibraryTargetGenerator.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"
|
2015-06-19 23:12:43 +03:00
|
|
|
#include "cmAlgorithms.h"
|
2006-02-14 18:36:04 +03:00
|
|
|
|
2006-09-29 00:40:35 +04:00
|
|
|
//----------------------------------------------------------------------------
|
2008-02-19 00:38:34 +03:00
|
|
|
cmMakefileLibraryTargetGenerator
|
2012-10-10 23:32:37 +04:00
|
|
|
::cmMakefileLibraryTargetGenerator(cmGeneratorTarget* target):
|
2015-06-06 15:57:26 +03:00
|
|
|
cmMakefileTargetGenerator(target)
|
2006-09-29 00:40:35 +04:00
|
|
|
{
|
2007-05-01 21:51:25 +04:00
|
|
|
this->CustomCommandDriver = OnDepends;
|
2013-11-20 15:44:04 +04:00
|
|
|
if (this->Target->GetType() != cmTarget::INTERFACE_LIBRARY)
|
|
|
|
{
|
|
|
|
this->Target->GetLibraryNames(
|
|
|
|
this->TargetNameOut, this->TargetNameSO, this->TargetNameReal,
|
|
|
|
this->TargetNameImport, 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);
|
|
|
|
this->OSXBundleGenerator->SetMacContentFolders(&this->MacContentFolders);
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmMakefileLibraryTargetGenerator
|
|
|
|
::~cmMakefileLibraryTargetGenerator()
|
|
|
|
{
|
|
|
|
delete this->OSXBundleGenerator;
|
2006-09-29 00:40:35 +04:00
|
|
|
}
|
|
|
|
|
2006-02-14 18:36:04 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmMakefileLibraryTargetGenerator::WriteRuleFiles()
|
|
|
|
{
|
|
|
|
// create the build.make file and directory, put in the common blocks
|
|
|
|
this->CreateRuleFile();
|
|
|
|
|
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-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
|
|
|
|
// Write the rule for this target type.
|
|
|
|
switch(this->Target->GetType())
|
|
|
|
{
|
|
|
|
case cmTarget::STATIC_LIBRARY:
|
|
|
|
this->WriteStaticLibraryRules();
|
|
|
|
break;
|
|
|
|
case cmTarget::SHARED_LIBRARY:
|
2006-02-16 23:19:00 +03:00
|
|
|
this->WriteSharedLibraryRules(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->WriteSharedLibraryRules(true);
|
|
|
|
}
|
2006-02-14 18:36:04 +03:00
|
|
|
break;
|
|
|
|
case cmTarget::MODULE_LIBRARY:
|
2006-02-16 23:19:00 +03:00
|
|
|
this->WriteModuleLibraryRules(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->WriteModuleLibraryRules(true);
|
|
|
|
}
|
2006-02-14 18:36:04 +03:00
|
|
|
break;
|
2012-03-12 18:54:37 +04:00
|
|
|
case cmTarget::OBJECT_LIBRARY:
|
|
|
|
this->WriteObjectLibraryRules();
|
|
|
|
break;
|
2006-02-14 18:36:04 +03:00
|
|
|
default:
|
|
|
|
// If language is not known, this is an error.
|
|
|
|
cmSystemTools::Error("Unknown Library Type");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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();
|
|
|
|
}
|
|
|
|
|
2012-03-12 18:54:37 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmMakefileLibraryTargetGenerator::WriteObjectLibraryRules()
|
|
|
|
{
|
|
|
|
std::vector<std::string> commands;
|
|
|
|
std::vector<std::string> depends;
|
|
|
|
|
|
|
|
// Add post-build rules.
|
|
|
|
this->LocalGenerator->
|
|
|
|
AppendCustomCommands(commands, this->Target->GetPostBuildCommands(),
|
|
|
|
this->Target);
|
|
|
|
|
|
|
|
// Depend on the object files.
|
|
|
|
this->AppendObjectDepends(depends);
|
|
|
|
|
|
|
|
// Write the rule.
|
|
|
|
this->LocalGenerator->WriteMakeRule(*this->BuildFileStream, 0,
|
|
|
|
this->Target->GetName(),
|
|
|
|
depends, commands, true);
|
|
|
|
|
|
|
|
// Write the main driver rule to build everything in this target.
|
2014-03-11 03:04:11 +04:00
|
|
|
this->WriteTargetDriverRule(this->Target->GetName(), false);
|
2012-03-12 18:54:37 +04:00
|
|
|
}
|
|
|
|
|
2006-02-14 18:36:04 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmMakefileLibraryTargetGenerator::WriteStaticLibraryRules()
|
|
|
|
{
|
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
|
|
|
std::string linkRuleVar = "CMAKE_";
|
2014-02-04 06:20:56 +04:00
|
|
|
linkRuleVar += linkLanguage;
|
2006-02-14 18:36:04 +03:00
|
|
|
linkRuleVar += "_CREATE_STATIC_LIBRARY";
|
|
|
|
|
2009-10-02 21:52:13 +04:00
|
|
|
if(this->GetFeatureAsBool("INTERPROCEDURAL_OPTIMIZATION") &&
|
2014-03-11 03:04:11 +04:00
|
|
|
this->Makefile->GetDefinition(linkRuleVar+"_IPO"))
|
2009-10-02 21:52:13 +04:00
|
|
|
{
|
|
|
|
linkRuleVar += "_IPO";
|
|
|
|
}
|
|
|
|
|
2006-02-14 18:36:04 +03:00
|
|
|
std::string extraFlags;
|
2013-07-10 21:11:04 +04:00
|
|
|
this->LocalGenerator->GetStaticLibraryFlags(extraFlags,
|
|
|
|
cmSystemTools::UpperCase(this->ConfigName), this->Target);
|
2014-03-11 03:04:11 +04:00
|
|
|
this->WriteLibraryRules(linkRuleVar, extraFlags, false);
|
2006-02-14 18:36:04 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2006-02-16 23:19:00 +03:00
|
|
|
void cmMakefileLibraryTargetGenerator::WriteSharedLibraryRules(bool relink)
|
2006-02-14 18:36:04 +03:00
|
|
|
{
|
2008-01-28 21:05:58 +03:00
|
|
|
if(this->Target->IsFrameworkOnApple())
|
2007-05-08 18:32:54 +04:00
|
|
|
{
|
|
|
|
this->WriteFrameworkRules(relink);
|
|
|
|
return;
|
|
|
|
}
|
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
|
|
|
std::string linkRuleVar = "CMAKE_";
|
2014-02-04 06:20:56 +04:00
|
|
|
linkRuleVar += linkLanguage;
|
2006-02-14 18:36:04 +03:00
|
|
|
linkRuleVar += "_CREATE_SHARED_LIBRARY";
|
|
|
|
|
|
|
|
std::string extraFlags;
|
2006-05-12 20:29:09 +04:00
|
|
|
this->LocalGenerator->AppendFlags
|
|
|
|
(extraFlags, 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
|
2014-03-11 03:04:11 +04:00
|
|
|
(extraFlags, this->Target->GetProperty(linkFlagsConfig));
|
2012-07-07 21:57:40 +04:00
|
|
|
|
2006-05-12 20:29:09 +04:00
|
|
|
this->LocalGenerator->AddConfigVariableFlags
|
2009-07-03 16:41:10 +04:00
|
|
|
(extraFlags, "CMAKE_SHARED_LINKER_FLAGS", this->ConfigName);
|
2009-09-30 00:39:07 +04:00
|
|
|
this->AddModuleDefinitionFlag(extraFlags);
|
|
|
|
|
2014-03-11 03:04:11 +04:00
|
|
|
this->WriteLibraryRules(linkRuleVar, extraFlags, relink);
|
2006-02-14 18:36:04 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2006-02-16 23:19:00 +03:00
|
|
|
void cmMakefileLibraryTargetGenerator::WriteModuleLibraryRules(bool relink)
|
2006-02-14 18:36:04 +03:00
|
|
|
{
|
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
|
|
|
std::string linkRuleVar = "CMAKE_";
|
2014-02-04 06:20:56 +04:00
|
|
|
linkRuleVar += linkLanguage;
|
2006-02-14 18:36:04 +03:00
|
|
|
linkRuleVar += "_CREATE_SHARED_MODULE";
|
|
|
|
|
|
|
|
std::string extraFlags;
|
2012-07-07 21:57:40 +04:00
|
|
|
this->LocalGenerator->AppendFlags(extraFlags,
|
2006-05-12 20:29:09 +04:00
|
|
|
this->Target->GetProperty("LINK_FLAGS"));
|
|
|
|
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
|
2014-03-11 03:04:11 +04:00
|
|
|
(extraFlags, this->Target->GetProperty(linkFlagsConfig));
|
2006-05-12 20:29:09 +04:00
|
|
|
this->LocalGenerator->AddConfigVariableFlags
|
2009-07-03 16:41:10 +04:00
|
|
|
(extraFlags, "CMAKE_MODULE_LINKER_FLAGS", this->ConfigName);
|
2009-09-30 00:39:07 +04:00
|
|
|
this->AddModuleDefinitionFlag(extraFlags);
|
2006-05-12 20:29:09 +04:00
|
|
|
|
2014-03-11 03:04:11 +04:00
|
|
|
this->WriteLibraryRules(linkRuleVar, extraFlags, relink);
|
2006-02-14 18:36:04 +03:00
|
|
|
}
|
|
|
|
|
2007-05-08 18:32:54 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmMakefileLibraryTargetGenerator::WriteFrameworkRules(bool relink)
|
|
|
|
{
|
2014-02-04 06:20:56 +04:00
|
|
|
std::string linkLanguage =
|
2009-07-08 21:04:04 +04:00
|
|
|
this->Target->GetLinkerLanguage(this->ConfigName);
|
2007-05-08 18:32:54 +04:00
|
|
|
std::string linkRuleVar = "CMAKE_";
|
2014-02-04 06:20:56 +04:00
|
|
|
linkRuleVar += linkLanguage;
|
2007-05-08 18:32:54 +04:00
|
|
|
linkRuleVar += "_CREATE_MACOSX_FRAMEWORK";
|
|
|
|
|
|
|
|
std::string extraFlags;
|
2012-07-07 21:57:40 +04:00
|
|
|
this->LocalGenerator->AppendFlags(extraFlags,
|
2007-05-08 18:32:54 +04:00
|
|
|
this->Target->GetProperty("LINK_FLAGS"));
|
|
|
|
std::string linkFlagsConfig = "LINK_FLAGS_";
|
2009-07-03 16:41:10 +04:00
|
|
|
linkFlagsConfig += cmSystemTools::UpperCase(this->ConfigName);
|
2007-05-08 18:32:54 +04:00
|
|
|
this->LocalGenerator->AppendFlags
|
2014-03-11 03:04:11 +04:00
|
|
|
(extraFlags, this->Target->GetProperty(linkFlagsConfig));
|
2007-05-08 18:32:54 +04:00
|
|
|
this->LocalGenerator->AddConfigVariableFlags
|
2009-07-03 16:41:10 +04:00
|
|
|
(extraFlags, "CMAKE_MACOSX_FRAMEWORK_LINKER_FLAGS", this->ConfigName);
|
2007-05-08 18:32:54 +04:00
|
|
|
|
2014-03-11 03:04:11 +04:00
|
|
|
this->WriteLibraryRules(linkRuleVar, extraFlags, relink);
|
2007-05-08 18:32:54 +04:00
|
|
|
}
|
|
|
|
|
2006-02-14 18:36:04 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmMakefileLibraryTargetGenerator::WriteLibraryRules
|
2014-02-05 01:06:56 +04:00
|
|
|
(const std::string& linkRuleVar, const std::string& extraFlags, bool relink)
|
2006-02-14 18:36:04 +03:00
|
|
|
{
|
|
|
|
// TODO: Merge the methods that call this method to avoid
|
|
|
|
// code duplication.
|
|
|
|
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 language to use for linking this library.
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create set of linking flags.
|
|
|
|
std::string linkFlags;
|
2014-05-02 00:07:26 +04:00
|
|
|
this->LocalGenerator->AppendFlags(linkFlags, extraFlags);
|
2006-02-14 18:36:04 +03:00
|
|
|
|
2008-07-09 18:09:46 +04:00
|
|
|
// Add OSX version flags, if any.
|
|
|
|
if(this->Target->GetType() == cmTarget::SHARED_LIBRARY ||
|
|
|
|
this->Target->GetType() == cmTarget::MODULE_LIBRARY)
|
|
|
|
{
|
|
|
|
this->AppendOSXVerFlag(linkFlags, linkLanguage, "COMPATIBILITY", true);
|
|
|
|
this->AppendOSXVerFlag(linkFlags, linkLanguage, "CURRENT", false);
|
|
|
|
}
|
|
|
|
|
2006-02-14 18:36:04 +03:00
|
|
|
// Construct the name of the library.
|
|
|
|
std::string targetName;
|
|
|
|
std::string targetNameSO;
|
|
|
|
std::string targetNameReal;
|
2006-02-18 23:37:23 +03:00
|
|
|
std::string targetNameImport;
|
2007-02-01 17:57:24 +03:00
|
|
|
std::string targetNamePDB;
|
2006-02-18 23:37:23 +03:00
|
|
|
this->Target->GetLibraryNames(
|
2007-02-01 17:57:24 +03:00
|
|
|
targetName, targetNameSO, 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.
|
2007-03-08 22:57:28 +03:00
|
|
|
std::string outpath;
|
2007-03-09 17:30:16 +03:00
|
|
|
std::string outpathImp;
|
2008-04-08 08:06:47 +04:00
|
|
|
if(this->Target->IsFrameworkOnApple())
|
|
|
|
{
|
2013-05-06 06:19:05 +04:00
|
|
|
outpath = this->Target->GetDirectory(this->ConfigName);
|
|
|
|
this->OSXBundleGenerator->CreateFramework(targetName, outpath);
|
|
|
|
outpath += "/";
|
2008-04-08 08:06:47 +04:00
|
|
|
}
|
2010-10-07 06:43:04 +04:00
|
|
|
else if(this->Target->IsCFBundleOnApple())
|
|
|
|
{
|
|
|
|
outpath = this->Target->GetDirectory(this->ConfigName);
|
2012-07-16 18:00:40 +04:00
|
|
|
this->OSXBundleGenerator->CreateCFBundle(targetName, outpath);
|
2013-05-06 06:19:05 +04:00
|
|
|
outpath += "/";
|
2010-10-07 06:43:04 +04:00
|
|
|
}
|
2008-04-08 08:06:47 +04:00
|
|
|
else if(relink)
|
2006-02-16 23:19:00 +03:00
|
|
|
{
|
2015-04-16 21:06:54 +03:00
|
|
|
outpath = this->Makefile->GetCurrentBinaryDirectory();
|
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-09 21:56:45 +03:00
|
|
|
if(!targetNameImport.empty())
|
|
|
|
{
|
|
|
|
outpathImp = outpath;
|
|
|
|
}
|
2006-02-16 23:19:00 +03:00
|
|
|
}
|
2007-03-08 22:57:28 +03:00
|
|
|
else
|
|
|
|
{
|
2009-07-03 18:34:10 +04:00
|
|
|
outpath = this->Target->GetDirectory(this->ConfigName);
|
2008-04-07 21:39:13 +04:00
|
|
|
cmSystemTools::MakeDirectory(outpath.c_str());
|
2007-03-08 22:57:28 +03:00
|
|
|
outpath += "/";
|
2007-03-09 21:56:45 +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-09 21:56:45 +03:00
|
|
|
outpathImp += "/";
|
|
|
|
}
|
2007-03-08 22:57:28 +03:00
|
|
|
}
|
2008-01-28 21:05:58 +03: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;
|
2012-09-25 05:30:42 +04:00
|
|
|
std::string targetFullPathPDB = pdbOutputPath + targetNamePDB;
|
2006-02-14 18:36:04 +03:00
|
|
|
std::string targetFullPathSO = outpath + targetNameSO;
|
|
|
|
std::string targetFullPathReal = outpath + targetNameReal;
|
2007-03-09 17:30:16 +03:00
|
|
|
std::string targetFullPathImport = outpathImp + targetNameImport;
|
2006-02-14 18:36:04 +03:00
|
|
|
|
|
|
|
// Construct the output path version of the names for use in command
|
|
|
|
// arguments.
|
2012-07-07 21:57:40 +04:00
|
|
|
std::string targetOutPathPDB =
|
2014-03-11 03:04:11 +04:00
|
|
|
this->Convert(targetFullPathPDB,cmLocalGenerator::NONE,
|
2007-03-08 18:31:03 +03:00
|
|
|
cmLocalGenerator::SHELL);
|
2012-07-07 21:57:40 +04:00
|
|
|
std::string targetOutPath =
|
2014-03-11 03:04:11 +04:00
|
|
|
this->Convert(targetFullPath,cmLocalGenerator::START_OUTPUT,
|
2007-03-08 18:31:03 +03:00
|
|
|
cmLocalGenerator::SHELL);
|
2012-07-07 21:57:40 +04:00
|
|
|
std::string targetOutPathSO =
|
2014-03-11 03:04:11 +04:00
|
|
|
this->Convert(targetFullPathSO,cmLocalGenerator::START_OUTPUT,
|
2007-03-08 18:31:03 +03:00
|
|
|
cmLocalGenerator::SHELL);
|
2012-07-07 21:57:40 +04:00
|
|
|
std::string targetOutPathReal =
|
2014-03-11 03:04:11 +04:00
|
|
|
this->Convert(targetFullPathReal,cmLocalGenerator::START_OUTPUT,
|
2007-03-08 18:31:03 +03:00
|
|
|
cmLocalGenerator::SHELL);
|
2006-02-18 23:37:23 +03:00
|
|
|
std::string targetOutPathImport =
|
2014-03-11 03:04:11 +04:00
|
|
|
this->Convert(targetFullPathImport,cmLocalGenerator::START_OUTPUT,
|
2007-03-08 18:31:03 +03:00
|
|
|
cmLocalGenerator::SHELL);
|
2006-02-14 18:36:04 +03:00
|
|
|
|
2015-02-07 03:07:24 +03:00
|
|
|
this->NumberOfProgressActions++;
|
2009-03-16 23:55:58 +03:00
|
|
|
if(!this->NoRuleMessages)
|
2006-02-14 18:36:04 +03:00
|
|
|
{
|
2015-02-07 03:07:24 +03:00
|
|
|
cmLocalUnixMakefileGenerator3::EchoProgress progress;
|
|
|
|
this->MakeEchoProgress(progress);
|
2009-03-16 23:55:58 +03:00
|
|
|
// Add the link message.
|
|
|
|
std::string buildEcho = "Linking ";
|
|
|
|
buildEcho += linkLanguage;
|
|
|
|
switch(this->Target->GetType())
|
|
|
|
{
|
|
|
|
case cmTarget::STATIC_LIBRARY:
|
|
|
|
buildEcho += " static library ";
|
|
|
|
break;
|
|
|
|
case cmTarget::SHARED_LIBRARY:
|
|
|
|
buildEcho += " shared library ";
|
|
|
|
break;
|
|
|
|
case cmTarget::MODULE_LIBRARY:
|
2010-10-07 06:43:04 +04:00
|
|
|
if (this->Target->IsCFBundleOnApple())
|
|
|
|
buildEcho += " CFBundle";
|
2009-03-16 23:55:58 +03:00
|
|
|
buildEcho += " shared module ";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
buildEcho += " library ";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
buildEcho += targetOutPath.c_str();
|
|
|
|
this->LocalGenerator->AppendEcho(commands, buildEcho.c_str(),
|
2015-02-07 03:07:24 +03:00
|
|
|
cmLocalUnixMakefileGenerator3::EchoLink,
|
|
|
|
&progress);
|
2006-02-14 18:36:04 +03:00
|
|
|
}
|
|
|
|
|
2009-03-16 23:55:53 +03:00
|
|
|
const char* forbiddenFlagVar = 0;
|
|
|
|
switch(this->Target->GetType())
|
|
|
|
{
|
|
|
|
case cmTarget::SHARED_LIBRARY:
|
|
|
|
forbiddenFlagVar = "_CREATE_SHARED_LIBRARY_FORBIDDEN_FLAGS";
|
|
|
|
break;
|
|
|
|
case cmTarget::MODULE_LIBRARY:
|
|
|
|
forbiddenFlagVar = "_CREATE_SHARED_MODULE_FORBIDDEN_FLAGS";
|
|
|
|
break;
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
|
2009-05-01 18:38:35 +04:00
|
|
|
// Clean files associated with this library.
|
2006-02-14 18:36:04 +03:00
|
|
|
std::vector<std::string> libCleanFiles;
|
2014-03-11 03:04:11 +04:00
|
|
|
libCleanFiles.push_back(this->Convert(targetFullPath,
|
2009-05-01 18:38:35 +04:00
|
|
|
cmLocalGenerator::START_OUTPUT,
|
|
|
|
cmLocalGenerator::UNCHANGED));
|
|
|
|
if(targetNameReal != targetName)
|
2006-02-14 18:36:04 +03:00
|
|
|
{
|
2014-03-11 03:04:11 +04:00
|
|
|
libCleanFiles.push_back(this->Convert(targetFullPathReal,
|
2009-05-01 18:38:35 +04:00
|
|
|
cmLocalGenerator::START_OUTPUT,
|
|
|
|
cmLocalGenerator::UNCHANGED));
|
2006-02-14 18:36:04 +03:00
|
|
|
}
|
2009-05-01 18:38:35 +04:00
|
|
|
if(targetNameSO != targetName &&
|
|
|
|
targetNameSO != targetNameReal)
|
2006-02-18 23:37:23 +03:00
|
|
|
{
|
2014-03-11 03:04:11 +04:00
|
|
|
libCleanFiles.push_back(this->Convert(targetFullPathSO,
|
2009-05-01 18:38:35 +04:00
|
|
|
cmLocalGenerator::START_OUTPUT,
|
|
|
|
cmLocalGenerator::UNCHANGED));
|
2006-02-18 23:37:23 +03:00
|
|
|
}
|
2009-05-01 18:38:35 +04:00
|
|
|
if(!targetNameImport.empty())
|
|
|
|
{
|
2014-03-11 03:04:11 +04:00
|
|
|
libCleanFiles.push_back(this->Convert(targetFullPathImport,
|
2009-05-01 18:38:35 +04:00
|
|
|
cmLocalGenerator::START_OUTPUT,
|
|
|
|
cmLocalGenerator::UNCHANGED));
|
2011-12-06 01:39:07 +04:00
|
|
|
std::string implib;
|
|
|
|
if(this->Target->GetImplibGNUtoMS(targetFullPathImport, implib))
|
|
|
|
{
|
2014-03-11 03:04:11 +04:00
|
|
|
libCleanFiles.push_back(this->Convert(implib,
|
2011-12-06 01:39:07 +04:00
|
|
|
cmLocalGenerator::START_OUTPUT,
|
|
|
|
cmLocalGenerator::UNCHANGED));
|
|
|
|
}
|
2009-05-01 18:38:35 +04: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
|
2014-03-11 03:04:11 +04:00
|
|
|
(this->Convert(targetFullPathPDB,
|
2009-05-01 18:38:35 +04:00
|
|
|
cmLocalGenerator::START_OUTPUT,
|
|
|
|
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.
|
|
|
|
if(this->Target->GetType() != cmTarget::STATIC_LIBRARY)
|
|
|
|
{
|
|
|
|
libCleanFiles.push_back(
|
|
|
|
this->Convert((targetFullPath+".manifest").c_str(),
|
|
|
|
cmLocalGenerator::START_OUTPUT,
|
|
|
|
cmLocalGenerator::UNCHANGED));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-02-14 18:36:04 +03:00
|
|
|
std::vector<std::string> commands1;
|
2007-10-18 17:38:34 +04:00
|
|
|
// Add a command to remove any existing files for this library.
|
2012-07-07 21:57:40 +04:00
|
|
|
// for static libs only
|
2007-10-18 17:38:34 +04:00
|
|
|
if(this->Target->GetType() == cmTarget::STATIC_LIBRARY)
|
|
|
|
{
|
|
|
|
this->LocalGenerator->AppendCleanCommand(commands1, libCleanFiles,
|
|
|
|
*this->Target, "target");
|
|
|
|
this->LocalGenerator->CreateCDCommand
|
|
|
|
(commands1,
|
2015-04-16 21:06:54 +03:00
|
|
|
this->Makefile->GetCurrentBinaryDirectory(),
|
2008-10-09 23:30:07 +04:00
|
|
|
cmLocalGenerator::HOME_OUTPUT);
|
2007-10-18 17:38:34 +04:00
|
|
|
commands.insert(commands.end(), commands1.begin(), commands1.end());
|
|
|
|
commands1.clear();
|
|
|
|
}
|
2006-02-16 23:19:00 +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:19:00 +03:00
|
|
|
this->LocalGenerator
|
2009-02-10 16:50:33 +03:00
|
|
|
->AppendCustomCommands(commands, this->Target->GetPreLinkCommands(),
|
|
|
|
this->Target);
|
2006-02-16 23:19:00 +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-06-16 00:17:11 +04: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";
|
2014-03-11 03:04:11 +04:00
|
|
|
if(this->Makefile->IsOn(responseVar))
|
2008-02-28 01:10:45 +03:00
|
|
|
{
|
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";
|
2014-03-11 03:04:11 +04:00
|
|
|
if(this->Makefile->IsOn(responseVar))
|
2014-03-04 22:25:42 +04:00
|
|
|
{
|
|
|
|
useResponseFileForLibs = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-01-30 04:46:25 +03:00
|
|
|
// For static libraries there might be archiving rules.
|
2008-08-04 19:37:19 +04:00
|
|
|
bool haveStaticLibraryRule = false;
|
2008-01-30 04:46:25 +03:00
|
|
|
std::vector<std::string> archiveCreateCommands;
|
|
|
|
std::vector<std::string> archiveAppendCommands;
|
|
|
|
std::vector<std::string> archiveFinishCommands;
|
|
|
|
std::string::size_type archiveCommandLimit = std::string::npos;
|
2008-01-30 05:16:49 +03:00
|
|
|
if(this->Target->GetType() == cmTarget::STATIC_LIBRARY)
|
2008-01-30 04:46:25 +03:00
|
|
|
{
|
2008-08-04 19:37:19 +04:00
|
|
|
haveStaticLibraryRule =
|
|
|
|
this->Makefile->GetDefinition(linkRuleVar)? true:false;
|
2008-01-30 04:46:25 +03:00
|
|
|
std::string arCreateVar = "CMAKE_";
|
|
|
|
arCreateVar += linkLanguage;
|
|
|
|
arCreateVar += "_ARCHIVE_CREATE";
|
2014-03-11 03:04:11 +04:00
|
|
|
if(const char* rule = this->Makefile->GetDefinition(arCreateVar))
|
2008-01-30 04:46:25 +03:00
|
|
|
{
|
|
|
|
cmSystemTools::ExpandListArgument(rule, archiveCreateCommands);
|
|
|
|
}
|
|
|
|
std::string arAppendVar = "CMAKE_";
|
|
|
|
arAppendVar += linkLanguage;
|
|
|
|
arAppendVar += "_ARCHIVE_APPEND";
|
2014-03-11 03:04:11 +04:00
|
|
|
if(const char* rule = this->Makefile->GetDefinition(arAppendVar))
|
2008-01-30 04:46:25 +03:00
|
|
|
{
|
|
|
|
cmSystemTools::ExpandListArgument(rule, archiveAppendCommands);
|
|
|
|
}
|
|
|
|
std::string arFinishVar = "CMAKE_";
|
|
|
|
arFinishVar += linkLanguage;
|
|
|
|
arFinishVar += "_ARCHIVE_FINISH";
|
2014-03-11 03:04:11 +04:00
|
|
|
if(const char* rule = this->Makefile->GetDefinition(arFinishVar))
|
2008-01-30 04:46:25 +03:00
|
|
|
{
|
|
|
|
cmSystemTools::ExpandListArgument(rule, archiveFinishCommands);
|
|
|
|
}
|
2008-01-30 05:16:49 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Decide whether to use archiving rules.
|
|
|
|
bool useArchiveRules =
|
2008-08-04 19:37:19 +04:00
|
|
|
!haveStaticLibraryRule &&
|
2008-01-30 05:16:49 +03:00
|
|
|
!archiveCreateCommands.empty() && !archiveAppendCommands.empty();
|
|
|
|
if(useArchiveRules)
|
|
|
|
{
|
|
|
|
// Archiving rules are always run with a link script.
|
|
|
|
useLinkScript = true;
|
2008-01-30 04:46:25 +03:00
|
|
|
|
2008-02-28 01:10:45 +03:00
|
|
|
// Archiving rules never use a response file.
|
2014-03-04 22:21:15 +04:00
|
|
|
useResponseFileForObjects = false;
|
2008-02-28 01:10:45 +03:00
|
|
|
|
2008-01-30 04:46:25 +03:00
|
|
|
// Limit the length of individual object lists to less than the
|
|
|
|
// 32K command line length limit on Windows. We could make this a
|
|
|
|
// platform file variable but this should work everywhere.
|
|
|
|
archiveCommandLimit = 30000;
|
|
|
|
}
|
2006-02-14 18:36:04 +03:00
|
|
|
|
2007-12-28 22:59:06 +03:00
|
|
|
// Expand the rule variables.
|
2008-01-30 04:46:25 +03:00
|
|
|
std::vector<std::string> real_link_commands;
|
2007-12-28 22:59:06 +03:00
|
|
|
{
|
2014-04-05 01:06:13 +04:00
|
|
|
bool useWatcomQuote = this->Makefile->IsOn(linkRuleVar+"_USE_WATCOM_QUOTE");
|
|
|
|
|
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;
|
2008-02-08 00:49:11 +03:00
|
|
|
if(this->Target->GetType() != cmTarget::STATIC_LIBRARY)
|
|
|
|
{
|
2014-04-05 01:06:13 +04:00
|
|
|
this->CreateLinkLibs(linkLibs, relink, useResponseFileForLibs, depends,
|
|
|
|
useWatcomQuote);
|
2008-02-08 00:49:11 +03:00
|
|
|
}
|
2006-02-14 18:36:04 +03:00
|
|
|
|
|
|
|
// Construct object file lists that may be needed to expand the
|
|
|
|
// rule.
|
2006-06-16 00:17:11 +04:00
|
|
|
std::string buildObjs;
|
2014-03-04 22:21:15 +04:00
|
|
|
this->CreateObjectLists(useLinkScript, useArchiveRules,
|
2014-03-25 10:17:45 +04:00
|
|
|
useResponseFileForObjects, buildObjs, depends,
|
|
|
|
useWatcomQuote);
|
2008-10-15 18:21:14 +04:00
|
|
|
|
2015-06-19 23:12:43 +03:00
|
|
|
// maybe create .def file from list of objects
|
|
|
|
if (this->Target->GetType() == cmTarget::SHARED_LIBRARY &&
|
|
|
|
this->Makefile->IsOn("CMAKE_SUPPORT_WINDOWS_EXPORT_ALL_SYMBOLS"))
|
|
|
|
{
|
|
|
|
if(this->Target->GetPropertyAsBool("WINDOWS_EXPORT_ALL_SYMBOLS"))
|
|
|
|
{
|
|
|
|
std::string name_of_def_file =
|
|
|
|
this->Target->GetSupportDirectory();
|
|
|
|
name_of_def_file += std::string("/") +
|
|
|
|
this->Target->GetName();
|
|
|
|
name_of_def_file += ".def";
|
|
|
|
std::string cmd = cmSystemTools::GetCMakeCommand();
|
|
|
|
cmd = this->Convert(cmd, cmLocalGenerator::NONE,
|
|
|
|
cmLocalGenerator::SHELL);
|
|
|
|
cmd += " -E __create_def ";
|
|
|
|
cmd += this->Convert(name_of_def_file,
|
|
|
|
cmLocalGenerator::START_OUTPUT,
|
|
|
|
cmLocalGenerator::SHELL);
|
|
|
|
cmd += " ";
|
|
|
|
std::string objlist_file = name_of_def_file;
|
|
|
|
objlist_file += ".objs";
|
|
|
|
cmd += this->Convert(objlist_file,
|
|
|
|
cmLocalGenerator::START_OUTPUT,
|
|
|
|
cmLocalGenerator::SHELL);
|
|
|
|
real_link_commands.push_back(cmd);
|
|
|
|
// create a list of obj files for the -E __create_def to read
|
|
|
|
cmGeneratedFileStream fout(objlist_file.c_str());
|
|
|
|
for(std::vector<std::string>::const_iterator i = this->Objects.begin();
|
|
|
|
i != this->Objects.end(); ++i)
|
|
|
|
{
|
|
|
|
if(cmHasLiteralSuffix(*i, ".obj"))
|
|
|
|
{
|
|
|
|
fout << *i << "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for(std::vector<std::string>::const_iterator i =
|
|
|
|
this->ExternalObjects.begin();
|
|
|
|
i != this->ExternalObjects.end(); ++i)
|
|
|
|
{
|
|
|
|
fout << *i << "\n";
|
|
|
|
}
|
|
|
|
// now add the def file link flag
|
|
|
|
linkFlags += " ";
|
|
|
|
linkFlags +=
|
|
|
|
this->Makefile->GetSafeDefinition("CMAKE_LINK_DEF_FILE_FLAG");
|
|
|
|
linkFlags += this->Convert(name_of_def_file,
|
|
|
|
cmLocalGenerator::START_OUTPUT,
|
|
|
|
cmLocalGenerator::SHELL);
|
|
|
|
linkFlags += " ";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-02-20 21:42:18 +03:00
|
|
|
cmLocalGenerator::RuleVariables vars;
|
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;
|
|
|
|
{
|
2015-01-05 22:31:31 +03:00
|
|
|
std::ostringstream majorStream;
|
|
|
|
std::ostringstream minorStream;
|
2006-10-17 02:17:14 +04:00
|
|
|
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();
|
|
|
|
|
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();
|
2014-03-11 03:04:11 +04:00
|
|
|
objectDir = this->Convert(objectDir,
|
2013-12-23 18:41:45 +04:00
|
|
|
cmLocalGenerator::START_OUTPUT,
|
|
|
|
cmLocalGenerator::SHELL);
|
|
|
|
vars.ObjectDir = objectDir.c_str();
|
2014-04-05 01:06:13 +04:00
|
|
|
cmLocalGenerator::OutputFormat output = (useWatcomQuote) ?
|
|
|
|
cmLocalGenerator::WATCOMQUOTE : cmLocalGenerator::SHELL;
|
|
|
|
std::string target = this->Convert(targetFullPathReal,
|
|
|
|
cmLocalGenerator::START_OUTPUT,
|
|
|
|
output);
|
|
|
|
vars.Target = target.c_str();
|
2012-09-26 16:38:15 +04:00
|
|
|
vars.LinkLibraries = linkLibs.c_str();
|
2006-02-20 21:42:18 +03:00
|
|
|
vars.ObjectsQuoted = buildObjs.c_str();
|
2012-04-22 17:42:55 +04:00
|
|
|
if (this->Target->HasSOName(this->ConfigName))
|
|
|
|
{
|
|
|
|
vars.SONameFlag = this->Makefile->GetSONameFlag(linkLanguage);
|
|
|
|
vars.TargetSOName= targetNameSO.c_str();
|
|
|
|
}
|
2006-02-20 21:42:18 +03:00
|
|
|
vars.LinkFlags = linkFlags.c_str();
|
2006-02-24 21:13:14 +03:00
|
|
|
|
|
|
|
// Compute the directory portion of the install_name setting.
|
|
|
|
std::string install_name_dir;
|
|
|
|
if(this->Target->GetType() == cmTarget::SHARED_LIBRARY)
|
|
|
|
{
|
2006-10-11 20:41:20 +04:00
|
|
|
// Get the install_name directory for the build tree.
|
2009-07-03 16:41:10 +04:00
|
|
|
install_name_dir =
|
|
|
|
this->Target->GetInstallNameDirForBuildTree(this->ConfigName);
|
2006-02-24 21:13:14 +03:00
|
|
|
|
|
|
|
// Set the rule variable replacement value.
|
|
|
|
if(install_name_dir.empty())
|
|
|
|
{
|
|
|
|
vars.TargetInstallNameDir = "";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Convert to a path for the native build tool.
|
|
|
|
install_name_dir =
|
2014-03-11 03:04:11 +04:00
|
|
|
this->LocalGenerator->Convert(install_name_dir,
|
2006-10-11 20:41:20 +04:00
|
|
|
cmLocalGenerator::NONE,
|
2015-05-18 05:54:27 +03:00
|
|
|
cmLocalGenerator::SHELL);
|
2006-02-24 21:13:14 +03:00
|
|
|
vars.TargetInstallNameDir = install_name_dir.c_str();
|
|
|
|
}
|
|
|
|
}
|
2009-10-02 21:51:49 +04:00
|
|
|
|
|
|
|
// Add language feature flags.
|
2006-03-06 23:14:23 +03:00
|
|
|
std::string langFlags;
|
2009-10-02 21:51:49 +04:00
|
|
|
this->AddFeatureFlags(langFlags, linkLanguage);
|
|
|
|
|
2012-09-16 03:16:43 +04:00
|
|
|
this->LocalGenerator->AddArchitectureFlags(langFlags, this->GeneratorTarget,
|
2009-10-23 16:02:24 +04:00
|
|
|
linkLanguage, this->ConfigName);
|
2009-10-21 21:00:49 +04:00
|
|
|
|
2006-03-14 22:03:16 +03:00
|
|
|
// remove any language flags that might not work with the
|
|
|
|
// particular os
|
|
|
|
if(forbiddenFlagVar)
|
|
|
|
{
|
|
|
|
this->RemoveForbiddenFlags(forbiddenFlagVar,
|
|
|
|
linkLanguage, langFlags);
|
|
|
|
}
|
2006-03-06 23:14:23 +03:00
|
|
|
vars.LanguageCompileFlags = langFlags.c_str();
|
2008-01-30 04:46:25 +03:00
|
|
|
|
|
|
|
// Construct the main link rule and expand placeholders.
|
2006-03-15 19:02:08 +03:00
|
|
|
this->LocalGenerator->TargetImplib = targetOutPathImport;
|
2008-01-30 04:46:25 +03:00
|
|
|
if(useArchiveRules)
|
|
|
|
{
|
|
|
|
// Construct the individual object list strings.
|
|
|
|
std::vector<std::string> object_strings;
|
|
|
|
this->WriteObjectsStrings(object_strings, archiveCommandLimit);
|
|
|
|
|
|
|
|
// Create the archive with the first set of objects.
|
|
|
|
std::vector<std::string>::iterator osi = object_strings.begin();
|
2006-06-16 00:17:11 +04:00
|
|
|
{
|
2008-01-30 04:46:25 +03:00
|
|
|
vars.Objects = osi->c_str();
|
|
|
|
for(std::vector<std::string>::const_iterator
|
|
|
|
i = archiveCreateCommands.begin();
|
|
|
|
i != archiveCreateCommands.end(); ++i)
|
|
|
|
{
|
|
|
|
std::string cmd = *i;
|
|
|
|
this->LocalGenerator->ExpandRuleVariables(cmd, vars);
|
|
|
|
real_link_commands.push_back(cmd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Append to the archive with the other object sets.
|
|
|
|
for(++osi; osi != object_strings.end(); ++osi)
|
|
|
|
{
|
|
|
|
vars.Objects = osi->c_str();
|
|
|
|
for(std::vector<std::string>::const_iterator
|
|
|
|
i = archiveAppendCommands.begin();
|
|
|
|
i != archiveAppendCommands.end(); ++i)
|
|
|
|
{
|
|
|
|
std::string cmd = *i;
|
|
|
|
this->LocalGenerator->ExpandRuleVariables(cmd, vars);
|
|
|
|
real_link_commands.push_back(cmd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Finish the archive.
|
|
|
|
vars.Objects = "";
|
|
|
|
for(std::vector<std::string>::const_iterator
|
|
|
|
i = archiveFinishCommands.begin();
|
|
|
|
i != archiveFinishCommands.end(); ++i)
|
|
|
|
{
|
|
|
|
std::string cmd = *i;
|
|
|
|
this->LocalGenerator->ExpandRuleVariables(cmd, vars);
|
|
|
|
real_link_commands.push_back(cmd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Get the set of commands.
|
2011-12-06 01:28:03 +04:00
|
|
|
std::string linkRule = this->GetLinkRule(linkRuleVar);
|
2008-01-30 04:46:25 +03:00
|
|
|
cmSystemTools::ExpandListArgument(linkRule, real_link_commands);
|
|
|
|
|
|
|
|
// Expand placeholders.
|
|
|
|
for(std::vector<std::string>::iterator i = real_link_commands.begin();
|
|
|
|
i != real_link_commands.end(); ++i)
|
|
|
|
{
|
|
|
|
this->LocalGenerator->ExpandRuleVariables(*i, vars);
|
|
|
|
}
|
2006-02-14 18:36:04 +03:00
|
|
|
}
|
2006-03-15 19:02:08 +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
|
|
|
}
|
2006-02-14 18:36:04 +03:00
|
|
|
|
2006-06-16 00:17:11 +04:00
|
|
|
// Optionally convert the build rule to use a script to avoid long
|
|
|
|
// command lines in the make shell.
|
|
|
|
if(useLinkScript)
|
|
|
|
{
|
2007-12-28 22:59:06 +03:00
|
|
|
// 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,
|
2015-04-16 21:06:54 +03:00
|
|
|
this->Makefile->GetCurrentBinaryDirectory(),
|
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.
|
2013-05-06 06:19:05 +04:00
|
|
|
// Frameworks are handled by cmOSXBundleGenerator.
|
|
|
|
if(targetOutPath != targetOutPathReal && !this->Target->IsFrameworkOnApple())
|
2007-12-28 22:59:06 +03:00
|
|
|
{
|
|
|
|
std::string symlink = "$(CMAKE_COMMAND) -E cmake_symlink_library ";
|
|
|
|
symlink += targetOutPathReal;
|
|
|
|
symlink += " ";
|
|
|
|
symlink += targetOutPathSO;
|
|
|
|
symlink += " ";
|
|
|
|
symlink += targetOutPath;
|
|
|
|
commands1.push_back(symlink);
|
|
|
|
this->LocalGenerator->CreateCDCommand(commands1,
|
2015-04-16 21:06:54 +03:00
|
|
|
this->Makefile->GetCurrentBinaryDirectory(),
|
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);
|
2006-06-16 00:17:11 +04:00
|
|
|
}
|
|
|
|
|
2014-12-05 17:55:49 +03:00
|
|
|
// Compute the list of outputs.
|
|
|
|
std::vector<std::string> outputs(1, targetFullPathReal);
|
2007-03-09 19:29:15 +03:00
|
|
|
if(targetNameSO != targetNameReal)
|
2006-02-14 18:36:04 +03:00
|
|
|
{
|
2014-12-05 17:55:49 +03:00
|
|
|
outputs.push_back(targetFullPathSO);
|
2006-02-14 18:36:04 +03:00
|
|
|
}
|
2007-03-09 19:29:15 +03:00
|
|
|
if(targetName != targetNameSO &&
|
|
|
|
targetName != targetNameReal)
|
2006-02-14 18:36:04 +03:00
|
|
|
{
|
2014-12-05 17:55:49 +03:00
|
|
|
outputs.push_back(targetFullPath);
|
2006-02-14 18:36:04 +03:00
|
|
|
}
|
|
|
|
|
2014-12-05 17:55:49 +03:00
|
|
|
// Write the build rule.
|
2015-03-06 22:35:28 +03:00
|
|
|
this->WriteMakeRule(*this->BuildFileStream, 0, outputs,
|
|
|
|
depends, commands, false);
|
2014-12-05 17:55:49 +03:00
|
|
|
|
2006-06-01 19:45:51 +04:00
|
|
|
// Write the main driver rule to build everything in this target.
|
2014-03-11 03:04:11 +04:00
|
|
|
this->WriteTargetDriverRule(targetFullPath, relink);
|
2006-02-14 18:36:04 +03:00
|
|
|
|
2007-08-02 17:37:10 +04:00
|
|
|
// Clean all the possible library names and symlinks.
|
2006-02-14 18:36:04 +03:00
|
|
|
this->CleanFiles.insert(this->CleanFiles.end(),
|
2007-08-02 17:37:10 +04:00
|
|
|
libCleanFiles.begin(),libCleanFiles.end());
|
2006-02-14 18:36:04 +03:00
|
|
|
}
|
2008-07-09 18:09:46 +04:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmMakefileLibraryTargetGenerator
|
2014-02-04 06:20:56 +04:00
|
|
|
::AppendOSXVerFlag(std::string& flags, const std::string& lang,
|
2008-07-09 18:09:46 +04:00
|
|
|
const char* name, bool so)
|
|
|
|
{
|
|
|
|
// Lookup the flag to specify the version.
|
|
|
|
std::string fvar = "CMAKE_";
|
|
|
|
fvar += lang;
|
|
|
|
fvar += "_OSX_";
|
|
|
|
fvar += name;
|
|
|
|
fvar += "_VERSION_FLAG";
|
2014-03-11 03:04:11 +04:00
|
|
|
const char* flag = this->Makefile->GetDefinition(fvar);
|
2008-07-09 18:09:46 +04:00
|
|
|
|
|
|
|
// Skip if no such flag.
|
|
|
|
if(!flag)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lookup the target version information.
|
|
|
|
int major;
|
|
|
|
int minor;
|
|
|
|
int patch;
|
|
|
|
this->Target->GetTargetVersion(so, major, minor, patch);
|
|
|
|
if(major > 0 || minor > 0 || patch > 0)
|
|
|
|
{
|
|
|
|
// Append the flag since a non-zero version is specified.
|
2015-01-05 22:31:31 +03:00
|
|
|
std::ostringstream vflag;
|
2008-07-09 18:09:46 +04:00
|
|
|
vflag << flag << major << "." << minor << "." << patch;
|
2014-05-02 00:07:26 +04:00
|
|
|
this->LocalGenerator->AppendFlags(flags, vflag.str());
|
2008-07-09 18:09:46 +04:00
|
|
|
}
|
|
|
|
}
|