fix(yazi): use musl builds to avoid GLIBC_2.39 requirement#92
Merged
jsburckhardt merged 1 commit intomainfrom May 2, 2026
Merged
fix(yazi): use musl builds to avoid GLIBC_2.39 requirement#92jsburckhardt merged 1 commit intomainfrom
jsburckhardt merged 1 commit intomainfrom
Conversation
Yazi's -unknown-linux-gnu releases now require GLIBC 2.39, which is newer than what Debian/Ubuntu stable base images provide, causing installs to fail with a GLIBC_2.39 error. Switch x86_64 and aarch64 installs to the statically-linked -musl variant. i686 keeps -gnu since no musl asset is published for it. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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.
Problem
Installing the
yazifeature fails on Debian/Ubuntu base images:Recent yazi releases link the
-unknown-linux-gnubuilds against GLIBC 2.39, which is newer than what current Debian/Ubuntu stable images ship.Fix
Switch x86_64 and aarch64 installs to the statically-linked
-unknown-linux-muslvariant published on the same release. i686 keeps-gnusince no musl asset is published for it.Bumped feature version
1.0.0→1.0.1.Verification
Result: ✅ Passed (Yazi 26.1.22)