Open
Conversation
added 2 commits
February 10, 2026 12:51
We are interested in machine architecture and want to get: ``` $ uname -m aarch64 $ uname -m x86_64 ``` Signed-off-by: Petr Hodina <petr.hodina@protonmail.com>
Signed-off-by: Petr Hodina <petr.hodina@protonmail.com>
Member
|
@phodina I think you are building it with musl here, that's why it might need either adding this thing too, or just leave it with Also I've added you to this org, so you can approve checks yourself 😄 |
Member
|
musl vs glibc: I completely agree here. Statically linking to glibc was rather exceptional necessity, than the right thing to do. If you can manage build get right — we can ditch glibc entirely (it is not even designed to be statically linked). But if not, then we have to keep it for workflow checks. 😢 |
Collaborator
Author
Should make life easier for both of us 😄
That's the biggest pain point but will look into that |
This file contains hidden or 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
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.
@isbm Let's start with simple things, then we can dispatch the Rust and Nix codebase ;-)
These two patches were in the the
fixesbranch for long time.The
unamefix caused previously:Second change is about the libc. If the target is statically linked then there should be no need to use gnu glibc and switch to musl libc instead.
Any thoughts?