-
Notifications
You must be signed in to change notification settings - Fork 423
Closed
Labels
Description
Checklist
- I've looked through the issues and pull requests for similar reports
Describe your issue
UPDATE: All targets except x86_64-unknown-linux-musl
have been patched as of #905, and the MIPS64 targets in #906.
When compiling for some musl targets, they link to dynamically to glibc rather than musl libc statically. This only occurs with C++ dependencies. A simple test is as follows:
$ git clone https://github.com/cross-rs/rust-cpp-hello-word
$ cd rust-cpp-hello-word
$ cross build --target aarch64-unknown-linux-musl
Compiling cc v1.0.73
Compiling hellopp v0.1.0 (/home/ahuszagh/Desktop/cross/rust-cpp-hello-word)
Finished dev [unoptimized + debuginfo] target(s) in 2.58s
$ file target/aarch64-unknown-linux-musl/debug/hellopp
target/aarch64-unknown-linux-musl/debug/hellopp: ELF 64-bit LSB executable, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, with debug_info, not stripped
Some targets, such as armv7-unknown-linux-musleabihf
link properly, however, while running, they cannot find the correct dynamic library loader.
This is related to #101, although not exactly.
What target(s) are you cross-compiling for?
aarch64-unknown-linux-musl
Which operating system is the host (e.g computer cross is on) running?
- macOS
- Windows
- Linux / BSD
- other OS (specify in description)
What architecture is the host?
- x86_64 / AMD64
- arm32
- arm64 (including Mac M1)
What container engine is cross using?
- docker
- podman
- other container engine (specify in description)
cross version
cross 0.2.2 (latest main)
Example
No response
Additional information / notes
No response
connor4312, omninonsense and Dav1dde