Skip to content

Commit

Permalink
[linux] [pre-release] CXX=g++ to CC=g++
Browse files Browse the repository at this point in the history
  • Loading branch information
ileanadumitrescu95 committed Aug 21, 2024
1 parent 55e4a9f commit 509516b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build-on.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ case "$commit_message" in
cat log"$inc"
inc=$(( $inc + 1 ))
done
../configure $configure_options >> log"$inc" 2>&1; rc=$?; test $rc = 0 || ret_code=$rc
$make check CXX=g++ >> log"$inc" 2>&1; rc=$?; test $rc = 0 || ret_code=$rc
../configure $configure_options CC=g++ >> log"$inc" 2>&1; rc=$?; test $rc = 0 || ret_code=$rc
$make check CC=g++ >> log"$inc" 2>&1; rc=$?; test $rc = 0 || ret_code=$rc
test $rc = 0 || echo "Failed: '$make check CXX=g++'" >> log"$inc"
cat log"$inc"
test $ret_code = 0 || exit 1
Expand Down

0 comments on commit 509516b

Please sign in to comment.