Skip to content

Commit

Permalink
chore: add libssl-dev to cross container (#515)
Browse files Browse the repository at this point in the history
  • Loading branch information
dutterbutter authored Jan 7, 2025
1 parent 50e0828 commit 2529c0e
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Cross.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,11 @@ pre-build = [
"apt install -y gcc-10 g++-10",
"update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 10",
"update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-10 10"
]

[target.aarch64-unknown-linux-gnu]
pre-build = [
"export DEBIAN_FRONTEND=noninteractive",
"dpkg --add-architecture $CROSS_DEB_ARCH",
"apt-get update -q && apt-get install --assume-yes --no-install-recommends libssl-dev:$CROSS_DEB_ARCH pkg-config",
]

0 comments on commit 2529c0e

Please sign in to comment.