mirror of
https://github.com/element-hq/element-desktop
synced 2025-03-15 17:03:31 +01:00
10 lines
313 B
Bash
10 lines
313 B
Bash
![]() |
#!/usr/bin/env bash
|
||
|
|
||
|
if [ "$TARGETPLATFORM" = "linux/arm64" ]; then
|
||
|
echo "Building for aarch64"
|
||
|
apt-get -qq update
|
||
|
apt-get -y install crossbuild-essential-arm64 libsqlcipher-dev:arm64 libssl-dev:arm64 libsecret-1-dev:arm64
|
||
|
rustup target add aarch64-unknown-linux-gnu
|
||
|
mv /dockerbuild/aarch64/.cargo .
|
||
|
fi
|