This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit bbc257c50fb360ae148c7d23b569c4a232d228c7 Author: Kacper Michajłow <[email protected]> AuthorDate: Sat Aug 22 17:38:17 2026 +0200 Commit: Kacper Michajłow <[email protected]> CommitDate: Tue Sep 8 03:00:15 2026 +0200 configure: remove llvm-gcc support The llvm-gcc frontend was discontinued in 2012 with a gcc 4.2 base and cannot pass the C11 support check. Signed-off-by: Kacper Michajłow <[email protected]> --- configure | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/configure b/configure index 4ab8f9a0c5..d19d0a3bfd 100755 --- a/configure +++ b/configure @@ -5343,13 +5343,6 @@ probe_cc(){ if $_cc --version 2>&1 | grep -q '^GNU assembler'; then true # no-op to avoid reading stdin in following checks - elif $_cc -v 2>&1 | grep -q '^gcc.*LLVM'; then - _type=llvm_gcc - gcc_extra_ver=$(expr "$($_cc --version 2>/dev/null | head -n1)" : '.*\((.*)\)') - _ident="llvm-gcc $($_cc -dumpversion 2>/dev/null) $gcc_extra_ver" - _depflags='-MMD -MF $(@:.o=.d) -MT $@' - _cflags_speed='-O3' - _cflags_size='-Os' elif $_cc -v 2>&1 | grep -qi ^gcc; then _type=gcc gcc_version=$($_cc --version | head -n1) @@ -5604,7 +5597,7 @@ add_asflags $extra_cflags if test -n "$sysroot"; then case "$cc_type" in - gcc|llvm_gcc|clang) + gcc|clang) add_cppflags --sysroot="$sysroot" add_ldflags --sysroot="$sysroot" ;; @@ -5616,7 +5609,7 @@ if test "$cpu" = host; then warn "--cpu=host makes no sense when cross-compiling." case "$cc_type" in - gcc|llvm_gcc) + gcc) check_native(){ : > $TMPC $cc $1=native -v -c -o $TMPO $TMPC >$TMPE 2>&1 || return @@ -8118,8 +8111,6 @@ elif enabled gcc; then ;; esac fi -elif enabled llvm_gcc; then - check_allcflags -mllvm -stack-alignment=16 elif enabled clang; then if enabled x86_32; then # Clang doesn't support maintaining alignment without assuming the -- To stop receiving notification emails like this one, please contact [email protected]. _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
