mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2024-12-03 23:24:17 +08:00
86e2078be7
Some packages that are being installed via recommends are conflicting with already installed packages, causing this error: E: Packages need to be removed but remove is disabled. We dont need these packages, so don't install them. Reviewed-by: David Heidelberg <david.heidelberg@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18467>
82 lines
2.3 KiB
Bash
82 lines
2.3 KiB
Bash
#!/bin/bash
|
|
# shellcheck disable=SC2086 # we want word splitting
|
|
|
|
set -e
|
|
set -o xtrace
|
|
|
|
export DEBIAN_FRONTEND=noninteractive
|
|
|
|
# Ephemeral packages (installed for this script and removed again at the end)
|
|
STABLE_EPHEMERAL=" \
|
|
"
|
|
|
|
dpkg --add-architecture $arch
|
|
apt-get update
|
|
|
|
apt-get install -y --no-remove \
|
|
$STABLE_EPHEMERAL \
|
|
crossbuild-essential-$arch \
|
|
libelf-dev:$arch \
|
|
libexpat1-dev:$arch \
|
|
libpciaccess-dev:$arch \
|
|
libstdc++6:$arch \
|
|
libvulkan-dev:$arch \
|
|
libx11-dev:$arch \
|
|
libx11-xcb-dev:$arch \
|
|
libxcb-dri2-0-dev:$arch \
|
|
libxcb-dri3-dev:$arch \
|
|
libxcb-glx0-dev:$arch \
|
|
libxcb-present-dev:$arch \
|
|
libxcb-randr0-dev:$arch \
|
|
libxcb-shm0-dev:$arch \
|
|
libxcb-xfixes0-dev:$arch \
|
|
libxdamage-dev:$arch \
|
|
libxext-dev:$arch \
|
|
libxrandr-dev:$arch \
|
|
libxshmfence-dev:$arch \
|
|
libxxf86vm-dev:$arch \
|
|
wget
|
|
|
|
if [[ $arch != "armhf" ]]; then
|
|
# See the list of available architectures in https://apt.llvm.org/bullseye/dists/llvm-toolchain-bullseye-13/main/
|
|
if [[ $arch == "s390x" ]] || [[ $arch == "i386" ]] || [[ $arch == "arm64" ]]; then
|
|
LLVM=13
|
|
else
|
|
LLVM=11
|
|
fi
|
|
|
|
# llvm-*-tools:$arch conflicts with python3:amd64. Install dependencies only
|
|
# with apt-get, then force-install llvm-*-{dev,tools}:$arch with dpkg to get
|
|
# around this.
|
|
apt-get install -y --no-remove --no-install-recommends \
|
|
libclang-cpp${LLVM}:$arch \
|
|
libffi-dev:$arch \
|
|
libgcc-s1:$arch \
|
|
libtinfo-dev:$arch \
|
|
libz3-dev:$arch \
|
|
llvm-${LLVM}:$arch \
|
|
zlib1g
|
|
fi
|
|
|
|
. .gitlab-ci/container/create-cross-file.sh $arch
|
|
|
|
|
|
. .gitlab-ci/container/container_pre_build.sh
|
|
|
|
|
|
# dependencies where we want a specific version
|
|
EXTRA_MESON_ARGS="--cross-file=/cross_file-${arch}.txt -D libdir=lib/$(dpkg-architecture -A $arch -qDEB_TARGET_MULTIARCH)"
|
|
. .gitlab-ci/container/build-libdrm.sh
|
|
|
|
apt-get purge -y \
|
|
$STABLE_EPHEMERAL
|
|
|
|
. .gitlab-ci/container/container_post_build.sh
|
|
|
|
# This needs to be done after container_post_build.sh, or apt-get breaks in there
|
|
if [[ $arch != "armhf" ]]; then
|
|
apt-get download llvm-${LLVM}-{dev,tools}:$arch
|
|
dpkg -i --force-depends llvm-${LLVM}-*_${arch}.deb
|
|
rm llvm-${LLVM}-*_${arch}.deb
|
|
fi
|