Skip to content

Commit

Permalink
Fix?
Browse files Browse the repository at this point in the history
  • Loading branch information
jacksongoode committed Jul 6, 2024
1 parent 5bc2338 commit 71a3191
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,16 @@ opt-level = 2
[profile.dev.package.libsamplerate]
opt-level = 2

[workspace.metadata.cross.build]
[workspace.metadata.cross.target.x86_64-unknown-linux-gnu]
image = "ghcr.io/cross-rs/{{TARGET}}:edge"
pre-build = ["dpkg --add-architecture $CROSS_DEB_ARCH", """
apt-get update && apt-get --assume-yes install \
libgtk-3-dev:$CROSS_DEB_ARCH \
libssl-dev:$CROSS_DEB_ARCH \
libasound2-dev:$CROSS_DEB_ARCH
"""]

[workspace.metadata.cross.target.aarch64-unknown-linux-gnu]
image = "ghcr.io/cross-rs/{{TARGET}}:edge"
pre-build = ["dpkg --add-architecture $CROSS_DEB_ARCH", """
apt-get update && apt-get --assume-yes install \
Expand Down

0 comments on commit 71a3191

Please sign in to comment.