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

Builder ffmpeg64-solaris10-i386 Build #13520

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision53537f6cf5bcb43d716dfbdc5f306f547cea5a4e
Got Revision53537f6cf5bcb43d716dfbdc5f306f547cea5a4e
Changes2 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 ( 8 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 13520 Build
codebase Build
got_revision 53537f6cf5bcb43d716dfbdc5f306f547cea5a4e Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 53537f6cf5bcb43d716dfbdc5f306f547cea5a4e 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. Ramiro Polla

Timing:

StartTue Mar 31 13:55:00 2026
EndTue Mar 31 13:55:16 2026
Elapsed16 secs

All Changes:

:

  1. Change #263004

    Category ffmpeg
    Changed by Ramiro Polla <ramiro.pollaohnoyoudont@gmail.com>
    Changed at Tue 31 Mar 2026 13:48:52
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision af443abe99cfac2ad0ac33dbe029636092867c8b

    Comments

    aarch64: Add support for indirect branch targets in the function macro
    The function macro emits AARCH64_VALID_CALL_TARGET for exported symbols,
    marking them as valid destinations for indirect _calls_. Functions that
    are reached by indirect _branches_ (i.e. tail-call dispatch chains
    where the link register is not set) require AARCH64_VALID_JUMP_TARGET
    instead.
    
    This commit adds a "jumpable" parameter to the function macro that, when
    set, emits AARCH64_VALID_JUMP_TARGET instead of AARCH64_VALID_CALL_TARGET.
    
    Sponsored-by: Sovereign Tech Fund
    Signed-off-by: Ramiro Polla <ramiro.polla@gmail.com>

    Changed files

    • libavutil/aarch64/asm.S
  2. Change #263005

    Category ffmpeg
    Changed by Ramiro Polla <ramiro.pollaohnoyoudont@gmail.com>
    Changed at Tue 31 Mar 2026 13:48:52
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 53537f6cf5bcb43d716dfbdc5f306f547cea5a4e

    Comments

    swscale/aarch64: mark CPS kernel functions as indirect branch targets
    Only the process functions are entered via an indirect _call_ from C.
    The kernel functions and process_return are dispatched to by indirect
    _branches_ instead (continuation-passing style design).
    
    Make use of the recently added "jumpable" parameter to the function
    macro in libavutil/aarch64/asm.S to fix these functions when BTI is
    enabled.
    
    Sponsored-by: Sovereign Tech Fund
    Signed-off-by: Ramiro Polla <ramiro.polla@gmail.com>

    Changed files

    • libswscale/aarch64/ops_asmgen.c
    • libswscale/aarch64/rasm.c
    • libswscale/aarch64/rasm.h
    • libswscale/aarch64/rasm_print.c