Skip to content
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

Provide Statically Compiled Binaries for (aarch64|arm64) Linux #2863

Open
Azathothas opened this issue Feb 20, 2024 · 0 comments
Open

Provide Statically Compiled Binaries for (aarch64|arm64) Linux #2863

Azathothas opened this issue Feb 20, 2024 · 0 comments
Labels
feature-request New feature or request

Comments

@Azathothas
Copy link

Hi, the current releases for arm64 Linux is based on gnu and not musl.
As a result, the binary is dynamically linked:

$ https://github.com/sharkdp/bat/releases/download/v0.24.0/bat-v0.24.0-aarch64-unknown-linux-gnu.tar.gz
$ file bat && ldd bat
bat: ELF 64-bit LSB pie executable, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, for GNU/Linux 3.7.0, BuildID[sha1]=9a4cf4306649c9b362c06eba7248c1f9b4a6bbb7, stripped
        linux-vdso.so.1 (0x0000ffffbcfee000)
        libgcc_s.so.1 => /lib/aarch64-linux-gnu/libgcc_s.so.1 (0x0000ffffbca80000)
        libpthread.so.0 => /lib/aarch64-linux-gnu/libpthread.so.0 (0x0000ffffbca60000)
        libm.so.6 => /lib/aarch64-linux-gnu/libm.so.6 (0x0000ffffbc9c0000)
        libc.so.6 => /lib/aarch64-linux-gnu/libc.so.6 (0x0000ffffbc810000)
        /lib/ld-linux-aarch64.so.1 (0x0000ffffbcfb5000)

Adding target: aarch64-unknown-linux-musl in https://github.com/sharkdp/bat/blob/master/.github/workflows/CICD.yml should work.

However, you can release an even more optimized binary, based on : https://github.com/Azathothas/Toolpacks/blob/main/.github/scripts/aarch64_Linux/bins/batcat.sh

$ file "./target/$RUST_TARGET/release/bat"
./target/aarch64-unknown-linux-musl/release/bat: ELF 64-bit LSB executable, ARM aarch64, version 1 (SYSV), statically linked, stripped
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature-request New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant