Skip to content

Commit

Permalink
Revert 1 commits
Browse files Browse the repository at this point in the history
edeb0af 'fixup! build(windows/gnu): use `lld` as the default linker'
  • Loading branch information
rami3l committed Jun 2, 2024
1 parent edeb0af commit 88d116a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 20 deletions.
8 changes: 4 additions & 4 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
dev-install = "run -- --no-modify-path -y"

[target.x86_64-pc-windows-gnu]
linker = "rust-lld.exe"
rustflags = ["-C", "link-self-contained=no"]
linker = "ld.lld.exe"
rustflags = ["-C", "link-self-contained=no", "-C", "link-arg=-fuse-ld=lld"]

[target.i686-pc-windows-gnu]
linker = "rust-lld.exe"
rustflags = ["-C", "link-self-contained=no"]
linker = "ld.lld.exe"
rustflags = ["-C", "link-self-contained=no", "-C", "link-arg=-fuse-ld=lld"]
12 changes: 0 additions & 12 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,6 @@ jobs:
- name: Ensure stable toolchain is up to date
run: rustup update stable
shell: bash
- name: Install `llvm-tools`
if: matrix.mingwdir != ''
run: |
rustup component add llvm-tools-preview
- name: Install the target
run: |
rustup target install ${{ matrix.target }}
Expand Down Expand Up @@ -236,10 +232,6 @@ jobs:
- name: Ensure stable toolchain is up to date
run: rustup update stable
shell: bash
- name: Install `llvm-tools`
if: matrix.mingwdir != ''
run: |
rustup component add llvm-tools-preview
- name: Install the target
run: |
rustup target install ${{ matrix.target }}
Expand Down Expand Up @@ -378,10 +370,6 @@ jobs:
- name: Ensure stable toolchain is up to date
run: rustup update stable
shell: bash
- name: Install `llvm-tools`
if: matrix.mingwdir != ''
run: |
rustup component add llvm-tools-preview
- name: Install the target
run: |
rustup target install ${{ matrix.target }}
Expand Down
4 changes: 0 additions & 4 deletions ci/actions-templates/windows-builds-template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,6 @@ jobs: # skip-master skip-pr skip-stable
- name: Ensure stable toolchain is up to date
run: rustup update stable
shell: bash
- name: Install `llvm-tools`
if: matrix.mingwdir != ''
run: |
rustup component add llvm-tools-preview
- name: Install the target
run: |
rustup target install ${{ matrix.target }}
Expand Down

0 comments on commit 88d116a

Please sign in to comment.