We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
0.11.0-dev.175+7eed028f
git clone --depth=1 https://github.com/jedisct1/libsodium.git cd libsodium zig build -Dtarget=x86-windows
LLD Link... lld-link: error: <root>: undefined symbol: _tls_index error: FileNotFound
The _tls_index symbol is properly found when building for the x86_64-windows and aarch64-windows targets, not for x86-windows.
_tls_index
x86_64-windows
aarch64-windows
x86-windows
x86-windows expects _tls_index to be tls_index in lib/zig/libc/mingw/crt/tlssup.c.
tls_index
lib/zig/libc/mingw/crt/tlssup.c
Being able to build shared libraries for x86-windows.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Zig Version
0.11.0-dev.175+7eed028f
Steps to Reproduce and Observed Behavior
git clone --depth=1 https://github.com/jedisct1/libsodium.git cd libsodium zig build -Dtarget=x86-windows
The
_tls_index
symbol is properly found when building for thex86_64-windows
andaarch64-windows
targets, not forx86-windows
.x86-windows
expects_tls_index
to betls_index
inlib/zig/libc/mingw/crt/tlssup.c
.Expected Behavior
Being able to build shared libraries for
x86-windows
.The text was updated successfully, but these errors were encountered: