123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232 |
- /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
- file Copyright.txt or https://cmake.org/licensing for details. */
- #include "cmCommonTargetGenerator.h"
- #include <cmConfigure.h>
- #include <set>
- #include <sstream>
- #include <utility>
- #include "cmAlgorithms.h"
- #include "cmComputeLinkInformation.h"
- #include "cmGeneratorTarget.h"
- #include "cmGlobalCommonGenerator.h"
- #include "cmLinkLineComputer.h"
- #include "cmLocalCommonGenerator.h"
- #include "cmLocalGenerator.h"
- #include "cmMakefile.h"
- #include "cmOutputConverter.h"
- #include "cmSourceFile.h"
- #include "cmStateTypes.h"
- cmCommonTargetGenerator::cmCommonTargetGenerator(cmGeneratorTarget* gt)
- : GeneratorTarget(gt)
- , Makefile(gt->Makefile)
- , LocalGenerator(static_cast<cmLocalCommonGenerator*>(gt->LocalGenerator))
- , GlobalGenerator(static_cast<cmGlobalCommonGenerator*>(
- gt->LocalGenerator->GetGlobalGenerator()))
- , ConfigName(LocalGenerator->GetConfigName())
- , ModuleDefinitionFile(GeneratorTarget->GetModuleDefinitionFile(ConfigName))
- {
- }
- cmCommonTargetGenerator::~cmCommonTargetGenerator()
- {
- }
- std::string const& cmCommonTargetGenerator::GetConfigName() const
- {
- return this->ConfigName;
- }
- const char* cmCommonTargetGenerator::GetFeature(const std::string& feature)
- {
- return this->GeneratorTarget->GetFeature(feature, this->ConfigName);
- }
- bool cmCommonTargetGenerator::GetFeatureAsBool(const std::string& feature)
- {
- return this->GeneratorTarget->GetFeatureAsBool(feature, this->ConfigName);
- }
- void cmCommonTargetGenerator::AddFeatureFlags(std::string& flags,
- const std::string& lang)
- {
- // Add language-specific flags.
- this->LocalGenerator->AddLanguageFlags(flags, lang, this->ConfigName);
- if (this->GetFeatureAsBool("INTERPROCEDURAL_OPTIMIZATION")) {
- this->LocalGenerator->AppendFeatureOptions(flags, lang, "IPO");
- }
- }
- void cmCommonTargetGenerator::AddModuleDefinitionFlag(
- cmLinkLineComputer* linkLineComputer, std::string& flags)
- {
- if (!this->ModuleDefinitionFile) {
- return;
- }
- // TODO: Create a per-language flag variable.
- const char* defFileFlag =
- this->Makefile->GetDefinition("CMAKE_LINK_DEF_FILE_FLAG");
- if (!defFileFlag) {
- return;
- }
- // Append the flag and value. Use ConvertToLinkReference to help
- // vs6's "cl -link" pass it to the linker.
- std::string flag = defFileFlag;
- flag += this->LocalGenerator->ConvertToOutputFormat(
- linkLineComputer->ConvertToLinkReference(
- this->ModuleDefinitionFile->GetFullPath()),
- cmOutputConverter::SHELL);
- this->LocalGenerator->AppendFlags(flags, flag);
- }
- void cmCommonTargetGenerator::AppendFortranFormatFlags(
- std::string& flags, cmSourceFile const& source)
- {
- const char* srcfmt = source.GetProperty("Fortran_FORMAT");
- cmOutputConverter::FortranFormat format =
- cmOutputConverter::GetFortranFormat(srcfmt);
- if (format == cmOutputConverter::FortranFormatNone) {
- const char* tgtfmt = this->GeneratorTarget->GetProperty("Fortran_FORMAT");
- format = cmOutputConverter::GetFortranFormat(tgtfmt);
- }
- const char* var = CM_NULLPTR;
- switch (format) {
- case cmOutputConverter::FortranFormatFixed:
- var = "CMAKE_Fortran_FORMAT_FIXED_FLAG";
- break;
- case cmOutputConverter::FortranFormatFree:
- var = "CMAKE_Fortran_FORMAT_FREE_FLAG";
- break;
- default:
- break;
- }
- if (var) {
- this->LocalGenerator->AppendFlags(flags,
- this->Makefile->GetDefinition(var));
- }
- }
- std::string cmCommonTargetGenerator::GetFlags(const std::string& l)
- {
- ByLanguageMap::iterator i = this->FlagsByLanguage.find(l);
- if (i == this->FlagsByLanguage.end()) {
- std::string flags;
- this->LocalGenerator->GetTargetCompileFlags(this->GeneratorTarget,
- this->ConfigName, l, flags);
- ByLanguageMap::value_type entry(l, flags);
- i = this->FlagsByLanguage.insert(entry).first;
- }
- return i->second;
- }
- std::string cmCommonTargetGenerator::GetDefines(const std::string& l)
- {
- ByLanguageMap::iterator i = this->DefinesByLanguage.find(l);
- if (i == this->DefinesByLanguage.end()) {
- std::set<std::string> defines;
- this->LocalGenerator->GetTargetDefines(this->GeneratorTarget,
- this->ConfigName, l, defines);
- std::string definesString;
- this->LocalGenerator->JoinDefines(defines, definesString, l);
- ByLanguageMap::value_type entry(l, definesString);
- i = this->DefinesByLanguage.insert(entry).first;
- }
- return i->second;
- }
- std::string cmCommonTargetGenerator::GetIncludes(std::string const& l)
- {
- ByLanguageMap::iterator i = this->IncludesByLanguage.find(l);
- if (i == this->IncludesByLanguage.end()) {
- std::string includes;
- this->AddIncludeFlags(includes, l);
- ByLanguageMap::value_type entry(l, includes);
- i = this->IncludesByLanguage.insert(entry).first;
- }
- return i->second;
- }
- std::vector<std::string> cmCommonTargetGenerator::GetLinkedTargetDirectories()
- const
- {
- std::vector<std::string> dirs;
- std::set<cmGeneratorTarget const*> emitted;
- if (cmComputeLinkInformation* cli =
- this->GeneratorTarget->GetLinkInformation(this->ConfigName)) {
- cmComputeLinkInformation::ItemVector const& items = cli->GetItems();
- for (cmComputeLinkInformation::ItemVector::const_iterator i =
- items.begin();
- i != items.end(); ++i) {
- cmGeneratorTarget const* linkee = i->Target;
- if (linkee && !linkee->IsImported()
- // We can ignore the INTERFACE_LIBRARY items because
- // Target->GetLinkInformation already processed their
- // link interface and they don't have any output themselves.
- && linkee->GetType() != cmStateEnums::INTERFACE_LIBRARY &&
- emitted.insert(linkee).second) {
- cmLocalGenerator* lg = linkee->GetLocalGenerator();
- std::string di = lg->GetCurrentBinaryDirectory();
- di += "/";
- di += lg->GetTargetDirectory(linkee);
- dirs.push_back(di);
- }
- }
- }
- return dirs;
- }
- std::string cmCommonTargetGenerator::GetManifests()
- {
- std::vector<cmSourceFile const*> manifest_srcs;
- this->GeneratorTarget->GetManifests(manifest_srcs, this->ConfigName);
- std::vector<std::string> manifests;
- for (std::vector<cmSourceFile const*>::iterator mi = manifest_srcs.begin();
- mi != manifest_srcs.end(); ++mi) {
- manifests.push_back(this->LocalGenerator->ConvertToOutputFormat(
- this->LocalGenerator->ConvertToRelativePath(
- this->LocalGenerator->GetWorkingDirectory(), (*mi)->GetFullPath()),
- cmOutputConverter::SHELL));
- }
- return cmJoin(manifests, " ");
- }
- void cmCommonTargetGenerator::AppendOSXVerFlag(std::string& flags,
- const std::string& lang,
- 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";
- const char* flag = this->Makefile->GetDefinition(fvar);
- // Skip if no such flag.
- if (!flag) {
- return;
- }
- // Lookup the target version information.
- int major;
- int minor;
- int patch;
- this->GeneratorTarget->GetTargetVersion(so, major, minor, patch);
- if (major > 0 || minor > 0 || patch > 0) {
- // Append the flag since a non-zero version is specified.
- std::ostringstream vflag;
- vflag << flag << major << "." << minor << "." << patch;
- this->LocalGenerator->AppendFlags(flags, vflag.str());
- }
- }
|