From 36b04f9ebadf3ee98980f628a2963432bd70b0e8 Mon Sep 17 00:00:00 2001 From: henderkes Date: Thu, 18 Sep 2025 17:24:08 +0200 Subject: [PATCH] also install g++ with doctor (not preinstalled on ubuntu, not included in gcc package) --- src/SPC/doctor/item/LinuxToolCheckList.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/SPC/doctor/item/LinuxToolCheckList.php b/src/SPC/doctor/item/LinuxToolCheckList.php index 43a88067..2f6e866d 100644 --- a/src/SPC/doctor/item/LinuxToolCheckList.php +++ b/src/SPC/doctor/item/LinuxToolCheckList.php @@ -28,7 +28,7 @@ class LinuxToolCheckList public const TOOLS_DEBIAN = [ 'make', 'bison', 're2c', 'flex', 'git', 'autoconf', 'automake', 'autopoint', - 'tar', 'unzip', 'gzip', + 'tar', 'unzip', 'gzip', 'gcc', 'g++', 'bzip2', 'cmake', 'patch', 'xz', 'libtoolize', 'which', 'patchelf', @@ -37,7 +37,7 @@ class LinuxToolCheckList public const TOOLS_RHEL = [ 'perl', 'make', 'bison', 're2c', 'flex', 'git', 'autoconf', 'automake', - 'tar', 'unzip', 'gzip', 'gcc', + 'tar', 'unzip', 'gzip', 'gcc', 'g++', 'bzip2', 'cmake', 'patch', 'which', 'xz', 'libtool', 'gettext-devel', 'patchelf',