PR #20947 opened by Kacper Michajłow (kasper93) URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20947 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20947.patch
From 3616b152ce8899437442b290d1a74bfbb4836961 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kacper=20Michaj=C5=82ow?= <[email protected]> Date: Mon, 17 Nov 2025 19:57:31 +0100 Subject: [PATCH] fate: add more configure flags to fate config MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Kacper Michajłow <[email protected]> --- tests/fate.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/fate.sh b/tests/fate.sh index 4081e865ae..2d6313820f 100755 --- a/tests/fate.sh +++ b/tests/fate.sh @@ -55,13 +55,17 @@ configure()( ${cross_prefix:+--cross-prefix="$cross_prefix"} \ ${as:+--as="$as"} \ ${cc:+--cc="$cc"} \ + ${cxx:+--cxx="$cxx"} \ ${ld:+--ld="$ld"} \ + ${nm:+--nm="$nm"} \ ${target_os:+--target-os="$target_os"} \ ${sysroot:+--sysroot="$sysroot"} \ ${target_exec:+--target-exec="$target_exec"} \ ${target_path:+--target-path="$target_path"} \ ${target_samples:+--target-samples="$target_samples"} \ ${extra_cflags:+--extra-cflags="$extra_cflags"} \ + ${extra_cxxflags:+--extra-cxxflags="$extra_cxxflags"} \ + ${extra_objcflags:+--extra-objcflags="$extra_objcflags"} \ ${extra_ldflags:+--extra-ldflags="$extra_ldflags"} \ ${extra_libs:+--extra-libs="$extra_libs"} \ ${extra_conf} -- 2.49.1 _______________________________________________ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]
