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
Bug report coming from a hermetic_cc_toolchain user.
hermetic_cc_toolchain
0.12.0-dev.2631+3069669bc
hello.c
#include <stdio.h> int main() { printf("Hello, World!\n"); return 0; }
Command:
$ zig c++ -target aarch64-macos-none -shared -o /tmp/bazq1.dylib hello.c error: NoSpaceLeft
If the output path is shorter (15 bytes instead of 16), it works:
$ zig c++ -target aarch64-macos-none -shared -o /tmp/bazq.dylib hello.c $
It should compile with filenames longer than 16 characters.
The text was updated successfully, but these errors were encountered:
cc @kubkon
Sorry, something went wrong.
MachO: fix calcLoadCommandsSize computation
calcLoadCommandsSize
1cbc7af
Closes ziglang#19026
0b7af25
Closes #19026
bump zig to 0.12.0-dev.2824+0b7af2563
d0f6740
Fixes a MachO linker bug: ziglang/zig#19026
d194787
Successfully merging a pull request may close this issue.
Bug report coming from a
hermetic_cc_toolchain
user.Zig Version
0.12.0-dev.2631+3069669bc
Steps to Reproduce and Observed Behavior
hello.c
Command:
If the output path is shorter (15 bytes instead of 16), it works:
Expected Behavior
It should compile with filenames longer than 16 characters.
The text was updated successfully, but these errors were encountered: