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

Builder ffmpeg64-solaris10-sparc Build #10906

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision20fbc07af1ebd5a68b8fd1203ceb4cab60bd7328
Got Revision20fbc07af1ebd5a68b8fd1203ceb4cab60bd7328
Changes4 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 9 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 ( 6 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-unstable10s/slave/ffmpeg64-solaris10-sparc slave
buildername ffmpeg64-solaris10-sparc Builder
buildnumber 10906 Build
codebase Build
got_revision 20fbc07af1ebd5a68b8fd1203ceb4cab60bd7328 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 20fbc07af1ebd5a68b8fd1203ceb4cab60bd7328 Build
scheduler schedule-ffmpeg64-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/ffmpeg64-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Rémi Denis-Courmont

Timing:

StartTue May 14 19:04:10 2024
EndTue May 14 19:04:27 2024
Elapsed16 secs

All Changes:

:

  1. Change #197245

    Category ffmpeg
    Changed by Rémi Denis-Courmont <remiohnoyoudont@remlab.net>
    Changed at Tue 14 May 2024 18:50:00
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 61ec7450ff2c0ac16c5a1e66b14de6daf7b48206

    Comments

    lavu/riscv: fallback to raw hwprobe() system call
    Not all C run-times support this, and even then, it will be a while
    before distributions provide recent enough versions thereof.
    
    Since this is a trivial system call wrapper, we might just as well call
    the corresponding kernel system call directly where the C run-time lacks
    support but the kernel headers are new enough (as is the case on Debian
    Unstable at the time of writing). In doing so, we need to add a few more
    guards as the first suitable kernel (headers) release did not expose the
    V, Zba and Zbb extensions.

    Changed files

    • configure
    • libavutil/riscv/cpu.c
  2. Change #197246

    Category ffmpeg
    Changed by Rémi Denis-Courmont <remiohnoyoudont@remlab.net>
    Changed at Tue 14 May 2024 18:50:00
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision b410439263e1018912581c8ff672e3f0ed800875

    Comments

    lavu/riscv: CPU flag for fast misaligned accesses

    Changed files

    • libavutil/cpu.c
    • libavutil/cpu.h
    • libavutil/riscv/cpu.c
    • libavutil/tests/cpu.c
    • tests/checkasm/checkasm.c
  3. Change #197247

    Category ffmpeg
    Changed by Rémi Denis-Courmont <remiohnoyoudont@remlab.net>
    Changed at Tue 14 May 2024 18:50:00
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 9d3f561721cd710bf403af991a0e36ccc9e8d8c8

    Comments

    lavc/vp8dsp: restrict RVI optimisations
    They are actually awfully slow if the CPU does not support misaligned
    accesses natively, so only use them if misaligned accesses are fast.

    Changed files

    • libavcodec/riscv/vp8dsp_init.c
  4. Change #197248

    Category ffmpeg
    Changed by Rémi Denis-Courmont <remiohnoyoudont@remlab.net>
    Changed at Tue 14 May 2024 18:50:00
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 20fbc07af1ebd5a68b8fd1203ceb4cab60bd7328

    Comments

    lavu/riscv: remove bogus B extension
    The B Bit manipulation extension was not defined to this day, and
    probably never will. Instead it was broken down into Zba, Zbb, Zbc and
    Zbs with no particular blessed set to make up B.
    
    This removes the bogus field test. Linux never set this bit, nor
    (AFAICT) did FreeBSD or any other OS. We can always add it back in the
    unlikely event that it gets taken into use.

    Changed files

    • libavutil/riscv/cpu.c