diff options
author | Rich Felker <dalias@aerifal.cx> | 2023-01-18 10:32:14 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2023-01-18 10:32:14 -0500 |
commit | f897461d4fe72bb71854a6d0662de83008caccb7 (patch) | |
tree | 32a00795b118694b618b9736ee44a9de98775d62 /src/internal | |
parent | a4b0a665b84c4a3117cca152fe28c204d23ece46 (diff) | |
download | musl-f897461d4fe72bb71854a6d0662de83008caccb7.tar.gz musl-f897461d4fe72bb71854a6d0662de83008caccb7.tar.bz2 musl-f897461d4fe72bb71854a6d0662de83008caccb7.tar.xz musl-f897461d4fe72bb71854a6d0662de83008caccb7.zip |
fix debugger tracking of shared libraries on mips with PIE main program
mips has its own mechanisms for DT_DEBUG because it makes _DYNAMIC
read-only, and the original mechanism, DT_MIPS_RLD_MAP, was
PIE-incompatible. DT_MIPS_RLD_MAP_REL was added to remedy this, but we
never implemented support for it. add it now using the same idioms for
mips-specific ldso logic.
Diffstat (limited to 'src/internal')
-rw-r--r-- | src/internal/dynlink.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/internal/dynlink.h b/src/internal/dynlink.h index 830354eb..06f41d09 100644 --- a/src/internal/dynlink.h +++ b/src/internal/dynlink.h @@ -92,6 +92,10 @@ struct fdpic_dummy_loadmap { #define DT_DEBUG_INDIRECT 0 #endif +#ifndef DT_DEBUG_INDIRECT_REL +#define DT_DEBUG_INDIRECT_REL 0 +#endif + #define AUX_CNT 32 #define DYN_CNT 37 |