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

Builder ffmpeg64-solaris10-i386 Build #13517

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision7d57621b832a68c7b150fb2aab1c02e14c82144d
Got Revision7d57621b832a68c7b150fb2aab1c02e14c82144d
Changes1 change

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 6 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 ( 14 secs )
    1. stdio
    2. config.log
  6. shell_4 'gmake fate-rsync' failed ( 4 secs )
    1. stdio
  7. shell_5 '../../../ffmpeg/fate.sh ../../../ffmpeg/fate_config_64.sh' failed ( 1 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 13517 Build
codebase Build
got_revision 7d57621b832a68c7b150fb2aab1c02e14c82144d Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 7d57621b832a68c7b150fb2aab1c02e14c82144d 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 22:44:49 2026
EndMon Mar 30 22:45:16 2026
Elapsed27 secs

All Changes:

:

  1. Change #262901

    Category ffmpeg
    Changed by Kacper Michajłow <kasper93ohnoyoudont@gmail.com>
    Changed at Mon 30 Mar 2026 19:46:53
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 7d57621b832a68c7b150fb2aab1c02e14c82144d

    Comments

    avutil/x86/x86util: tone down NASM workaround and use info section
    The use of code section (.text) was forced by the unreleased NASM
    3.02rc3 which made the issue worse, but preventing assambling anything
    without code section, including when only data was present.
    
    This works fine for the most part, but using code (.text) section with
    IMAGE_COMDAT_SELECT_ANY causes issues with lib.exe after stripping such
    object:
    fatal error LNK1143: invalid or corrupt file: no symbol for COMDAT section 0x2
    
    Esentially it makes our workaround not work in all cases, and while
    string could be disabled like it already is for MSVC/ICL builds, it used
    to work so let's preserve that state.
    
    This make it not compatible with NASM 3.02rc3 when CV debug info is
    generated, but hopefully the upstream fix will be merged before release,
    to avoid this regression:
    https://github.com/netwide-assembler/nasm/pull/221
    
    Signed-off-by: Kacper Michajłow <kasper93@gmail.com>

    Changed files

    • libavutil/x86/x86util.asm