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

Builder ffmpeg-solaris10-sparc Build #13274

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 1 mins, 14 secs )
    1. stdio
  2. shell 'gsed -i ...' ( 1 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 ( 30 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.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-unstable10s/slave/ffmpeg-solaris10-sparc slave
buildername ffmpeg-solaris10-sparc Builder
buildnumber 13274 Build
codebase Build
got_revision 74cfcd1c6912f3cdd74d0ba58c316b04a11691f0 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 74cfcd1c6912f3cdd74d0ba58c316b04a11691f0 Build
scheduler schedule-ffmpeg-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/ffmpeg-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Martin Storsjö

Timing:

StartThu Mar 5 12:37:46 2026
EndThu Mar 5 12:39:38 2026
Elapsed1 mins, 52 secs

All Changes:

:

  1. Change #259916

    Category ffmpeg
    Changed by Martin Storsjö <martinohnoyoudont@martin.st>
    Changed at Thu 05 Mar 2026 10:57:40
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 74cfcd1c6912f3cdd74d0ba58c316b04a11691f0

    Comments

    aarch64/vvc: Fix DCE undefined references with MSVC
    This fixes compiling with MSVC for aarch64 after
    510999f6b07b6996983c7ef24c3cf41a06241261.
    
    While MSVC does do dead code elimintation for function references
    within e.g. "if (0)", it doesn't do that for functions referenced
    within a static function, even if that static function itself ends
    up not used.
    
    A reproduction example:
    
        void missing(void);
        void (*func_ptr)(void);
    
        static void wrapper(void) {
            missing();
        }
    
        void init(int cpu_flags) {
            if (0) {
                func_ptr = wrapper;
            }
        }
    
    If "wrapper" is entirely unreferenced, then MSVC doesn't produce
    any reference to the symbol "missing". Also, if we do
    "func_ptr = missing;" then the reference to missing also is
    eliminated. But for the case of referencing the function in a
    static function, even if the reference to the static function can
    be eliminated, then MSVC does keep the reference to the symbol.

    Changed files

    • libavcodec/aarch64/vvc/alf_template.c