Home - Waterfall Grid T-Grid Console Builders Recent Builds Buildslaves Changesources - JSON API - About

Builder ffmpeg64-solaris10-i386 Build #13399

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision835781af23d9c45f25bee9d8faaa864d0dad6ee2
Got Revision835781af23d9c45f25bee9d8faaa864d0dad6ee2
Changes2 changes

BuildSlave:

unstable10x

Reason:

The SingleBranchScheduler scheduler named 'schedule-ffmpeg64-solaris10-i386' triggered this build

Steps and Logfiles:

  1. git update ( 5 secs )
    1. stdio
  2. shell 'gsed -i ...' ( 0 secs )
    1. stdio
  3. shell_1 'gsed -i ...' ( 0 secs )
    1. stdio
  4. shell_2 'gsed -i ...' failed ( 0 secs )
    1. stdio
  5. shell_3 './configure --samples="../../../ffmpeg/fate-suite" ...' failed ( 8 secs )
    1. stdio
    2. config.log
  6. shell_4 'gmake fate-rsync' failed ( 2 secs )
    1. stdio
  7. shell_5 '../../../ffmpeg/fate.sh ../../../ffmpeg/fate_config_64.sh' failed ( 2 secs )
    1. stdio
    2. configure.log
    3. compile.log
    4. test.log

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/ffmpeg64-solaris10-i386 slave
buildername ffmpeg64-solaris10-i386 Builder
buildnumber 13399 Build
codebase Build
got_revision 835781af23d9c45f25bee9d8faaa864d0dad6ee2 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 835781af23d9c45f25bee9d8faaa864d0dad6ee2 Build
scheduler schedule-ffmpeg64-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/ffmpeg64-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Andreas Rheinhardt

Timing:

StartThu Mar 12 19:16:40 2026
EndThu Mar 12 19:16:59 2026
Elapsed18 secs

All Changes:

:

  1. Change #260893

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Thu 12 Mar 2026 18:26:42
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 9bbe1ec86ffcd3966446e8b428779e5e6414d4f8

    Comments

    avutil/opt: Remove obsolete LIBAVUTIL_VERSION_MAJOR checks
    Removing them has been forgotten during the lavu 59->60 bump.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • libavutil/opt.c
  2. Change #260894

    Category ffmpeg
    Changed by Andreas Rheinhardt <andreas.rheinhardtohnoyoudont@outlook.com>
    Changed at Thu 12 Mar 2026 18:26:45
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 835781af23d9c45f25bee9d8faaa864d0dad6ee2

    Comments

    configure,swscale/x86/Makefile: Remove special red-zone handling
    ff_h[yc]scale_fast_mmxext() call other functions from inline assembly;
    these functions look like leaf functions to GCC, so it may use the
    red zone to avoid modifying the stack. But this makes the call
    instructions in the inline asm corrupt the stack.
    
    In order to fix this 424bcc46b5fb0d662e0fb9ad6319c5b9ef3d770f
    made libswscale/x86/swscale_mmx.o be compiled with -mno-red-zone.
    Later Libav fixed it in their version in commit
    b14fa5572c2a3bb1d8cd6327c4687a2eee363bbb by saving and restoring
    the memory clobbered by the call (as is still done now). This was
    merged into FFmpeg in 0e7fc3cafe838b32c3af73954acf9de2f9240ffd,
    without touching the -mno-red-zone hack.
    
    Libav later renamed swscale_mmx.c to just swscale.c in
    16d2a1a51c1dbdd69ee47b19c8ab66b905b7c5ce which was merged into FFmpeg
    in commit 2cb4d516549526b5e17e941f6d2375a2c501ade6, without
    removing the -mno-red-zone hack, although the file it applies to
    no longer existed.
    
    This commit removes the special red-zone handling given that it is
    inactive anyway.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    Changed files

    • configure
    • libswscale/x86/Makefile