| 814 | } |
| 815 | |
| 816 | cmELF::StringEntry const* cmELF::GetRunPath() |
| 817 | { |
| 818 | if (this->Valid() && |
| 819 | (this->Internal->GetFileType() == cmELF::FileTypeExecutable || |
| 820 | this->Internal->GetFileType() == cmELF::FileTypeSharedLibrary)) { |
| 821 | return this->Internal->GetRunPath(); |
| 822 | } |
| 823 | return nullptr; |
| 824 | } |
| 825 | |
| 826 | bool cmELF::IsMIPS() const |
| 827 | { |
no test coverage detected