From 3c0310273bac197a80f9d9acd1a2d17373c0c6e4 Mon Sep 17 00:00:00 2001 From: DocKDE <49117386+DocKDE@users.noreply.github.com> Date: Thu, 13 Jun 2024 19:45:39 +0200 Subject: [PATCH] Add missing Linux build dependencies (#12972) I found that builds failed on Arch and OpenSUSE so I added missing dependencies. I also found that OpenSUSE Leap is currently not able to install the required dependencies so I added a check to limit the supported distros to Tumbleweed. Release Notes: - N/A --------- Co-authored-by: Marshall Bowers --- script/linux | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/script/linux b/script/linux index 491be6bc4c..8671d9125e 100755 --- a/script/linux +++ b/script/linux @@ -70,6 +70,10 @@ fi zyp=$(command -v zypper || true) if [[ -n $zyp ]]; then deps=( + gcc + gcc-c++ + clang + make alsa-devel fontconfig-devel wayland-devel @@ -88,6 +92,8 @@ fi pacman=$(command -v pacman || true) if [[ -n $pacman ]]; then deps=( + gcc + clang alsa-lib fontconfig wayland