FFmpeg build scripts: Add environment for Homebrew building

CQTexperiment
Christopher Snowhill 2021-08-25 01:27:06 -07:00
parent bc5302ed48
commit 5c27dcf976
2 changed files with 8 additions and 0 deletions

View File

@ -2,6 +2,10 @@
set -e
export CPATH=/opt/homebrew/include
export LIBRARY_PATH=/opt/homebrew/lib
export PATH=/opt/homebrew/bin:$PATH
# This is the commands used to build the ffmpeg libs provided here
./configure\
--enable-cross-compile\

View File

@ -2,6 +2,10 @@
set -e
export CPATH=/usr/local/include
export LIBRARY_PATH=/usr/local/lib
export PATH=/usr/local/bin:$PATH
# This is the commands used to build the ffmpeg libs provided here
./configure\
--arch=x86_64\