Skip to content

Commit e548978

Browse files
authored
Create Cross.toml
1 parent ad029a7 commit e548978

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

Cross.toml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[target.x86_64-unknown-linux-gnu]
2+
pre-build = [
3+
"dpkg --add-architecture $CROSS_DEB_ARCH",
4+
"apt-get update && apt-get install --assume-yes libssl-dev:$CROSS_DEB_ARCH"
5+
]
6+
7+
[target.x86_64-unknown-linux-musl]
8+
pre-build = [
9+
"dpkg --add-architecture $CROSS_DEB_ARCH",
10+
"apt-get update && apt-get install --assume-yes libssl-dev:$CROSS_DEB_ARCH"
11+
]
12+
13+
[target.i686-unknown-linux-musl]
14+
pre-build = [
15+
"dpkg --add-architecture $CROSS_DEB_ARCH",
16+
"apt-get update && apt-get install --assume-yes libssl-dev:$CROSS_DEB_ARCH"
17+
]

0 commit comments

Comments
 (0)