Skip to content

Commit 3b4953a

Browse files
committed
Continued working on fixing CI/CD build for Windows
1 parent 7073e72 commit 3b4953a

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

Diff for: .github/workflows/remoteBuild.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,11 @@ jobs:
6161
- name: Install LLVM and dependencies (Windows)
6262
if: ${{ matrix.os == 'windows-latest' }}
6363
run: |
64-
curl --output mingw-w64-x86_64-llvm-19.1.7-1-any.pkg.tar.zst "https://repo.msys2.org/mingw/mingw64/mingw-w64-x86_64-llvm-19.1.7-1-any.pkg.tar.zst"
64+
curl --output mingw-w64-x86_64-llvm-18.1.8-2-any.pkg.tar.zst "https://repo.msys2.org/mingw/mingw64/mingw-w64-x86_64-llvm-18.1.8-2-any.pkg.tar.zst"
65+
curl --output mingw-w64-x86_64-llvm-libs-18.1.8-2-any.pkg.tar.zst "https://repo.msys2.org/mingw/mingw64/mingw-w64-x86_64-llvm-libs-18.1.8-2-any.pkg.tar.zst"
6566
C:\msys64\usr\bin\pacman -S mingw-w64-x86_64-gcc --noconfirm
66-
C:\msys64\usr\bin\pacman -U mingw-w64-x86_64-llvm-19.1.7-1-any.pkg.tar.zst --noconfirm
67+
C:\msys64\usr\bin\pacman -U mingw-w64-x86_64-llvm-18.1.8-2-any.pkg.tar.zst --noconfirm
68+
C:\msys64\usr\bin\pacman -U mingw-w64-x86_64-llvm-libs-18.1.8-2-any.pkg.tar.zst --noconfirm
6769
C:\msys64\usr\bin\pacman -S mingw-w64-x86_64-zlib --noconfirm
6870
C:\msys64\usr\bin\pacman -S mingw-w64-x86_64-zstd --noconfirm
6971
- name: Install LLVM and dependencies (macOS)

Diff for: HOW_TO_COMPILE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ MSYS2 Setup:
2828
- `pacman -S mingw-w64-x86_64-llvm --noconfirm`
2929
- `git clone https://github.com/IsaacShelton/Adept3x`
3030
- `cd Adept3x`
31-
- `LLVM_SYS_181_PREFIX=/mingw64 ~/.cargo/bin/cargo +nightly build --release`
31+
- `LLVM_SYS_191_PREFIX=/mingw64 ~/.cargo/bin/cargo +nightly build --release`
3232

3333
The output will be in `./target/release`.
3434

0 commit comments

Comments
 (0)