mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-22 07:05:54 +00:00
80 lines
2.1 KiB
Bash
80 lines
2.1 KiB
Bash
|
#!/bin/bash
|
||
|
|
||
|
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
|
||
|
if [[ $arch == "s390x" ]]; then
|
||
|
LLVM=9
|
||
|
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 \
|
||
|
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
|