mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-23 14:48:19 -05:00
Merge topic 'file-rpath-elf-static'
02f3e5be6afile(RPATH_CHANGE ...): no-op for static binaryccbbf64552Tests/RunCMake/file-RPATH: Prepare to cover statically linked binaries Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !9623
This commit is contained in:
+9
-1
@@ -112,6 +112,9 @@ public:
|
||||
virtual bool IsMips() const = 0;
|
||||
virtual void PrintInfo(std::ostream& os) const = 0;
|
||||
|
||||
/** Returns true if the ELF file has a dynamic section **/
|
||||
bool HasDynamicSection() const { return this->DynamicSectionIndex >= 0; }
|
||||
|
||||
// Lookup the SONAME in the DYNAMIC section.
|
||||
StringEntry const* GetSOName()
|
||||
{
|
||||
@@ -461,7 +464,7 @@ template <class Types>
|
||||
bool cmELFInternalImpl<Types>::LoadDynamicSection()
|
||||
{
|
||||
// If there is no dynamic section we are done.
|
||||
if (this->DynamicSectionIndex < 0) {
|
||||
if (!this->HasDynamicSection()) {
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -772,6 +775,11 @@ std::vector<char> cmELF::EncodeDynamicEntries(
|
||||
return std::vector<char>();
|
||||
}
|
||||
|
||||
bool cmELF::HasDynamicSection() const
|
||||
{
|
||||
return this->Valid() && this->Internal->HasDynamicSection();
|
||||
}
|
||||
|
||||
bool cmELF::GetSOName(std::string& soname)
|
||||
{
|
||||
if (StringEntry const* se = this->GetSOName()) {
|
||||
|
||||
@@ -88,6 +88,9 @@ public:
|
||||
std::vector<char> EncodeDynamicEntries(
|
||||
const DynamicEntryList& entries) const;
|
||||
|
||||
/** Returns true if the ELF file has a dynamic section **/
|
||||
bool HasDynamicSection() const;
|
||||
|
||||
/** Get the SONAME field if any. */
|
||||
bool GetSOName(std::string& soname);
|
||||
StringEntry const* GetSOName();
|
||||
|
||||
@@ -2817,6 +2817,10 @@ cm::optional<bool> AdjustRPathELF(std::string const& file,
|
||||
return cm::nullopt; // Not a valid ELF file.
|
||||
}
|
||||
|
||||
if (!elf.HasDynamicSection()) {
|
||||
return true; // No dynamic section to update.
|
||||
}
|
||||
|
||||
// Get the RPATH and RUNPATH entries from it.
|
||||
int se_count = 0;
|
||||
cmELF::StringEntry const* se[2] = { nullptr, nullptr };
|
||||
|
||||
Reference in New Issue
Block a user