This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH 08/58] Mark __dso_handle as hidden [BZ #18822]


On 09/03/2017 10:21 AM, Florian Weimer wrote:
> On 09/01/2017 07:59 PM, H.J. Lu wrote:
>> diff --git a/include/stdlib.h b/include/stdlib.h
>> index 2274790a2e..d0dcbf81c3 100644
>> --- a/include/stdlib.h
>> +++ b/include/stdlib.h
>> @@ -5,6 +5,10 @@
>>  #endif
>>  #include <stdlib/stdlib.h>
>>  
>> +/* __dso_handle is always defined by either crtbegin.o from GCC or our
>> +   dso_handle.c.  */
>> +extern void *__dso_handle __attribute__ ((visibility ("hidden")));
> 
> This causes conform test failures.  You need to use __visibility__ here.

Or alternatively, move the declaration under #ifndef _ISOMAC.  That's
probably the better approach because __dso_handle is not part of the
installed headers.

Thanks,
Florian


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]