Build Status Build status

sccache - Shared Compilation Cache

Sccache is a ccache-like tool. It is used as a compiler wrapper and avoids compilation when possible, storing a cache in a remote storage using the S3 API.

It works as a client-server. The client spawns a server if one is not running already, and sends the wrapped command line as a request to the server, which then does the work and returns stdout/stderr for the job. The client-server model allows the server to be more efficient in its handling of the remote storage.

Sccache can also be used with local storage instead of remote.

Requirements

Sccache is a Rust program.

Usage

Before using sccache, you need to set one of the following environment variables:

Only SCCACHE_DIR will be used if both are set. Those variables are only taken into account when the server starts, so only on the first run.

Running sccache is like running ccache: wrap your compilation commands with it, like so:

$ sccache gcc -o foo.o -c foo.c

Sccache (tries to) support gcc, clang and MSVC.

Running sccache without a compilation command line will terminate the server.

Known caveats

(and possible future improvements)