Aktualisiere das Build-Skript in deploy.sh, um den C++ Standard auf Version 23 zu setzen. Ändere die Installation des C++ Compilers in install-dependencies-ubuntu22.sh, um GCC 15 zu installieren und als Standard-Compiler festzulegen. Entferne die vorherige Installation von GCC 11.

This commit is contained in:
Torsten Schulz (local)
2025-08-31 23:18:41 +02:00
committed by Torsten (PC)
parent 4b9311713a
commit 1b38e2412c
3 changed files with 22 additions and 4 deletions

View File

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