@@ -43,6 +43,7 @@ elif [[ $uname == Darwin ]] && [[ $BUILD_ARM64 == True ]]; then
43
43
cflags=" $cflags -arch arm64 -mcpu=apple-m1"
44
44
asflags=" -arch arm64"
45
45
ldflags=" -Wl,-x -arch arm64"
46
+ cmakeflags=" -DCMAKE_OSX_ARCHITECTURES=arm64"
46
47
host=" aarch64-apple-darwin20.1.0"
47
48
arm64=true
48
49
elif [[ $uname == Darwin ]]; then
@@ -53,6 +54,8 @@ elif [[ $uname == Darwin ]]; then
53
54
fi
54
55
asflags=" -arch x86_64"
55
56
ldflags=" -Wl,-x -arch x86_64"
57
+ cmakeflags=" -DCMAKE_OSX_ARCHITECTURES=x86_64"
58
+ host=" x86_64-apple-darwin20.1.0"
56
59
x86_64=true
57
60
elif [[ $machine == * amd64* || $machine == * x86_64* ]] && [[ $BUILD_ARM64 != True ]] && [[ $BUILD_X86 != True ]] && [[ $uname != * MINGW* || $BUILD_X86_64 == True ]]; then
58
61
cflags=" $cflags -m64 -march=x86-64"
@@ -280,9 +283,9 @@ build () {
280
283
fi
281
284
elif [[ -f CMakeLists.txt ]]; then
282
285
if [[ $uname == * MINGW* ]]; then
283
- cmake . -G " MSYS Makefiles" $cmake_flags
286
+ cmake . -G " MSYS Makefiles" $cmakeflags $ cmake_flags
284
287
else
285
- cmake . $cmake_flags
288
+ cmake . $cmakeflags $ cmake_flags
286
289
fi
287
290
fi
288
291
$MAKE $make_flags -j$jobs
@@ -555,6 +558,8 @@ for package in ${packages[@]}; do
555
558
prepare=" sed -i -e \" s/immintrin\.h/emmintrin.h/\" src/common.h"
556
559
if [[ $uname == * MINGW* ]] && [[ $x86 == true ]]; then
557
560
configure_exports=" RC=\" windres -F pe-i386\" "
561
+ elif [[ $uname == Darwin ]]; then
562
+ export LDFLAGS=" $cflags $ldflags "
558
563
fi
559
564
configure_flags=" --disable-external-libs --disable-mpeg --disable-alsa"
560
565
build $libsndfile_location src/.libs/libsndfile$sharedinfix .$sharedext SndFile.$sharedext
@@ -577,6 +582,8 @@ for package in ${packages[@]}; do
577
582
export LDFLAGS=" $ldflags -lstdc++.static"
578
583
elif [[ $uname == * MINGW* ]] && [[ $arm64 == true ]]; then
579
584
export LDFLAGS=" $ldflags -lclang_rt.builtins-aarch64"
585
+ elif [[ $uname == Darwin ]]; then
586
+ prepare=" sed -i -e \" s/keep_private_externs/keep_private_externs $ldflags /\" configure"
580
587
fi
581
588
build $mp4v2_location .libs/libmp4v2$sharedinfix .$sharedext MP4v2.$sharedext
582
589
0 commit comments