MCPcopy Create free account
hub / github.com/Kitware/CMake / GetAIXExports

Method GetAIXExports

Source/cmCommonTargetGenerator.cxx:291–303  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

289}
290
291std::string cmCommonTargetGenerator::GetAIXExports(std::string const&)
292{
293 std::string aixExports;
294 if (this->GeneratorTarget->IsAIX()) {
295 if (cmValue exportAll =
296 this->GeneratorTarget->GetProperty("AIX_EXPORT_ALL_SYMBOLS")) {
297 if (exportAll.IsOff()) {
298 aixExports = "-n";
299 }
300 }
301 }
302 return aixExports;
303}
304
305void cmCommonTargetGenerator::AppendOSXVerFlag(std::string& flags,
306 std::string const& lang,

Callers 3

WriteExecutableRuleMethod · 0.80
WriteLibraryRulesMethod · 0.80
WriteLinkStatementMethod · 0.80

Calls 3

IsAIXMethod · 0.45
GetPropertyMethod · 0.45
IsOffMethod · 0.45

Tested by

no test coverage detected