Skip to content

Commit

Permalink
properly set clang 17 as the compiler to be used
Browse files Browse the repository at this point in the history
  • Loading branch information
lucafedeli88 committed Apr 29, 2024
1 parent a91b348 commit ce2110a
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/dependencies/clang17.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ sudo apt-get install -y \
curl \
git

# set clang 17 as the CXX compiler
# Use clang 17
export CXX=$(which clang++-17)
export CC=$(which clang-17)

# cmake-easyinstall
#
Expand All @@ -46,10 +48,6 @@ sudo chmod a+x /usr/local/bin/cmake-easyinstall
export CEI_SUDO="sudo"
export CEI_TMP="/tmp/cei"

# Use clang 17
export CXX=clang++-17
export CC=clang-17

# BLAS++ & LAPACK++
cmake-easyinstall \
--prefix=/usr/local \
Expand Down

0 comments on commit ce2110a

Please sign in to comment.