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
|
||||
|
Reference in New Issue
Block a user