From 887aa20116b9c99bc87b296ab5d3d212af8ba372 Mon Sep 17 00:00:00 2001 From: John Reiser Date: Tue, 13 Nov 2007 11:09:15 -0800 Subject: [PATCH] ElfLinkerMipsBE is big endian --- src/linker.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/linker.h b/src/linker.h index 41d03011..09734c79 100644 --- a/src/linker.h +++ b/src/linker.h @@ -198,6 +198,8 @@ protected: class ElfLinkerMipsBE : public ElfLinker { typedef ElfLinker super; +public: + ElfLinkerMipsBE() { bele = &N_BELE_RTP::be_policy; } protected: virtual void relocate1(const Relocation *, upx_byte *location, unsigned value, const char *type);