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 <elliott.codes@gmail.com>
This commit is contained in:
parent
14bf07c916
commit
3c0310273b
1 changed files with 6 additions and 0 deletions
|
@ -70,6 +70,10 @@ fi
|
||||||
zyp=$(command -v zypper || true)
|
zyp=$(command -v zypper || true)
|
||||||
if [[ -n $zyp ]]; then
|
if [[ -n $zyp ]]; then
|
||||||
deps=(
|
deps=(
|
||||||
|
gcc
|
||||||
|
gcc-c++
|
||||||
|
clang
|
||||||
|
make
|
||||||
alsa-devel
|
alsa-devel
|
||||||
fontconfig-devel
|
fontconfig-devel
|
||||||
wayland-devel
|
wayland-devel
|
||||||
|
@ -88,6 +92,8 @@ fi
|
||||||
pacman=$(command -v pacman || true)
|
pacman=$(command -v pacman || true)
|
||||||
if [[ -n $pacman ]]; then
|
if [[ -n $pacman ]]; then
|
||||||
deps=(
|
deps=(
|
||||||
|
gcc
|
||||||
|
clang
|
||||||
alsa-lib
|
alsa-lib
|
||||||
fontconfig
|
fontconfig
|
||||||
wayland
|
wayland
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue