We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The ABI is the default one on AArch64:
One can trigger an unresolved resolution on x86_64 with:
❯ cat tls1.c #include <stdio.h> static _Thread_local int x1 = 1; static _Thread_local int x2; int main() { x2 = 2; printf("%d %d\n", x1, x2); return 0; } $ gcc tls1.c -mtls-dialect=gnu2 -fPIC -B ~/Programming/wild ... Error: Failed to load symbol `main` (73 local=6) in file #1024 (4/0) (a-tls1.o) (ADDRESS | CAN_BYPASS_GOT) from a-tls1.o (1024 (4/0)) Caused by: Unsupported relocation type R_X86_64_GOTPC32_TLSDESC
The text was updated successfully, but these errors were encountered:
marxin
No branches or pull requests
The ABI is the default one on AArch64:
One can trigger an unresolved resolution on x86_64 with:
Steps
The text was updated successfully, but these errors were encountered: