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.
I have a very large Rust project that uses a custom target .json, and I would like to add support for this to sccache. Is this possible? If so, could anyone give me advice on the implementation as I'm not familiar with the sccache codebase.
I have a very large Rust project that uses a custom target
.json
, and I would like to add support for this tosccache
. Is this possible? If so, could anyone give me advice on the implementation as I'm not familiar with thesccache
codebase.