aboutsummaryrefslogtreecommitdiff
path: root/lang/rust/Config.in
diff options
context:
space:
mode:
authorJeffery To <jeffery.to@gmail.com>2023-09-25 10:00:58 +0800
committerJeffery To <jeffery.to@gmail.com>2023-10-11 15:50:24 +0800
commitb4ec01739865770e3d0432683406844f7fd8e707 (patch)
tree90ae88c7946cb34952312ac3847968be13919dd0 /lang/rust/Config.in
parent0dfc1b508d5e5b361978ef9783cb63775176c305 (diff)
rust: Add option to use sccache
Using sccache makes recompilation of rustc and Rust packages faster. This also makes the rust package visible in menuconfig, in order for the sccache options to be accessible. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
Diffstat (limited to 'lang/rust/Config.in')
-rw-r--r--lang/rust/Config.in15
1 files changed, 15 insertions, 0 deletions
diff --git a/lang/rust/Config.in b/lang/rust/Config.in
new file mode 100644
index 000000000..62051af13
--- /dev/null
+++ b/lang/rust/Config.in
@@ -0,0 +1,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