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

Builder ffmpeg64-solaris10-i386 Build #14092

Results:

Failed

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision35b7df64a0146fc0e2effb88151f912dcd80756b
Changes1 change

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git updating ( 22 secs )
    1. stdio
  2. shell  
    1. - no logs -
  3. shell_1  
    1. - no logs -
  4. shell_2  
    1. - no logs -
  5. shell_3  
    1. - no logs -
  6. shell_4  
    1. - no logs -
  7. shell_5  
    1. - no logs -

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/ffmpeg64-solaris10-i386 slave
buildername ffmpeg64-solaris10-i386 Builder
buildnumber 14092 Build
codebase Build
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 35b7df64a0146fc0e2effb88151f912dcd80756b 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. Martin Storsjö

Timing:

StartTue Sep 8 12:24:33 2026
EndTue Sep 8 12:24:55 2026
Elapsed22 secs

All Changes:

:

  1. Change #281111

    Category ffmpeg
    Changed by Martin Storsjö <martinohnoyoudont@martin.st>
    Changed at Tue 08 Sep 2026 14:03:06
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 35b7df64a0146fc0e2effb88151f912dcd80756b

    Comments

    swscale/jit: Fix getting MAP_ANONYMOUS defined on older glibc
    This file attempts to define _DEFAULT_SOURCE and similar macros
    to affect the system headers regarding what APIs they expose.
    
    However, as this file includes libavutil/error.h before defining
    the _*_SOURCE macros, we may end up including system headers that
    end up initializing which features are exposed, before we set our
    defines (before including <sys/mman.h>).
    
    This is not an issue with glibc 2.37 and newer, since those versions
    stopped looking for defines like _DEFAULT_SOURCE for exposing
    MAP_ANONYMOUS (see [1]). This wasn't an issue before these functions
    were split out to a separate file in
    4d9be5f57c0e3153c1741bcfc54a13d0d3943f43 either, as these defines
    used to be set at the top of libswscale/utils.c, before including other
    headers than config.h.
    
    [1] https://sourceware.org/git/?p=glibc.git;a=commit;h=954b8f38958de72c4712088735eb175118f17b51

    Changed files

    • libswscale/jit.c