This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit d67d81a3748aa877c9c9400034a1816d97d590d5 Author: Niklas Haas <[email protected]> AuthorDate: Fri Feb 20 20:36:34 2026 +0100 Commit: Niklas Haas <[email protected]> CommitDate: Thu Feb 26 10:16:11 2026 +0000 configure: don't support asm without memalign I tried it, and it broke horribly. We should definitively rule out this. Unfortunately, it's not as easy as just setting `disable asm` here, because asm having been enabled will already have affected the build process further upstream - conversely, we don't know whether or not memalign exists until fairly late in the build process, and I'm not about to go destroying the current organization of the file just to work around this. So an error message it is. --- configure | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/configure b/configure index ab8c1b3a61..26955aa916 100755 --- a/configure +++ b/configure @@ -8183,6 +8183,13 @@ haiku) ;; esac +if ! enabled_any memalign posix_memalign aligned_malloc; then + if enabled_any asm inline_asm; then + die "ERROR: Building with assembly enabled is not supported on platforms "\ + "without aligned memory allocations! Try reconfiguring with --disable-asm" + fi +fi + flatten_extralibs(){ nested_entries= list_name=$1 _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
