mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-08 17:42:12 +03:00
Force building with -fno-common
As a result, is not necessary to specify __attribute__ ((nocommon)) on individual definitions. GCC 10 defaults to -fno-common on all architectures except ARC, but this change is compatible with older GCC versions and ARC, too. Reviewed-by: Carlos O'Donell <carlos@redhat.com>
This commit is contained in:
@@ -23,11 +23,11 @@
|
||||
#include <tls.h>
|
||||
|
||||
#ifndef __ASSUME_SET_ROBUST_LIST
|
||||
bool __nptl_set_robust_list_avail __attribute__ ((nocommon));
|
||||
bool __nptl_set_robust_list_avail;
|
||||
rtld_hidden_data_def (__nptl_set_robust_list_avail)
|
||||
#endif
|
||||
|
||||
bool __nptl_initial_report_events __attribute__ ((nocommon));
|
||||
bool __nptl_initial_report_events;
|
||||
rtld_hidden_def (__nptl_initial_report_events)
|
||||
|
||||
#ifdef SHARED
|
||||
|
Reference in New Issue
Block a user