-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathCross.toml
More file actions
35 lines (33 loc) · 1.03 KB
/
Cross.toml
File metadata and controls
35 lines (33 loc) · 1.03 KB
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
33
34
35
# [target.aarch64-unknown-linux-gnu]
# pre-build = [
# "dpkg --add-architecture $CROSS_DEB_ARCH",
# "apt-get update",
# "apt-get install --assume-yes nasm:$CROSS_DEB_ARCH",
# ]
[target.x86_64-unknown-linux-musl]
image = "ghcr.io/cross-rs/x86_64-unknown-linux-musl:edge"
pre-build = [
"dpkg --add-architecture $CROSS_DEB_ARCH",
"apt-get update",
"apt-get install --assume-yes nasm",
]
# [target.armv7-unknown-linux-musleabihf]
# pre-build = [
# "dpkg --add-architecture $CROSS_DEB_ARCH",
# "apt-get update",
# "apt-get install --assume-yes nasm:$CROSS_DEB_ARCH",
# ]
[target.aarch64-unknown-linux-musl]
image = "ghcr.io/cross-rs/aarch64-unknown-linux-musl:edge"
pre-build = [
"dpkg --add-architecture $CROSS_DEB_ARCH",
"apt-get update",
"apt-get install --assume-yes nasm:$CROSS_DEB_ARCH",
]
[target.armv7-unknown-linux-musleabihf]
image = "ghcr.io/cross-rs/armv7-unknown-linux-musleabihf:edge"
pre-build = [
"dpkg --add-architecture $CROSS_DEB_ARCH",
"apt-get update",
"apt-get install --assume-yes nasm:$CROSS_DEB_ARCH",
]