Skip to content

Commit

Permalink
CI: Disable AVX-512 asm so an older version of nasm can be used.
Browse files Browse the repository at this point in the history
  • Loading branch information
fancycode committed Sep 25, 2020
1 parent 03cea28 commit e31a065
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/install-ci-linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,6 @@ if [ "$WITH_DAV1D" = "1" ]; then

export PATH="$PATH:$HOME/.local/bin"
cd third-party
sh dav1d.cmd
sh dav1d.cmd -Denable_avx512=false
cd ..
fi
2 changes: 1 addition & 1 deletion third-party/dav1d.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ cd dav1d
: # macOS might require: -Dc_args=-fno-stack-check
: # Build with asan: -Db_sanitize=address
: # Build with ubsan: -Db_sanitize=undefined
meson build --default-library=static --buildtype release --prefix "$(pwd)/dist"
meson build --default-library=static --buildtype release --prefix "$(pwd)/dist" $@
ninja -C build
ninja -C build install
cd ..

0 comments on commit e31a065

Please sign in to comment.