From ac72bdb09bf5e6f6a83f316a46486ae43f74c116 Mon Sep 17 00:00:00 2001 From: ClockeNessMnstr Date: Thu, 9 Feb 2023 15:51:50 -0500 Subject: [PATCH] add g++-12 dependancy for Ubuntu 22.04 (#27263) add g++-12 dependancy for 22.04 scons -u -j8 gave clang++ not finding iostream and others. https://askubuntu.com/questions/1449769/clang-cannot-find-iostream solution at the bottom of the page worked. installed g++-12 and built fine after that. old-commit-hash: cd37231666f7758697cbdeece7db6067ee37dd75 --- tools/ubuntu_setup.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/ubuntu_setup.sh b/tools/ubuntu_setup.sh index 09296ef94d..71bad2e8a2 100755 --- a/tools/ubuntu_setup.sh +++ b/tools/ubuntu_setup.sh @@ -86,6 +86,7 @@ function install_ubuntu_lts_latest_requirements() { install_ubuntu_common_requirements $SUDO apt-get install -y --no-install-recommends \ + g++-12 \ qtbase5-dev \ qtchooser \ qt5-qmake \