Aktualisiere das Build-Skript, um C++ Standard auf Version 20 zu setzen. Ändere die Installation des C++ Compilers in install-dependencies.sh, um GCC 11 als Standard für Ubuntu 22 zu verwenden und entferne die Installation von GCC 15.

This commit is contained in:
Torsten Schulz (local)
2025-08-31 23:17:12 +02:00
committed by Torsten (PC)
parent 77520ee46a
commit 4b9311713a
4 changed files with 298 additions and 10 deletions

View File

@@ -52,7 +52,7 @@ if [ ! -d "build" ]; then
fi
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_STANDARD=20
make -j$(nproc)
cd ..