sccache is ccache with cloud storage
Перейти к файлу
Ted Mielczarek be921be644 implement LruDiskCache 2016-12-07 12:15:01 -10:00
lru-disk-cache implement LruDiskCache 2016-12-07 12:15:01 -10:00
scripts Put sccache rev in tooltool manifests 2016-11-21 07:09:01 -05:00
src Look for sccache binary in more places in system test. Should fix #37. 2016-12-01 06:36:52 -05:00
.gitignore add script to update in-tree tooltool manifests 2016-07-26 08:55:22 -04:00
.travis.yml drop rusoto, import some simple s3 code and use that 2016-08-12 14:03:37 -04:00
Cargo.lock Pull in app_dirs to get a better default local disk cache location 2016-11-17 10:59:15 -05:00
Cargo.toml Pull in app_dirs to get a better default local disk cache location 2016-11-17 10:59:15 -05:00
LICENSE Somewhat-fleshed-out skeleton. 2016-04-26 16:43:03 -04:00
README.md More friendly README for Rust beginner 2016-12-06 15:54:58 -10:00
appveyor.yml disable appveyor mingw builds for now 2016-06-12 09:58:06 -04:00
appveyor_openssl_install.ps1 don't install Win64OpenSSL for mingw builds 2016-06-08 06:05:42 -04:00
appveyor_rust_install.ps1 revert some appveyor hacks 2016-05-24 12:56:08 -04:00
generate-protocol.sh Somewhat-fleshed-out skeleton. 2016-04-26 16:43:03 -04:00
protocol.proto Fix types from str/String -> OsStr/OsString/Path as appropriate. 2016-06-01 15:42:14 -04:00

README.md

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. Building it requires cargo (and thus rustc).

We recommend you install Rust via Rustup. The generated binaries can be built so that they are very portable, see scripts/build-release.sh.

Build

$ cargo build [--release]

Installation

$ cargo install

Usage

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. If you don't specify otherwise, sccache will use a local disk cache.

You can run sccache --start-server to start the background server process without performing any compilation.

You can run sccache --stop-server to terminate the server. It will terminate after 10 minutes of inactivity.

Running sccache --show-stats will print a summary of cache statistics.

Storage Options

sccache defaults to using local disk storage. You can set the SCCACHE_DIR environment variable to change the disk cache location. By default it will use a sensible location for the current platform: ~/.cache/sccache on Linux, %LOCALAPPDATA%\Mozilla\sccache on Windows, ~/Library/Caches/sccache on OS X. See Known Caveats before using local disk cache!

If you want to use S3 storage for the sccache cache, you need to set the SCCACHE_BUCKET environment variable to the name of the S3 bucket to use.

The environment variables are only taken into account when the server starts, so only on the first run.

Known caveats

(and possible future improvements)

  • Sccache doesn't try to be smart about the command line arguments it uses when computing a key for a given compilation result (like skipping preprocessor-specific arguments)
  • It doesn't support all kinds of compiler flags, and is certainly broken with a few of them. Really only the flags used during Firefox builds have been tested.
  • It doesn't support ccache's direct mode.
  • Local storage mode doesn't do any kind of cleanup. The cache will keep growing indefinitely.
  • It doesn't support an option like CCACHE_BASEDIR.