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

Builder curl-ares-solaris10-sparc Build #3416

Build In Progress:

[waiting for Lock]

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision0fdc61ffd7005a35e95bb15ef3507293338b31f5
Changes3 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git  
    1. - no logs -
    1. - no logs -
    1. - no logs -
  2. Runtest  
    1. - no logs -
    1. - no logs -

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot-unstable10s/slave/curl-ares-solaris10-sparc slave
buildername curl-ares-solaris10-sparc Builder
buildnumber 3416 Build
codebase Build
project curl Build
repository https://github.com/curl/curl.git Build
revision 0fdc61ffd7005a35e95bb15ef3507293338b31f5 Build
scheduler schedule-curl-ares-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/curl-ares-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Sascha Frinken
  2. Viktor Szakats

Timing:

StartMon Jan 19 00:33:10 2026
Elapsed2 hrs, 48 mins, 27 secs

All Changes:

:

  1. Change #255502

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 18 Jan 2026 12:45:39
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision aef128ef50a0689d414103e8d6c337ccb9d9f2cd

    Comments

    hostip: fix unreachable code in rare build configuration
    with cmake options:
    ```
    -DCMAKE_UNITY_BUILD=OFF -DCURL_DISABLE_HTTP=ON -DENABLE_THREADED_RESOLVER=OFF
    ```
    
    Fixing (seen with Apple clang 17):
    ```
    lib/hostip.c:939:16: error: code will never be executed [-Werror,-Wunreachable-code]
      940 |       *entry = dns;
          |                ^~~
    ```
    
    Closes #20344

    Changed files

    • lib/hostip.c
  2. Change #255510

    Category curl
    Changed by Sascha Frinken <sascha-frinkenohnoyoudont@users.noreply.github.com>
    Changed at Sun 18 Jan 2026 16:43:18
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 57c2690f7e6f18e78df3368c01b9ff2da180bc46

    Comments

    MQTT.md: remove no TLS (mqtts) support
    As curl now supports TLS (mqtts), it is no longer necessary to list it
    as a limitation in the docs.
    
    Closes #20343

    Changed files

    • docs/internals/MQTT.md
  3. Change #255521

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 18 Jan 2026 18:56:56
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 0fdc61ffd7005a35e95bb15ef3507293338b31f5

    Comments

    INSTALL.md: suggest `-Wl,-dead_strip` for Apple targets
    For reducing binary size. Also to remove (or greatly mitigate)
    the side-effect of using "unity" builds. Similar to `-Wl,--gc-sections`
    on non-Apple platforms.
    
    For example with curl-for-win builds, macOS arm+intel:
    
    curl (unity):                      7.7MB -> 6.8MB
    libcurl.dylib (unity):             7.2MB -> 6.4MB
    trurl /w static libcurl (!unity):  535KB -> 251KB (same size with unity)
    
    Ref: https://github.com/curl/curl-for-win/commit/c4008d658ad82aed7d70e410a91f6d14273ebb0f
    
    Closes #20346

    Changed files

    • docs/INSTALL.md