build: Prefer NASM assembler over YASM

NASM is more actively maintained and permits generating dependency information
as a sideeffect of assembling, thus cutting build times in half.
This commit is contained in:
Diego Biurrun 2016-10-13 20:33:15 +02:00
parent f54037da8a
commit 57b753b445
5 changed files with 17 additions and 15 deletions

View file

@ -6,7 +6,7 @@ os:
addons:
apt:
packages:
- yasm
- nasm
- diffutils
compiler:
- clang
@ -17,7 +17,7 @@ cache:
before_install:
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew update --all; fi
install:
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew install yasm; fi
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew install nasm; fi
script:
- mkdir -p libav-samples
- ./configure --samples=libav-samples --cc=$CC