summaryrefslogtreecommitdiffstats
path: root/ci
diff options
context:
space:
mode:
authorDavid Peter <davidpeter@wweb.de>2019-08-10 15:26:21 +0200
committerDavid Peter <sharkdp@users.noreply.github.com>2019-08-10 15:58:13 +0200
commit9c2d4f6a511beffe111c3618cd1635184e718cf5 (patch)
treeb92f4fcec03db40ec4ef2ff2acf24c1ed0123368 /ci
parentc1126157d4aa34f266a5f2d28f9fed831d06092d (diff)
Add libc6-dev dependency for aarch64
Diffstat (limited to 'ci')
-rwxr-xr-xci/before_install.bash3
1 files changed, 2 insertions, 1 deletions
diff --git a/ci/before_install.bash b/ci/before_install.bash
index 9acf6025..6537cae2 100755
--- a/ci/before_install.bash
+++ b/ci/before_install.bash
@@ -33,5 +33,6 @@ if [[ $TARGET == aarch64-unknown-linux-gnu ]]; then
sudo apt-get install -y \
gcc-4.8-aarch64-linux-gnu \
binutils-aarch64-linux-gnu \
- gcc-aarch64-linux-gnu
+ gcc-aarch64-linux-gnu \
+ libc6-dev-arm64-cross
fi