diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-10-17 23:45:21 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-10-17 23:45:21 -0400 |
commit | ef2f595f7489a79b328766e3f8c2c899c8d23fd1 (patch) | |
tree | 2b974c102e8444927e5fa3a343e5df04045fe754 /src/ldso/microblaze/dlsym.s | |
parent | 858df113bfac4d2ebb60c3fac1538e07d56096b0 (diff) | |
download | musl-ef2f595f7489a79b328766e3f8c2c899c8d23fd1.tar.gz musl-ef2f595f7489a79b328766e3f8c2c899c8d23fd1.tar.bz2 musl-ef2f595f7489a79b328766e3f8c2c899c8d23fd1.tar.xz musl-ef2f595f7489a79b328766e3f8c2c899c8d23fd1.zip |
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.
Diffstat (limited to 'src/ldso/microblaze/dlsym.s')
-rw-r--r-- | src/ldso/microblaze/dlsym.s | 2 |
1 files changed, 1 insertions, 1 deletions
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 |