mirror of
https://sourceware.org/git/glibc.git
synced 2025-12-24 17:51:17 +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:
@@ -43,12 +43,12 @@
|
||||
|
||||
|
||||
/* Globally enabled events. */
|
||||
td_thr_events_t __nptl_threads_events __attribute__ ((nocommon));
|
||||
td_thr_events_t __nptl_threads_events;
|
||||
libc_hidden_proto (__nptl_threads_events)
|
||||
libc_hidden_data_def (__nptl_threads_events)
|
||||
|
||||
/* Pointer to descriptor with the last event. */
|
||||
struct pthread *__nptl_last_event __attribute__ ((nocommon));
|
||||
struct pthread *__nptl_last_event;
|
||||
libc_hidden_proto (__nptl_last_event)
|
||||
libc_hidden_data_def (__nptl_last_event)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user