We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e2abbd commit d3a9ae9Copy full SHA for d3a9ae9
1 file changed
.github/workflows/cli_release.yml
@@ -55,6 +55,18 @@ jobs:
55
- name: Add target
56
run: rustup target add ${{ matrix.target }}
57
58
+ - name: Install Linux ARM dependencies
59
+ if: matrix.target == 'aarch64-unknown-linux-gnu'
60
+ run: |
61
+ sudo apt-get update
62
+ sudo apt-get install -y gcc-aarch64-linux-gnu g++-aarch64-linux-gnu
63
+
64
+ - name: Set linker for Linux ARM
65
66
67
+ echo '[target.aarch64-unknown-linux-gnu]' >> ~/.cargo/config.toml
68
+ echo 'linker = "aarch64-linux-gnu-gcc"' >> ~/.cargo/config.toml
69
70
- uses: Swatinem/rust-cache@v2
71
with:
72
prefix-key: "v0-rust"
0 commit comments