-
Notifications
You must be signed in to change notification settings - Fork 459
/
Cross.toml
32 lines (27 loc) · 1.1 KB
/
Cross.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[build.env]
passthrough = [
"BUILD_SOURCEVERSION",
"VERSION",
"IOTEDGE_HOMEDIR",
"FORCE_NO_UNITTEST",
]
[target.x86_64-unknown-linux-gnu]
image = "azureiotedge/debian-build:9.5-1"
[target.armv7-unknown-linux-gnueabihf]
pre-build = [
"dpkg --add-architecture $CROSS_DEB_ARCH",
"apt-get update && apt-get install --assume-yes libssl-dev:$CROSS_DEB_ARCH"
]
[target.aarch64-unknown-linux-gnu]
pre-build = [
"dpkg --add-architecture $CROSS_DEB_ARCH",
"apt-get update && apt-get install --assume-yes libssl-dev:$CROSS_DEB_ARCH"
]
[target.armv7-unknown-linux-musleabihf]
# Built from rust-embedded/cross#718a19cd68fb09428532d1317515fe7303692b47 with `./build-docker-image.sh armv7-unknown-linux-musleabihf`
# because the image in Docker hub is outdated and broken
image = "azureiotedge/armv7-unknown-linux-musleabihf:0.1"
[target.aarch64-unknown-linux-musl]
# Built from rust-embedded/cross#718a19cd68fb09428532d1317515fe7303692b47 with `./build-docker-image.sh aarch64-unknown-linux-musl`
# because the image in Docker hub is outdated and broken
image = "azureiotedge/aarch64-unknown-linux-musl:0.1"