mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-23 18:10:56 +01:00
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:
parent
f54037da8a
commit
57b753b445
5 changed files with 17 additions and 15 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue