Skip to content

Commit

Permalink
windows: try to set correct mingw paths
Browse files Browse the repository at this point in the history
  • Loading branch information
lschneiderbauer committed May 20, 2024
1 parent 8ed8452 commit 95e3bf3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,10 @@ jobs:
- name: Install fftw3 on Windows
if: runner.os == 'Windows'
run: pacman -Syu mingw-w64-x86_64-fftw mingw-w64-x86_64-openmp --noconfirm
run: |
pacman -Syu mingw-w64-x86_64-fftw mingw-w64-x86_64-openmp --noconfirm
export CPPFLAGS="-I/mingw64/lib ${CPPFLAGS}"
export LDFLAGS="-L/mingw64/bin $LDFLAGS"
- uses: r-lib/actions/setup-r-dependencies@v2
with:
Expand Down

0 comments on commit 95e3bf3

Please sign in to comment.