libvpx: compiler/assembler fixes for intel

use clang-3.4 as the primary compiler
use yasm for the assembly
This commit is contained in:
Ken Cunningham 2020-06-11 10:52:50 -07:00
parent 70202421b7
commit de14812b7d

View File

@ -9,6 +9,15 @@ VPX_AS=gcc
VPX_ASM_SUFFIX=s
endif
ifdef VPX_X86_ASM
# TO DO - pass these in as an environment variable
CC=clang-mp-3.4
CC += -arch i386
CC += -O3
VPX_AS=yasm
VPX_ASM_SUFFIX=asm
endif
# Set up the libvpx assembler config.
AS=$(VPX_AS)