FFmpeg build scripts: Add environment for Homebrew building
parent
bc5302ed48
commit
5c27dcf976
|
@ -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\
|
||||
|
|
|
@ -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\
|
||||
|
|
Loading…
Reference in New Issue