Skip to content

Commit

Permalink
ci: correct compiler for libff
Browse files Browse the repository at this point in the history
  • Loading branch information
elopez committed Oct 23, 2023
1 parent 3f401b0 commit 70d00d7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/scripts/install-libff.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ fi
if [ "$HOST_OS" = "Windows" ]; then
ARGS+=("-G" "Ninja")
sed -i 's/find_library(GMP_LIBRARY gmp)/find_library(GMP_LIBRARY NAMES libgmp.a)/' CMakeLists.txt
export CC=/mingw64/bin/clang.exe
export CXX=/mingw64/bin/clang++.exe
export LD=/mingw64/bin/lld.exe
export CC=/clang64/bin/clang.exe
export CXX=/clang64/bin/clang++.exe
export LD=/clang64/bin/lld.exe
fi

mkdir -p build
Expand Down

0 comments on commit 70d00d7

Please sign in to comment.