diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cd7dce4..8afbab1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,6 +48,9 @@ jobs: - name: Enable type layout randomization run: echo RUSTFLAGS=${RUSTFLAGS}\ -Zrandomize-layout >> $GITHUB_ENV if: matrix.rust == 'nightly' + - name: Disable rust-lld + run: echo RUSTFLAGS=${RUSTFLAGS}\ -Zlinker-features=-lld >> $GITHUB_ENV + if: matrix.rust == 'nightly' - run: cargo check --manifest-path tests/crate/Cargo.toml - run: cargo test -p linkme -p linkme-impl # windows-gnu: https://github.com/dtolnay/linkme/issues/25