[PATCH 1/3] elf: Replace .tls_common with .tbss definition
Fangrui Song
maskray@google.com
Mon Jul 26 03:58:00 GMT 2021
.tls_common is obsoleted, not supported by clang -fintegrated-as or ld.lld.
Just change it to .tbss for portability.
---
elf/tls-macros.h | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/elf/tls-macros.h b/elf/tls-macros.h
index e25e33b0f0..a637407417 100644
--- a/elf/tls-macros.h
+++ b/elf/tls-macros.h
@@ -1,7 +1,11 @@
/* Macros to support TLS testing in times of missing compiler support. */
#define COMMON_INT_DEF(x) \
- asm (".tls_common " #x ",4,4")
+ asm (".section .tbss\n\t" \
+ ".globl " #x "\n\t" \
+ ".balign 4\n\t" \
+ #x ":\t.space 4\n\t" \
+ ".previous")
/* XXX Until we get compiler support we don't need declarations. */
#define COMMON_INT_DECL(x)
--
2.32.0.432.gabb21c7263-goog
More information about the Libc-alpha
mailing list