Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
msoos authored Apr 12, 2024
1 parent 36e318f commit 99b7e22
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,17 @@ jobs:
make -j8
sudo make install
cd ..
- name: Install mpfr for Mac
if: matrix.os == 'macos-13'
run: |
wget https://ftp.gnu.org/gnu/mpfr/mpfr-4.2.1.tar.xz
tar xf mpfr-4.2.1.tar.xz
cd mpfr-4.2.1
./configure --enable-static -enable-cxx --enable-shared
make -j8
sudo make install
cd ..
- name: Checkout Cadical
uses: actions/checkout@v2
Expand Down

0 comments on commit 99b7e22

Please sign in to comment.