https://sourceware.org/bugzilla/show_bug.cgi?id=17081



--- Comment #3 from Rafael Ávila de Espíndola <rafael.espindola a
t gmail dot com> ---

This reduces to a trivial link time problem:



$ cat start.s 

 .globl _start

 .type _start,#function

_start:

 bl __rel_iplt_start



.globl my_memcpy

my_memcpy:

 .type my_memcpy, #gnu_indirect_function

 bx lr



$ llvm-mc -triple=armv7-linux-gnueabihf start.s -o start.o -filetype=obj

$ ld.gold -Bstatic start.o -o t



Looks like gold in not creating __rel_iplt_start but bfd ld is.



-- 

You are receiving this mail because:

You are on the CC list for the bug.

_______________________________________________
bug-binutils mailing list
bug-binutils@gnu.org
https://lists.gnu.org/mailman/listinfo/bug-binutils

Reply via email to