TOMLCross.toml -rw-r--r-- 558 B
1[target.aarch64-unknown-linux-gnu]
2# Build with -static features.
3pre-build = [
4 "export DEBIAN_FRONTEND=noninteractive ",
5 "dpkg --add-architecture $CROSS_DEB_ARCH",
6 "apt-get update -y",
7 """
8 apt-get install --assume-yes \
9 pkg-config \
10 libdbus-1-dev \
11 libdbus-1-dev:$CROSS_DEB_ARCH \
12 librust-libdbus-sys-dev \
13 librust-libdbus-sys-dev:$CROSS_DEB_ARCH \
14 librust-openssl-sys-dev \
15 librust-openssl-sys-dev:$CROSS_DEB_ARCH \
16 libsqlite3-dev:$CROSS_DEB_ARCH \
17 libssl-dev \
18 libssl-dev:$CROSS_DEB_ARCH \
19 sqlite3:$CROSS_DEB_ARCH
20 """,
21]