-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
[DO NOT MERGE] fix(main/zig): fix missing dynamic linker and libc runtime #22442
Open
mbekkomo
wants to merge
1
commit into
termux:master
Choose a base branch
from
mbekkomo:fix-installation-zig
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mbekkomo
force-pushed
the
fix-installation-zig
branch
2 times, most recently
from
December 2, 2024 20:36
11a4604
to
e0000bb
Compare
Related ziglang/zig#14146 |
Might also need to resolve |
mbekkomo
force-pushed
the
fix-installation-zig
branch
3 times, most recently
from
December 3, 2024 11:22
861427c
to
f9e6b12
Compare
mbekkomo
changed the title
fix(main/zig): fix warning missing ABI and dynamic linker
fix(main/zig): fix missing dynamic linker and libc runtime
Dec 3, 2024
mbekkomo
force-pushed
the
fix-installation-zig
branch
from
December 3, 2024 13:04
f9e6b12
to
1b80507
Compare
This doesn't fix what it declares it fixes
|
I'm trying to figure out what standard library does it use to build Zig. Might need to check the |
Closes termux#20294 Zig uses FHS-type path to guess the dynamic linker of `env` binary. That leads to a warning like in termux#20294 Zig also tries to find the include dir via `clang`, but it failed. I have no idea why.
mbekkomo
force-pushed
the
fix-installation-zig
branch
from
December 17, 2024 15:54
1b80507
to
e35c1ea
Compare
mbekkomo
changed the title
fix(main/zig): fix missing dynamic linker and libc runtime
[DO NOT MERGE] fix(main/zig): fix missing dynamic linker and libc runtime
Jan 1, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Closes #20294
Zig uses FHS-type path to guess the ABI and dynamic linker of
env
binary. That leads to a warning like in #20294