diff options
author | James Cowgill <james410@cowgill.org.uk> | 2016-10-05 16:20:58 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-10-07 12:30:00 (GMT) |
commit | cd4f573ae9f4ded1cb386698f90c7ccf1504f094 (patch) | |
tree | 641a8c896d58a332758f74efe051fda55e808282 /Source/cmELF.cxx | |
parent | b8b1d15186b33ec598b1126169856184805b3e6f (diff) | |
download | CMake-cd4f573ae9f4ded1cb386698f90c7ccf1504f094.zip CMake-cd4f573ae9f4ded1cb386698f90c7ccf1504f094.tar.gz CMake-cd4f573ae9f4ded1cb386698f90c7ccf1504f094.tar.bz2 |
cmSystemTools, elf: handle DT_MIPS_RLD_REL_MAP in RemoveRPath
Diffstat (limited to 'Source/cmELF.cxx')
-rw-r--r-- | Source/cmELF.cxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/cmELF.cxx b/Source/cmELF.cxx index bf0130a..6f2885c 100644 --- a/Source/cmELF.cxx +++ b/Source/cmELF.cxx @@ -700,6 +700,12 @@ cmELF::StringEntry const* cmELFInternalImpl<Types>::GetDynamicSectionString( const long cmELF::TagRPath = DT_RPATH; const long cmELF::TagRunPath = DT_RUNPATH; +#ifdef DT_MIPS_RLD_MAP_REL +const long cmELF::TagMipsRldMapRel = DT_MIPS_RLD_MAP_REL; +#else +const long cmELF::TagMipsRldMapRel = 0; +#endif + cmELF::cmELF(const char* fname) : Internal(CM_NULLPTR) { |