We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ccefd5 commit 6b7d38dCopy full SHA for 6b7d38d
.github/scripts/Linux/prepare.sh
@@ -28,6 +28,11 @@ sudo apt install libcurl4-nss-dev
28
sudo apt install i965-va-driver-shaders # instead of i965-va-driver
29
sudo apt install uuid-dev # Cineform
30
31
+sudo apt install gcc-10
32
+sudo apt install g++-10
33
+sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 10
34
+sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-10 10
35
+
36
get_build_deps_excl() { # $2 - pattern to exclude
37
apt-cache showsrc "$1" | sed -n '/^Build-Depends:/{s/Build-Depends://;p;q}' | tr ',' '\n' | cut -f 2 -d\ | grep -v "$2"
38
}
0 commit comments