Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/template_native_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,13 @@ jobs:
build-cache: true
target-cache: true
prebuild-deps: none
# `fast` (the default) injects mold-or-rust-lld via SOLDR_LINKER,
# which clobbers the per-target linker config that
# `cargo zigbuild` needs for aarch64-unknown-linux-musl
# cross-compile (clang tries to use host /usr/bin/ld and fails
# with "file in wrong format" on the cross crt1.o). Disable the
# injection and let cargo + the toolchain decide.
linker: platform-default
cache-key-suffix: native-${{ inputs.target }}

- uses: actions/setup-python@v6
Expand Down
Loading