-
-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
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
Update to support zig 0.14.0-dev.1583+812557bfd #41
base: master
Are you sure you want to change the base?
Conversation
Co-authored-by: Nigel Baillie <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is that an accidential commit?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
that seems to have came from the first commit in the zig 12 support PR, I'm not sure why it's there
.root_source_file = .{ .path = sdkRoot() ++ "/tools/zip_add.zig" }, | ||
.root_source_file = b.path("tools/zip_add.zig"), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change is breaking as it now only allows to compile this repository, but you can't use the Sdk.zig
anymore from any other path except project root.
Until we gain ability to run it properly from a zig dependency, we have to ues .{ .cwd_relative = … }
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That change is entirely in the last commit so it can be reverted. I would have added package manager support but I decided to use android studio instead of this
No description provided.