We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62d48da commit fd516ffCopy full SHA for fd516ff
.cargo/config.toml
@@ -0,0 +1,2 @@
1
+[target.aarch64-unknown-linux-gnu]
2
+linker = "aarch64-linux-gnu-gcc"
.github/workflows/build.yml
@@ -55,5 +55,11 @@ jobs:
55
cargo binstall -y --force leptosfmt
56
cargo binstall -y --force trunk
57
58
+ - name: Install `aarch64-unknown-linux-gnu` toolchain
59
+ if: ${{ matrix.target == 'aarch64-unknown-linux-gnu' }}
60
+ run: |
61
+ apt-get update && \
62
+ apt-get install -y gcc-aarch64-linux-gnu
63
+
64
- name: Build
65
run: make release TARGET=${{ matrix.target }}
0 commit comments