summaryrefslogtreecommitdiff
path: root/arch/mips64/reloc.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/mips64/reloc.h')
-rw-r--r--arch/mips64/reloc.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/arch/mips64/reloc.h b/arch/mips64/reloc.h
index 5933147c..bbd9bd9d 100644
--- a/arch/mips64/reloc.h
+++ b/arch/mips64/reloc.h
@@ -4,6 +4,12 @@
#define _GNU_SOURCE
#include <endian.h>
+#if __mips_isa_rev >= 6
+#define ISA_SUFFIX "r6"
+#else
+#define ISA_SUFFIX ""
+#endif
+
#if __BYTE_ORDER == __LITTLE_ENDIAN
#define ENDIAN_SUFFIX "el"
#else
@@ -16,7 +22,7 @@
#define FP_SUFFIX ""
#endif
-#define LDSO_ARCH "mips64" ENDIAN_SUFFIX FP_SUFFIX
+#define LDSO_ARCH "mips64" ISA_SUFFIX ENDIAN_SUFFIX FP_SUFFIX
#define TPOFF_K (-0x7000)