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

Builder ffmpeg64-solaris10-i386 Build #13869

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

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

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 ( 7 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 13869 Build
codebase Build
got_revision 6e857f12a7a484aaae811d14e38fe2704829ca68 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 6e857f12a7a484aaae811d14e38fe2704829ca68 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. Diego de Souza

Timing:

StartWed Jun 3 21:52:39 2026
EndWed Jun 3 21:52:52 2026
Elapsed13 secs

All Changes:

:

  1. Change #269450

    Category ffmpeg
    Changed by Diego de Souza <ddesouzaohnoyoudont@nvidia.com>
    Changed at Wed 03 Jun 2026 21:45:19
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 6e857f12a7a484aaae811d14e38fe2704829ca68

    Comments

    avfilter/vf_scale_cuda: avoid <stdint.h> in CUDA device compilation
    The device-only compilation path of vf_scale_cuda.h pulled in <stdint.h>
    solely to obtain uint8_t for the CUdeviceptr typedef. On Windows-on-ARM
    (aarch64 mingw) this drags in _mingw.h, whose ARM __prefetch intrinsic is
    guarded by !__has_builtin(__prefetch). During clang's --cuda-device-only
    pass __has_builtin has deferred/inconsistent semantics on the auxiliary
    (host) target, so the guard mis-fires, the inline __prefetch definition is
    emitted, and clang rejects it:
    
        _mingw.h: error: definition of builtin function '__prefetch'
    
    This broke the msys2-clangarm64 FATE slot once ffnvcodec (and thus the
    nvcc-compiled CUDA filters) was enabled for aarch64 Windows.
    
    uint8_t is unsigned char, so use that directly and drop the <stdint.h>
    include. Device-only code should not depend on the host C runtime headers.
    No functional or ABI change.
    
    Signed-off-by: Diego de Souza <ddesouza@nvidia.com>

    Changed files

    • libavfilter/vf_scale_cuda.h