Files
CMake/Source/cmLocalGhsMultiGenerator.cxx
Brad King 8832f78dd6 IWYU: Update for Debian 13 CI job
`include-what-you-use` diagnostics, in practice, are specific to
the environment's compiler and standard library.  Update includes
to satisfy IWYU for our CI job under Debian 13.  Some patterns:

* Types named in virtual `override` signatures no longer require
  includes since the overridden signature already names them.

* A function argument's type needs to be included even if its constructor
  is called only by implicit conversion.  For example, constructing a
  `std::function` from a lambda now requires `<functional>`.

* Some prior mysterious `<type_traits>` inclusions are no longer required.
2025-11-12 14:54:35 -05:00

104 lines
3.5 KiB
C++

/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file LICENSE.rst or https://cmake.org/licensing for details. */
#include "cmLocalGhsMultiGenerator.h"
#include <map>
#include <utility>
#include <vector>
#include <cm/optional>
#include "cmGeneratorTarget.h"
#include "cmGhsMultiTargetGenerator.h"
#include "cmGlobalGenerator.h"
#include "cmObjectLocation.h"
#include "cmSourceFile.h"
#include "cmStringAlgorithms.h"
#include "cmSystemTools.h"
cmLocalGhsMultiGenerator::cmLocalGhsMultiGenerator(cmGlobalGenerator* gg,
cmMakefile* mf)
: cmLocalGenerator(gg, mf)
{
}
cmLocalGhsMultiGenerator::~cmLocalGhsMultiGenerator() = default;
std::string cmLocalGhsMultiGenerator::GetTargetDirectory(
cmGeneratorTarget const* target,
cmStateEnums::IntermediateDirKind /*kind*/) const
{
std::string dir = cmStrCat(target->GetName(), ".dir");
return dir;
}
void cmLocalGhsMultiGenerator::Generate()
{
for (cmGeneratorTarget* gt :
this->GlobalGenerator->GetLocalGeneratorTargetsInOrder(this)) {
if (!gt->IsInBuildSystem()) {
continue;
}
cmGhsMultiTargetGenerator tg(gt);
tg.Generate();
}
}
void cmLocalGhsMultiGenerator::ComputeObjectFilenames(
std::map<cmSourceFile const*, cmObjectLocations>& mapping,
std::string const& config, cmGeneratorTarget const* gt)
{
std::string dir_max = cmStrCat(gt->GetSupportDirectory(), '/');
// Count the number of object files with each name. Note that
// filesystem may not be case sensitive.
std::map<std::string, int> counts;
for (auto const& si : mapping) {
cmSourceFile const* sf = si.first;
std::string objectName;
auto customObjectName = this->GetCustomObjectFileName(*sf);
if (customObjectName.empty()) {
objectName =
cmSystemTools::GetFilenameWithoutLastExtension(sf->GetFullPath());
} else {
objectName = std::move(customObjectName);
}
objectName += this->GlobalGenerator->GetLanguageOutputExtension(*sf);
std::string objectNameLower = cmSystemTools::LowerCase(objectName);
counts[objectNameLower] += 1;
}
// For all source files producing duplicate names we need unique
// object name computation.
for (auto& si : mapping) {
cmSourceFile const* sf = si.first;
bool forceShortObjectName = true;
std::string shortObjectName = this->GetObjectFileNameWithoutTarget(
*sf, dir_max, nullptr, nullptr, &forceShortObjectName);
std::string longObjectName;
auto customObjectName = this->GetCustomObjectFileName(*sf);
if (customObjectName.empty()) {
longObjectName =
cmSystemTools::GetFilenameWithoutLastExtension(sf->GetFullPath());
} else {
longObjectName = std::move(customObjectName);
const_cast<cmGeneratorTarget*>(gt)->AddExplicitObjectName(sf);
}
longObjectName += this->GlobalGenerator->GetLanguageOutputExtension(*sf);
if (counts[cmSystemTools::LowerCase(longObjectName)] > 1) {
const_cast<cmGeneratorTarget*>(gt)->AddExplicitObjectName(sf);
forceShortObjectName = false;
longObjectName = this->GetObjectFileNameWithoutTarget(
*sf, dir_max, nullptr, nullptr, &forceShortObjectName);
cmsys::SystemTools::ReplaceString(longObjectName, "/", "_");
}
si.second.ShortLoc.emplace(shortObjectName);
si.second.LongLoc.Update(longObjectName);
this->FillCustomInstallObjectLocations(*sf, config, nullptr,
si.second.InstallLongLoc);
}
}