Skip to content

Commit

Permalink
move to g++-11 in build.sh for linux
Browse files Browse the repository at this point in the history
  • Loading branch information
olehnikolaiev committed Nov 15, 2024
1 parent 3d2c678 commit af60754
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 af60754

Please sign in to comment.