Add support for Linux aarch64 builds
This commit is contained in:
parent
cfd9fde44f
commit
f29d3b5662
35 changed files with 1133 additions and 7 deletions
|
@ -32,11 +32,16 @@ ffbuild_dockerbuild() {
|
|||
--target=x86-win32-gcc
|
||||
)
|
||||
export CROSS="$FFBUILD_CROSS_PREFIX"
|
||||
elif [[ $TARGET == linux* ]]; then
|
||||
elif [[ $TARGET == linux64 ]]; then
|
||||
myconf+=(
|
||||
--target=x86_64-linux-gcc
|
||||
)
|
||||
export CROSS="$FFBUILD_CROSS_PREFIX"
|
||||
elif [[ $TARGET == linuxarm64 ]]; then
|
||||
myconf+=(
|
||||
--target=arm64-linux-gcc
|
||||
)
|
||||
export CROSS="$FFBUILD_CROSS_PREFIX"
|
||||
else
|
||||
echo "Unknown target"
|
||||
return -1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue