diff options
author | Felix Fietkau <nbd@openwrt.org> | 2016-01-30 21:14:05 +0100 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2016-01-30 20:55:22 -0500 |
commit | c18d05f0e8909ec54252b251c441b5dd903268f8 (patch) | |
tree | fcd14fe46d4ffb07c89c698404392449c05ec120 /src | |
parent | 831e9d9efa61566a25c1dcdbd28f55daeea4dd32 (diff) | |
download | musl-c18d05f0e8909ec54252b251c441b5dd903268f8.tar.gz musl-c18d05f0e8909ec54252b251c441b5dd903268f8.tar.bz2 musl-c18d05f0e8909ec54252b251c441b5dd903268f8.tar.xz musl-c18d05f0e8909ec54252b251c441b5dd903268f8.zip |
ldso: fix GDB dynamic linker info on MIPS
GDB is looking for a pointer to the ldso debug info in the data of the
..rld_map section.
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Diffstat (limited to 'src')
-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 9c494e43..48890b2d 100644 --- a/src/internal/dynlink.h +++ b/src/internal/dynlink.h @@ -83,6 +83,10 @@ struct fdpic_dummy_loadmap { #define NEED_MIPS_GOT_RELOCS 0 #endif +#ifndef DT_DEBUG_INDIRECT +#define DT_DEBUG_INDIRECT 0 +#endif + #define AUX_CNT 32 #define DYN_CNT 32 |