Skip to content

Commit

Permalink
fix: build wheels for aarch or arm
Browse files Browse the repository at this point in the history
  • Loading branch information
RaphaelVRossi committed Nov 28, 2023
1 parent 8f0a315 commit c9daffa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wheelbuild/config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ function build_libavif {
build_dav1d
LIBAVIF_CMAKE_FLAGS+=(-DAVIF_CODEC_DAV1D=ON)

if [ "$PLAT" == "x86_64" ]; then
if [ "$PLAT" == "x86_64" ] || [ "$PLAT" == "arm64" ] || [ "$PLAT" == "aarch64" ]; then
if [ -n "$IS_MACOS" ]; then
build_svt_av1
LIBAVIF_CMAKE_FLAGS+=(-DAVIF_CODEC_SVT=ON)
Expand Down

0 comments on commit c9daffa

Please sign in to comment.