Skip to content

Commit

Permalink
build: drop support for 32-bit windows target
Browse files Browse the repository at this point in the history
  • Loading branch information
tobtoht committed Dec 12, 2024
1 parent bade043 commit 8a7cdda
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/depends.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,6 @@ jobs:
host: "aarch64-linux-gnu"
rust_host: "aarch64-unknown-linux-gnu"
packages: "python3 gperf g++-aarch64-linux-gnu"
- name: "i686 Win"
host: "i686-w64-mingw32"
rust_host: "i686-pc-windows-gnu"
packages: "python3 g++-mingw-w64-i686"
- name: "i686 Linux"
host: "i686-pc-linux-gnu"
rust_host: "i686-unknown-linux-gnu"
Expand Down Expand Up @@ -112,7 +108,7 @@ jobs:
# We can't use Rust 1.70 due to LLVM 16 requiring ld >= 2.40 when building for Windows
run: rustup toolchain install 1.69; rustup default 1.69; rustup target add ${{ matrix.toolchain.rust_host }}
- name: prepare w64-mingw32
if: ${{ matrix.toolchain.host == 'x86_64-w64-mingw32' || matrix.toolchain.host == 'i686-w64-mingw32' }}
if: ${{ matrix.toolchain.host == 'x86_64-w64-mingw32' }}
run: |
sudo update-alternatives --set ${{ matrix.toolchain.host }}-g++ $(which ${{ matrix.toolchain.host }}-g++-posix)
sudo update-alternatives --set ${{ matrix.toolchain.host }}-gcc $(which ${{ matrix.toolchain.host }}-gcc-posix)
Expand Down

0 comments on commit 8a7cdda

Please sign in to comment.