fix(macos): rebuild vendored FFmpeg libs at deployment target 12.0 #2
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "macos-fix-deploy-target"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The macos-arm64 libavcodec-slm.a / libavutil-slm.a were built for the buildbox's
host macOS (26.0), so linking the plugin (deployment target 12.0) warned "object
file was built for newer macOS" and the vendored libs silently required macOS 26.
Rebuilt with MACOSX_DEPLOYMENT_TARGET=12.0 (ffmpeg-build 4d79e9f); the plugin now
links clean and honours its advertised macOS 12.0+ target.
Ref #28