sccache 0.16.0

Sccache is a ccache-like tool. It is used as a compiler wrapper and avoids compilation when possible. Sccache has the capability to utilize caching in remote storage environments, including various cloud storage options, or alternatively, in local storage.
Documentation
1
2
3
4
FROM silkeh/clang:21-trixie
RUN apt-get update -qq && apt-get install -y -qq ninja-build python3 python3-pip \
    && pip install --break-system-packages cmake \
    && rm -rf /var/lib/apt/lists/*