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

Builder ffmpegsos-solaris10-sparc Build #13760

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

The SingleBranchScheduler scheduler named 'schedule-ffmpegsos-solaris10-sparc' triggered this build

Steps and Logfiles:

  1. git update ( 55 secs )
    1. stdio
  2. shell 'gsed -i ...' ( 0 secs )
    1. stdio
  3. shell_1 'gsed -i ...' ( 1 secs )
    1. stdio
  4. shell_2 'gsed -i ...' failed ( 0 secs )
    1. stdio
  5. shell_3 './configure --samples="../../../ffmpeg/fate-suite" ...' failed ( 27 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_sos.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-unstable10s/slave/ffmpegsos-solaris10-sparc slave
buildername ffmpegsos-solaris10-sparc Builder
buildnumber 13760 Build
codebase Build
got_revision 9862dd83b1645b0c6e39b318aefb896138ffb08e Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 9862dd83b1645b0c6e39b318aefb896138ffb08e Build
scheduler schedule-ffmpegsos-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/ffmpegsos-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Kacper Michajłow

Timing:

StartMon Aug 3 18:40:28 2026
EndMon Aug 3 18:41:56 2026
Elapsed1 mins, 27 secs

All Changes:

:

  1. Change #276923

    Category ffmpeg
    Changed by Kacper Michajłow <kasper93ohnoyoudont@gmail.com>
    Changed at Mon 03 Aug 2026 20:16:24
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 9862dd83b1645b0c6e39b318aefb896138ffb08e

    Comments

    avcodec/aarch64/vc1dsp_neon: reduce literal pool alignment to 16 bytes
    armasm64 warns "A4228: Alignment value exceeds AREA alignment; alignment
    not guaranteed" on the .Lcoeffs literal pool. gas-preprocessor.pl emits
    the text section as "AREA |.text|, CODE, READONLY, ALIGN=4", i.e. a
    16-byte section alignment, so a 32-byte ALIGN inside it cannot be
    guaranteed by the assembler.
    
    16 is enough here: the pool holds .quad values that are read with
    "ldr d0, .Lcoeffs" literal loads, which only require 8-byte alignment.
    It also matches the rest of the aarch64 asm, where the function and
    const macros both default to .align 4.
    
    Signed-off-by: Kacper Michajłow <kasper93@gmail.com>

    Changed files

    • libavcodec/aarch64/vc1dsp_neon.S