Skip to content

Commit 9f2fd7f

Browse files
committed
Update macOS CI actions to macOS 15.
1 parent 46258f6 commit 9f2fd7f

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

.github/workflows/continuous-build-macos.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,18 @@ jobs:
1212
strategy:
1313
matrix:
1414
include:
15-
- os: macos-12
15+
- os: macos-15
1616
target: 10.9
1717

18-
- os: macos-12
18+
- os: macos-15
1919
target: 11.0
2020

2121
runs-on: ${{ matrix.os }}
2222

2323
steps:
2424
- name: Install dependencies
2525
run: |
26-
brew install automake nasm yasm
26+
brew install automake libtool nasm yasm
2727
2828
- name: Import certificates
2929
uses: apple-actions/import-codesign-certs@v3

tools/build-codecs

+9-2
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ elif [[ $uname == Darwin ]] && [[ $BUILD_ARM64 == True ]]; then
4343
cflags="$cflags -arch arm64 -mcpu=apple-m1"
4444
asflags="-arch arm64"
4545
ldflags="-Wl,-x -arch arm64"
46+
cmakeflags="-DCMAKE_OSX_ARCHITECTURES=arm64"
4647
host="aarch64-apple-darwin20.1.0"
4748
arm64=true
4849
elif [[ $uname == Darwin ]]; then
@@ -53,6 +54,8 @@ elif [[ $uname == Darwin ]]; then
5354
fi
5455
asflags="-arch x86_64"
5556
ldflags="-Wl,-x -arch x86_64"
57+
cmakeflags="-DCMAKE_OSX_ARCHITECTURES=x86_64"
58+
host="x86_64-apple-darwin20.1.0"
5659
x86_64=true
5760
elif [[ $machine == *amd64* || $machine == *x86_64* ]] && [[ $BUILD_ARM64 != True ]] && [[ $BUILD_X86 != True ]] && [[ $uname != *MINGW* || $BUILD_X86_64 == True ]]; then
5861
cflags="$cflags -m64 -march=x86-64"
@@ -280,9 +283,9 @@ build () {
280283
fi
281284
elif [[ -f CMakeLists.txt ]]; then
282285
if [[ $uname == *MINGW* ]]; then
283-
cmake . -G "MSYS Makefiles" $cmake_flags
286+
cmake . -G "MSYS Makefiles" $cmakeflags $cmake_flags
284287
else
285-
cmake . $cmake_flags
288+
cmake . $cmakeflags $cmake_flags
286289
fi
287290
fi
288291
$MAKE $make_flags -j$jobs
@@ -555,6 +558,8 @@ for package in ${packages[@]}; do
555558
prepare="sed -i -e \"s/immintrin\.h/emmintrin.h/\" src/common.h"
556559
if [[ $uname == *MINGW* ]] && [[ $x86 == true ]]; then
557560
configure_exports="RC=\"windres -F pe-i386\""
561+
elif [[ $uname == Darwin ]]; then
562+
export LDFLAGS="$cflags $ldflags"
558563
fi
559564
configure_flags="--disable-external-libs --disable-mpeg --disable-alsa"
560565
build $libsndfile_location src/.libs/libsndfile$sharedinfix.$sharedext SndFile.$sharedext
@@ -577,6 +582,8 @@ for package in ${packages[@]}; do
577582
export LDFLAGS="$ldflags -lstdc++.static"
578583
elif [[ $uname == *MINGW* ]] && [[ $arm64 == true ]]; then
579584
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"
580587
fi
581588
build $mp4v2_location .libs/libmp4v2$sharedinfix.$sharedext MP4v2.$sharedext
582589

0 commit comments

Comments
 (0)