blob: 62051af13937e63d34370ffe1404297eb3948f09 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
menu "Configuration options (for developers)"
config RUST_SCCACHE
bool "Use sccache"
help
Shared compilation cache; see https://github.com/mozilla/sccache
config RUST_SCCACHE_DIR
string "Set sccache directory" if RUST_SCCACHE
default ""
help
Store sccache in this directory.
If not set, uses './.sccache'
endmenu
|