Skip to content

Commit

Permalink
debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
milesgranger committed Sep 23, 2024
1 parent c7b7120 commit 893b182
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions Cross.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ pre-build = [
"apt update",
"apt install -y nasm"
]
[target.x86_64-unknown-linux-gnu]
pre-build = [
"apt update",
"apt install -y nasm"
]
[target.s390x-unknown-linux-gnu]
pre-build = [
"apt update",
Expand All @@ -13,3 +18,33 @@ pre-build = [
"apt update",
"apt install -y nasm"
]
[target.aarch64-unknown-linux-gnu]
pre-build = [
"apt update",
"apt install -y nasm"
]
[target.powerpc64le-unknown-linux-gnu]
pre-build = [
"apt update",
"apt install -y nasm"
]
[target.armv7-unknown-linux-musleabihf]
pre-build = [
"apt update",
"apt install -y nasm"
]
[target.armv7-unknown-linux-gnueabihf]
pre-build = [
"apt update",
"apt install -y nasm"
]
[target.i686-unknown-linux-musl]
pre-build = [
"apt update",
"apt install -y nasm"
]
[target.i686-unknown-linux-gnu]
pre-build = [
"apt update",
"apt install -y nasm"
]

0 comments on commit 893b182

Please sign in to comment.