fix(build): launch crash — @rpath/libz.1.dylib had no LC_RPATH

The static FFmpeg's external codec libs pull in -lz, which on this
toolchain resolves to a copy whose install name is @rpath/libz.1.dylib
(zlib-ng-compat); without an LC_RPATH entry all three binaries died in
dyld at startup. The app/cli/worker build scripts now emit
-Wl,-rpath,/usr/lib.

Also: FFMPEG_DIR moves into the committed .cargo/config.toml as a
workspace-relative [env] entry — ffmpeg-sys-next's build script cannot
read .env files, and without it the crate silently linked the shared
Homebrew FFmpeg while oakffmpeg-link emitted the static transitive
flags (mixed linkage). docs/build.md updated.
This commit is contained in:
2026-08-17 19:42:45 +08:00
parent b36cbd6b6f
commit 61da70ecf8
7 changed files with 100 additions and 2 deletions
+24
View File
@@ -0,0 +1,24 @@
# Oak Video Editor - Non-Linear Video Editor
# Copyright (C) 2026 Oak Team
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# The project FFmpeg (built by tooling/ffmpeg/build-ffmpeg.sh into
# .cache/ffmpeg) is the only supported FFmpeg: ffmpeg-sys-next reads
# FFMPEG_DIR at build-script time, which cannot come from a .env file —
# a relative [env] entry here is the only machine-agnostic way to set
# it. Run tooling/ffmpeg/build-ffmpeg.sh once before the first build.
[env]
FFMPEG_DIR = { value = ".cache/ffmpeg", relative = true }
+6
View File
@@ -30,5 +30,11 @@ fn main() {
let os = std::env::var("CARGO_CFG_TARGET_OS").unwrap_or_default();
if os == "macos" {
println!("cargo:rustc-link-lib=framework=IOSurface");
// The static FFmpeg's external codec libraries pull in `-lz`, and
// on some machines that resolves to a package-manager copy whose
// install name is @rpath/libz.1.dylib; without an LC_RPATH entry
// the binary dies at launch ("Library not loaded"). Map the rpath
// at the real system library.
println!("cargo:rustc-link-arg=-Wl,-rpath,/usr/lib");
}
}
+28
View File
@@ -0,0 +1,28 @@
// Oak Video Editor - Non-Linear Video Editor
// Copyright (C) 2026 Oak Team
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//! Build-time link configuration.
fn main() {
if std::env::var("CARGO_CFG_TARGET_OS").as_deref() == Ok("macos") {
// The static FFmpeg's external codec libraries pull in `-lz`, and
// on some machines that resolves to a package-manager copy whose
// install name is @rpath/libz.1.dylib; without an LC_RPATH entry
// the binary dies at launch ("Library not loaded"). Map the rpath
// at the real system library.
println!("cargo:rustc-link-arg=-Wl,-rpath,/usr/lib");
}
}
+28
View File
@@ -0,0 +1,28 @@
// Oak Video Editor - Non-Linear Video Editor
// Copyright (C) 2026 Oak Team
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//! Build-time link configuration.
fn main() {
if std::env::var("CARGO_CFG_TARGET_OS").as_deref() == Ok("macos") {
// The static FFmpeg's external codec libraries pull in `-lz`, and
// on some machines that resolves to a package-manager copy whose
// install name is @rpath/libz.1.dylib; without an LC_RPATH entry
// the binary dies at launch ("Library not loaded"). Map the rpath
// at the real system library.
println!("cargo:rustc-link-arg=-Wl,-rpath,/usr/lib");
}
}
+8
View File
@@ -90,6 +90,14 @@ fn main() {
);
}
// System libraries (z, m, bz2, iconv) must come from the OS, not from
// a package manager's keg: Homebrew's zlib carries an @rpath install
// name, and linking it without an rpath entry breaks the binary at
// launch (dyld: Library not loaded: @rpath/libz.1.dylib). Put /usr/lib
// first in the search order so -lz resolves to the system copy.
#[cfg(target_os = "macos")]
println!("cargo:rustc-link-search=native=/usr/lib");
for token in String::from_utf8_lossy(&output.stdout).split_whitespace() {
if let Some(path) = token.strip_prefix("-L") {
println!("cargo:rustc-link-search=native={path}");
+5 -1
View File
@@ -23,10 +23,14 @@ This document describes how to build Oak Video Editor from source on Windows, Li
> ```sh
> tooling/install-deps.sh # Homebrew / MSYS2 UCRT64 / Debian / Fedora / Arch
> tooling/ffmpeg/build-ffmpeg.sh # clones release/8.0, installs into .cache/ffmpeg
> export FFMPEG_DIR="$(pwd)/.cache/ffmpeg"
> cargo build
> ```
>
> `FFMPEG_DIR` no longer needs exporting: the committed
> `.cargo/config.toml` sets it relative to the workspace root (the
> ffmpeg-sys-next build script cannot read `.env` files — this is the
> only machine-agnostic way).
>
> External libraries are probed with `pkg-config` and silently skipped
> when missing. `FFMPEG_DIR` is mandatory (the `oakffmpeg-link` build
> script panics without it): silently binding a system FFmpeg risks
+1 -1
View File
@@ -1,4 +1,4 @@
# M14:前端绕过 facade 直链 rlib(纯 Rust ABI
# M14:前端绕过 facade 直链 rlib(纯 Rust ABI
> 前置:单库化(single-lib.md+ 模块 bridge/ffi 清除已完成;
> liboakengine.dylib 的 C ABI 冻结,专供插件/外部消费者。