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 e1edbdeCopy full SHA for e1edbde
.github/workflows/build.yml
@@ -46,6 +46,10 @@ 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
+ shell: bash
52
+ run: echo "RUSTFLAGS=-C linker=rust-lld" >> "$GITHUB_ENV"
53
- name: Install no-std-check dependencies for ARM Embedded
54
if: "matrix.platform == 'self-hosted'"
55
0 commit comments