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 --- stdlib/abort.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'stdlib') diff --git a/stdlib/abort.c b/stdlib/abort.c index 8f5f4fe..018f735 100644 --- a/stdlib/abort.c +++ b/stdlib/abort.c @@ -32,7 +32,7 @@ #endif /* Exported variable to locate abort message in core files etc. */ -struct abort_msg_s *__abort_msg __attribute__ ((nocommon)); +struct abort_msg_s *__abort_msg; libc_hidden_def (__abort_msg) /* We must avoid to run in circles. Therefore we remember how far we -- cgit v1.1