We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8148d3b commit 3934d99Copy full SHA for 3934d99
.github/jobs/configure-checks/setup_configure_image.sh
@@ -10,6 +10,8 @@ case $distro_id in
10
dnf install pkg-config make bats autoconf automake util-linux -y ;;
11
*)
12
apt-get update; apt-get full-upgrade -y
13
+ # Install g++-12 to make sure we can use -std=c++20
14
+ version=$(g++ -dumpversion 2>/dev/null | awk -F'.' '{print $1}' 2>/dev/null || echo 0); [ "${version}" -lt 12 ] && apt install -y g++-12
15
apt-get install pkg-config make bats autoconf -y ;;
16
esac
17
0 commit comments