From 94de0491840a1b616854ca793476122cf2ebd2e3 Mon Sep 17 00:00:00 2001 From: Christopher Snowhill Date: Fri, 24 Jun 2022 22:33:50 -0700 Subject: [PATCH] [FFmpeg] Update minimum platform for x86_64 Update minimum platform version to macOS 10.13. Signed-off-by: Christopher Snowhill --- Scripts/ffmpeg-build-x86_64.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Scripts/ffmpeg-build-x86_64.sh b/Scripts/ffmpeg-build-x86_64.sh index e2db0bf52..b75eb53c6 100755 --- a/Scripts/ffmpeg-build-x86_64.sh +++ b/Scripts/ffmpeg-build-x86_64.sh @@ -12,8 +12,8 @@ ADPCM_CODECS=adpcm_4xm,adpcm_adx,adpcm_afx,adpcm_agm,adpcm_aica,adpcm_argo,adpcm # This is the commands used to build the ffmpeg libs provided here ./configure\ --arch=x86_64\ - --extra-cflags="-arch x86_64 -fPIC -isysroot $(xcode-select -p)/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk -mmacosx-version-min=10.12"\ - --extra-ldflags="-arch x86_64 -mmacosx-version-min=10.12"\ + --extra-cflags="-arch x86_64 -fPIC -isysroot $(xcode-select -p)/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk -mmacosx-version-min=10.13"\ + --extra-ldflags="-arch x86_64 -mmacosx-version-min=10.13"\ --disable-static --enable-shared\ --prefix="$1/x86_64"\ --incdir="$1/include"\