mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-28 00:21:52 +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:
@ -2026,7 +2026,7 @@ static void *memalign_hook_ini (size_t alignment, size_t sz,
|
||||
const void *caller) __THROW;
|
||||
|
||||
#if HAVE_MALLOC_INIT_HOOK
|
||||
void (*__malloc_initialize_hook) (void) __attribute__ ((nocommon));
|
||||
void (*__malloc_initialize_hook) (void);
|
||||
compat_symbol (libc, __malloc_initialize_hook,
|
||||
__malloc_initialize_hook, GLIBC_2_0);
|
||||
#endif
|
||||
|
@ -59,7 +59,7 @@ __libc_lock_define_initialized (static, lock);
|
||||
case some applications ended up linking against them but they don't actually
|
||||
do anything anymore; not that they did much before anyway. */
|
||||
|
||||
void *mallwatch __attribute__ ((nocommon));
|
||||
void *mallwatch;
|
||||
compat_symbol (libc, mallwatch, mallwatch, GLIBC_2_0);
|
||||
|
||||
void
|
||||
|
Reference in New Issue
Block a user