From 66d7b6a125e7e0412c0c78fead2b39733d4da9ab Mon Sep 17 00:00:00 2001 From: otavepto Date: Sun, 3 Mar 2024 04:32:33 +0200 Subject: [PATCH] missing packages for CI --- build_linux_deps.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build_linux_deps.sh b/build_linux_deps.sh index 3cc84ce3..a6c4a7b7 100644 --- a/build_linux_deps.sh +++ b/build_linux_deps.sh @@ -76,6 +76,10 @@ apt install gcc-multilib g++-multilib -y # needed for 32-bit builds last_code=$((last_code + $?)) apt install clang -y last_code=$((last_code + $?)) +apt install libglx-dev -y # needed for overlay build (header files such as GL/glx.h) +last_code=$((last_code + $?)) +apt install libgl-dev -y # needed for overlay build (header files such as GL/gl.h) +last_code=$((last_code + $?)) apt install binutils -y # (optional) contains the tool 'readelf' mainly, and other usefull binary stuff last_code=$((last_code + $?)) apt install tar -y # we need to extract packages