Skip to content

Commit

Permalink
Configure Cross to install pre-build openssl
Browse files Browse the repository at this point in the history
  • Loading branch information
maciektr committed Oct 31, 2023
1 parent 2ad3ebe commit ddc7e77
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Cross.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[target.x86_64-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.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"
]

0 comments on commit ddc7e77

Please sign in to comment.