Skip to content

Commit

Permalink
Merge pull request #214 from skalenetwork/move-to-g++-11
Browse files Browse the repository at this point in the history
move to g++-11 in build.sh for linux
  • Loading branch information
olehnikolaiev authored Nov 15, 2024
2 parents 3d2c678 + af60754 commit 4b92594
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deps/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -300,12 +300,12 @@ then
else
if [ "$UNIX_SYSTEM_NAME" = "Linux" ];
then
export CC=$(which gcc-9)
export CC=$(which gcc-11)
if [ -z "${CC}" ];
then
export CC=$(which gcc)
fi
export CXX=$(which g++-9)
export CXX=$(which g++-11)
if [ -z "${CXX}" ];
then
export CXX=$(which g++)
Expand Down

0 comments on commit 4b92594

Please sign in to comment.