From 7c241325d67af9e24ff03d4c6f6280c17ea181f8 Mon Sep 17 00:00:00 2001 From: Florian Weimer Date: Fri, 9 Jul 2021 20:09:14 +0200 Subject: 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 --- resolv/res_libc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'resolv') diff --git a/resolv/res_libc.c b/resolv/res_libc.c index 636d238..41d44ca 100644 --- a/resolv/res_libc.c +++ b/resolv/res_libc.c @@ -88,7 +88,7 @@ res_init (void) This differs from plain `struct __res_state _res;' in that it doesn't create a common definition, but a plain symbol that resides in .bss, which can have an alias. */ -struct __res_state _res __attribute__ ((nocommon)); +struct __res_state _res; #undef __resp __thread struct __res_state *__resp = &_res; -- cgit v1.1