From ef2f595f7489a79b328766e3f8c2c899c8d23fd1 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Wed, 17 Oct 2012 23:45:21 -0400 Subject: fix microblaze asm relocations for shared libc only @PLT relocations are considered functions for purposes of -Bsymbolic-functions, so always use @PLT. it should not hurt in the static-linked case. --- src/ldso/microblaze/dlsym.s | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ldso/microblaze/dlsym.s') diff --git a/src/ldso/microblaze/dlsym.s b/src/ldso/microblaze/dlsym.s index 2044e2df..63cd638b 100644 --- a/src/ldso/microblaze/dlsym.s +++ b/src/ldso/microblaze/dlsym.s @@ -1,5 +1,5 @@ .global dlsym .type dlsym,@function dlsym: - brid __dlsym + brid __dlsym@PLT add r7, r15, r0 -- cgit v1.2.1