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

Builder ffmpeg64-solaris10-i386 Build #13509

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision80cd0677158b7ea4394d8e1594c7a1c984184f5b
Got Revision80cd0677158b7ea4394d8e1594c7a1c984184f5b
Changes3 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 ( 7 secs )
    1. stdio
    2. config.log
  6. shell_4 'gmake fate-rsync' failed ( 0 secs )
    1. stdio
  7. shell_5 '../../../ffmpeg/fate.sh ../../../ffmpeg/fate_config_64.sh' failed ( 0 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 13509 Build
codebase Build
got_revision 80cd0677158b7ea4394d8e1594c7a1c984184f5b Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 80cd0677158b7ea4394d8e1594c7a1c984184f5b 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. Kacper Michajłow

Timing:

StartMon Mar 30 00:05:01 2026
EndMon Mar 30 00:05:16 2026
Elapsed15 secs

All Changes:

:

  1. Change #262778

    Category ffmpeg
    Changed by Kacper Michajłow <kasper93ohnoyoudont@gmail.com>
    Changed at Sun 29 Mar 2026 22:22:29
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 2b8ca0f3c5ed79226716ce1bc8e2d935164f830d

    Comments

    avfilter/x86/avf_showcqt: add missing section declaration
    Signed-off-by: Kacper Michajłow <kasper93@gmail.com>

    Changed files

    • libavfilter/x86/avf_showcqt.asm
  2. Change #262779

    Category ffmpeg
    Changed by Kacper Michajłow <kasper93ohnoyoudont@gmail.com>
    Changed at Sun 29 Mar 2026 22:22:29
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 2b1d8ba3ecb8bb302db2c8dadf4350d800ddf719

    Comments

    avfilter/x86/vf_atadenoise: move %if ARCH_X86_64 after x86util include
    This is consistent pattern with other files. Also is needed for next
    commit to always include x86util.asm
    
    Signed-off-by: Kacper Michajłow <kasper93@gmail.com>

    Changed files

    • libavfilter/x86/vf_atadenoise.asm
  3. Change #262780

    Category ffmpeg
    Changed by Kacper Michajłow <kasper93ohnoyoudont@gmail.com>
    Changed at Sun 29 Mar 2026 23:00:06
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 80cd0677158b7ea4394d8e1594c7a1c984184f5b

    Comments

    avutil/x86util: don't produce empty object files on win{32,64}
    In cases when preprocesor would remove all code, nasm would produce
    empty object files. This is technically not wrong, but often cause
    issues with various tooling:
    
    * NASM fails to emit CodeView debug info when there is no code [1]
    * Older VS2022 builds hangs on empty files [2]
    * GNU binutils `strip` errors when there is no sections [3]
    error: the input file '.o' has no sections
    
    Workaround those issues by adding dummy byte in COMDAT section,
    which is then dropped by linker, as the `__x86util_notref` symbol is not
    referenced from C. [4] IMAGE_COMDAT_SELECT_ANY (2) is used to allow
    multiple symbol definition.
    
    This is limited to win{32,64} as this is the target where issues were
    observed.
    
    [1] https://github.com/netwide-assembler/nasm/issues/216
    [2] https://developercommunity.visualstudio.com/t/MSVC-Hangs-when-compiling-ffmpeg-When-l/10233953
    [3] https://trac.ffmpeg.org/ticket/6711
    [4] https://www.nasm.us/docs/3.01/nasm09.html#section-9.6.1
    
    Signed-off-by: Kacper Michajłow <kasper93@gmail.com>

    Changed files

    • libavutil/x86/x86util.asm