mirror of
https://github.com/ArcaneChat/android.git
synced 2026-07-03 14:05:24 +02:00
10 lines
333 B
Bash
Executable File
10 lines
333 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Installs Rust cross-compilation toolchains for all supported architectures.
|
|
#
|
|
set -e
|
|
TARGETS="armv7-linux-androideabi aarch64-linux-android i686-linux-android x86_64-linux-android"
|
|
TOOLCHAIN="$(cat jni/deltachat-core-rust/rust-toolchain)"
|
|
rustup install "$TOOLCHAIN"
|
|
rustup target add $TARGETS --toolchain "$TOOLCHAIN"
|