This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
Re: gcc-4.3.3 with MIPS generate relocation type 0x7f (127) which is unknown
- From: Ian Lance Taylor <iant at google dot com>
- To: naveen yadav <yad dot naveen at gmail dot com>
- Cc: gcc-help at gcc dot gnu dot org
- Date: Wed, 30 Sep 2009 23:20:08 -0700
- Subject: Re: gcc-4.3.3 with MIPS generate relocation type 0x7f (127) which is unknown
- References: <9bde694e0909302301u5893c677n58abc5f263231181@mail.gmail.com>
naveen yadav <yad.naveen@gmail.com> writes:
> I am using prelink-0.0.20090311 for MIPS with gcc 4.3.3.
> mips-4.3 toochain generates .rel.plt section that has entries with
> relocation type 0x7f (127) which is unknown.
The mailing list is gcc-help@gcc.gnu.org, no need to send e-mail to
gcc-help@gnu.org.
0x7f (127) is a R_MIPS_JUMP_SLOT relocation used to support non-PIC
executables of MIPS targets. See
http://sourceware.org/ml/binutils/2008-07/msg00008.html .
Somebody is going to have to update prelink to handle this, assuming
it hasn't been done already.
Ian