-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
86c06b8
commit 2e6e379
Showing
11 changed files
with
375 additions
and
80 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
[target.x86_64-unknown-linux-musl] | ||
pre-build = [ | ||
"apt update", | ||
"apt install -y nasm libtool autotools-dev autoconf" | ||
] | ||
[target.x86_64-unknown-linux-gnu] | ||
pre-build = [ | ||
"apt update", | ||
"apt install -y nasm libtool autotools-dev autoconf" | ||
] | ||
[target.s390x-unknown-linux-gnu] | ||
pre-build = [ | ||
"apt update", | ||
"apt install -y nasm libtool autotools-dev autoconf" | ||
] | ||
[target.aarch64-unknown-linux-musl] | ||
pre-build = [ | ||
"apt update", | ||
"apt install -y nasm libtool autotools-dev autoconf" | ||
] | ||
[target.aarch64-unknown-linux-gnu] | ||
pre-build = [ | ||
"apt update", | ||
"apt install -y nasm libtool autotools-dev autoconf" | ||
] | ||
[target.powerpc64le-unknown-linux-gnu] | ||
pre-build = [ | ||
"apt update", | ||
"apt install -y nasm libtool autotools-dev autoconf" | ||
] | ||
[target.armv7-unknown-linux-musleabihf] | ||
pre-build = [ | ||
"apt update", | ||
"apt install -y nasm libtool autotools-dev autoconf" | ||
] | ||
[target.armv7-unknown-linux-gnueabihf] | ||
pre-build = [ | ||
"apt update", | ||
"apt install -y nasm libtool autotools-dev autoconf" | ||
] | ||
[target.i686-unknown-linux-musl] | ||
pre-build = [ | ||
"apt update", | ||
"apt install -y nasm libtool autotools-dev autoconf" | ||
] | ||
[target.i686-unknown-linux-gnu] | ||
pre-build = [ | ||
"apt update", | ||
"apt install -y nasm libtool autotools-dev autoconf" | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.