Add initial support for winarm64

This commit is contained in:
BtbN
2024-03-19 22:55:26 +01:00
parent 33079e6154
commit 8efdbd5a6b
29 changed files with 190 additions and 37 deletions

View File

@ -14,9 +14,9 @@ ffbuild_dockerbuild() {
BUILDTYPE=Release
DEBUGSYMBOLS=False
LIBDIR_NAME=lib
CC="$FFBUILD_CROSS_PREFIX"gcc
CXX="$FFBUILD_CROSS_PREFIX"g++
AR="$FFBUILD_CROSS_PREFIX"ar
CC="$CC"
CXX="$CXX"
AR="$AR"
)
if [[ $TARGET == win32 ]]; then
@ -29,6 +29,11 @@ ffbuild_dockerbuild() {
OS=mingw_nt
ARCH=x86_64
)
elif [[ $TARGET == winarm64 ]]; then
myconf+=(
OS=mingw_nt
ARCH=aarch64
)
elif [[ $TARGET == linux64 ]]; then
myconf+=(
OS=linux