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 de2005a commit 40c8990Copy full SHA for 40c8990
.github/workflows/build.yml
@@ -46,6 +46,9 @@ jobs:
46
- name: Install Rust ${{ matrix.toolchain }} toolchain
47
run: |
48
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile=minimal --default-toolchain ${{ matrix.toolchain }}
49
+ - name: Use rust-lld linker on Windows
50
+ if: matrix.platform == 'windows-latest'
51
+ run: echo "RUSTFLAGS=-C linker=rust-lld" >> "$GITHUB_ENV"
52
- name: Install no-std-check dependencies for ARM Embedded
53
if: "matrix.platform == 'self-hosted'"
54
0 commit comments