From ff6ced7587f1d982ac60f1953cd089c0a2a27995 Mon Sep 17 00:00:00 2001 From: "Torsten Schulz (local)" Date: Mon, 1 Sep 2025 15:59:53 +0200 Subject: [PATCH] =?UTF-8?q?Aktualisiere=20Installationsskript=20f=C3=BCr?= =?UTF-8?q?=20Abh=C3=A4ngigkeiten:=20Setze=20GCC-13=20und=20G++-13=20als?= =?UTF-8?q?=20Standardcompiler=20und=20verbessere=20die=20Alternativenverw?= =?UTF-8?q?altung.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- deploy/install_dependencies.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/deploy/install_dependencies.sh b/deploy/install_dependencies.sh index 5801161..05a0d3d 100755 --- a/deploy/install_dependencies.sh +++ b/deploy/install_dependencies.sh @@ -27,7 +27,8 @@ sudo apt install -y gcc-13 g++-13 echo "=== GCC-13 als Standard setzen ===" # GCC-13 als Standard setzen -sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 130 --slave /usr/bin/g++ g++ /usr/bin/g++-13 +sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 130 +sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-13 130 sudo update-alternatives --install /usr/bin/cc cc /usr/bin/gcc-13 130 sudo update-alternatives --install /usr/bin/c++ c++ /usr/bin/g++-13 130