Add arm64/armhf Ubuntu libc support and fix deb unpacking - #75
Open
zsy-arch wants to merge 2 commits into
Open
Conversation
- get_all_debian() accepts an arch regex param (default amd64|i386) - New 'ubuntu-arm' category in ./get, fetching arm64/armhf glibc/musl/ eglibc/dietlibc from ports.ubuntu.com - download: fix false 'Failed to save' errors when a lib subdir (e.g. gconv/) is present; add usr/lib/<triplet>, lib64, usr/lib64 layout support
…l loss - dump_libc_start_main_ret now recognizes ARM/AArch64 call instructions (bl/blr/blx) in addition to x86's call, fixing ./dump failures on arm64/armhf libc entries. - dump_symbols now forces LC_ALL=C sort -u, since locale-aware collation (e.g. en_US.UTF-8) could silently drop symbols differing only by a leading underscore (e.g. dup2 vs __dup2).
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.
Adds a new ubuntu-arm category to ./get that fetches arm64/armhf glibc/musl/eglibc/dietlibc packages from ports.ubuntu.com, and fixes a bug in ./download where extraction could falsely report failure (and miss usr/lib/, lib64 layouts) — verified end-to-end on an arm64 Ubuntu host.