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
-Wl,--large-address-aware
0.13.0
i have a i686-w64-mingw32-gcc wrapper for zig cc -target x86-windows-gnu
i686-w64-mingw32-gcc
zig cc -target x86-windows-gnu
checking whether i686-w64-mingw32-gcc works... no Failed commandline was: -------------------------------------------------- i686-w64-mingw32-gcc conftest.c -m32 -Wall -I. -I$(SRCPATH) -D_POSIX_C_SOURCE=200112L -march=i686 -mfpmath=sse -msse -msse2 -Werror=unknown-warning-option -Werror=unknown-attributes -Werror=attributes -Werror=ignored-attributes -lshell32 -m32 -Wl,--large-address-aware -Wl,--dynamicbase,--nxcompat,--tsaware -o conftest error: unsupported linker arg: --large-address-aware -------------------------------------------------- Failed program was: -------------------------------------------------- int main (void) { return 0; } -------------------------------------------------- DIED: No working C compiler found.
it seems to be supported by lld: https://reviews.llvm.org/D40015
expect zig cc to pass through the argument
The text was updated successfully, but these errors were encountered:
another one that doesn't work is -Wl,--allow-multiple-definition
-Wl,--allow-multiple-definition
Sorry, something went wrong.
No branches or pull requests
Zig Version
0.13.0
Steps to Reproduce and Observed Behavior
i have a
i686-w64-mingw32-gcc
wrapper forzig cc -target x86-windows-gnu
it seems to be supported by lld: https://reviews.llvm.org/D40015
Expected Behavior
expect zig cc to pass through the argument
The text was updated successfully, but these errors were encountered: