x86-64 push / jmp / mov of undefined label results in bad relocation for position-independent code

Jan Beulich JBeulich@suse.com
Tue Aug 22 11:42:00 GMT 2017


>>> On 22.08.17 at 13:25, <bruno.loff@gmail.com> wrote:
> When compiling an x86-64 assembly file which contains a `push`, `jmp`
> or `mov` instruction having an undefined label as an operand, `as`
> generates a relocation of type `R_X86_64_32S`, which is only 32bit
> long, i.e., it is too short for position-independent code (since such
> code might be loaded onto a position outside the 32-bit address
> space).

Of course. All three named mnemonics have only 32-bit immediate
operands, so a wider relocation cannot possibly be used with them.
You'll need to go through a register, using movabs or lea to load
the intended value into it.

Jan



More information about the Binutils mailing list