From 79c3360311788ccad10c4b06e024b1cf7cd3de8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Leszko?= Date: Wed, 16 Oct 2024 09:59:10 +0200 Subject: [PATCH 1/2] Fix cross-compilation by compiling zlib from source --- install_ffmpeg.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/install_ffmpeg.sh b/install_ffmpeg.sh index 2b37c87cc6..02ba4de666 100755 --- a/install_ffmpeg.sh +++ b/install_ffmpeg.sh @@ -153,6 +153,16 @@ if [[ ! -e "$ROOT/x264" ]]; then make -j$NPROC install-lib-static fi +if [[ ! -e "$ROOT/zlib-1.2.11" ]]; then + cd "$ROOT" + curl -o zlib-1.2.11.tar.gz https://zlib.net/fossils/zlib-1.2.11.tar.gz + tar xf zlib-1.2.11.tar.gz + cd zlib-1.2.11 + ./configure --prefix="$ROOT/compiled" --static + make -j$NPROC + make -j$NPROC install +fi + if [[ "$GOOS" == "linux" && "$BUILD_TAGS" == *"debug-video"* ]]; then sudo apt-get install -y libnuma-dev cmake if [[ ! -e "$ROOT/x265" ]]; then From 1bf8bff19aa9468d428e0cfbb398afbe618bb839 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Leszko?= Date: Wed, 16 Oct 2024 17:51:22 +0200 Subject: [PATCH 2/2] Fix cross-compilation by compiling zlib from source --- install_ffmpeg.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/install_ffmpeg.sh b/install_ffmpeg.sh index 02ba4de666..6125467734 100755 --- a/install_ffmpeg.sh +++ b/install_ffmpeg.sh @@ -42,9 +42,11 @@ if [[ "$BUILDARCH" == "amd64" && "$BUILDOS" == "linux" && "$GOARCH" == "arm64" & export STRIP="llvm-strip-14" export AR="llvm-ar-14" export RANLIB="llvm-ranlib-14" + export CFLAGS="--target=aarch64-linux-gnu" + export LDFLAGS="--target=aarch64-linux-gnu" EXTRA_CFLAGS="--target=aarch64-linux-gnu -I/usr/local/cuda_arm64/include $EXTRA_CFLAGS" EXTRA_LDFLAGS="-fuse-ld=lld --target=aarch64-linux-gnu -L/usr/local/cuda_arm64/lib64 $EXTRA_LDFLAGS" - EXTRA_FFMPEG_FLAGS="$EXTRA_FFMPEG_FLAGS --arch=aarch64 --enable-cross-compile --cc=clang --strip=llvm-strip-14" + EXTRA_FFMPEG_FLAGS="$EXTRA_FFMPEG_FLAGS --arch=aarch64 --enable-cross-compile --cc=clang-14 --strip=llvm-strip-14" HOST_OS="--host=aarch64-linux-gnu" fi