We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f11674 commit 6709963Copy full SHA for 6709963
.cargo/config.toml
@@ -0,0 +1,2 @@
1
+[target.aarch64-unknown-linux-gnu]
2
+linker = "aarch64-linux-gnu-gcc"
.github/workflows/release.yml
@@ -38,6 +38,11 @@ jobs:
38
uses: Swatinem/rust-cache@v2
39
with:
40
key: ${{ matrix.target }}
41
+
42
+ - name: Install Dependencies
43
+ if: ${{ matrix.target == 'aarch64-unknown-linux-gnu' }}
44
+ run: sudo apt install -y gcc-aarch64-linux-gnu
45
46
- run: cargo build --target ${{ matrix.target }} --release
47
48
- name: Compress and rename executable
0 commit comments