From: Mike Frysinger Date: Fri, 7 Aug 2015 05:43:08 +0000 (-0400) Subject: hppa: _dl_symbol_address: add missing hidden def X-Git-Tag: glibc-2.23~701 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=be144ba68c918a5d7bc964be06fbeb51a0df84fc;p=thirdparty%2Fglibc.git hppa: _dl_symbol_address: add missing hidden def Commit 2a6ad8142d14c998e6c5eb51418aac1f598b621e updated the headers and the common dl-symaddr.c, but missed that hppa has its own dedicated source file for this func. Update that too to fix build errors due to missing exports of the symbol. --- diff --git a/ChangeLog b/ChangeLog index 1994e448716..2f7b4095f00 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2015-08-07 Mike Frysinger + + * sysdeps/hppa/dl-symaddr.c (_dl_symbol_address): Add rtld_hidden_def. + 2015-08-07 Samuel Thibault Fix gcrt0.o compilation diff --git a/sysdeps/hppa/dl-symaddr.c b/sysdeps/hppa/dl-symaddr.c index b707c19e94b..89d8bafcd3f 100644 --- a/sysdeps/hppa/dl-symaddr.c +++ b/sysdeps/hppa/dl-symaddr.c @@ -33,3 +33,4 @@ _dl_symbol_address (struct link_map *map, const ElfW(Sym) *ref) else return (void *) value; } +rtld_hidden_def (_dl_symbol_address)