diff options
| author | Jeffery To | 2023-06-05 04:57:51 +0000 |
|---|---|---|
| committer | Petr Štetiar | 2023-06-07 07:06:55 +0000 |
| commit | 38f8f56c7a2989c4896b2a3fb560dda7ccfd216a (patch) | |
| tree | 0ab1562480fff664a7a80d66ab60a26f5660db1c | |
| parent | b059aaf039e8127bef74b180593bf940b6397f3b (diff) | |
| download | openwrt-38f8f56c7a2989c4896b2a3fb560dda7ccfd216a.tar.gz | |
sdk: Expose CCACHE_DIR option
As the CCACHE option is already exposed, it would be helpful to also
make the ccache directory easily customizable.
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
(cherry picked from commit 897691fdce27868aa4c0c68de8b67e8af6f209e1)
| -rw-r--r-- | target/sdk/files/Config.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/target/sdk/files/Config.in b/target/sdk/files/Config.in index a14c17fe95..0cf68faa6e 100644 --- a/target/sdk/files/Config.in +++ b/target/sdk/files/Config.in @@ -119,6 +119,13 @@ menu "Advanced configuration options (for developers)" help Compiler cache; see https://ccache.samba.org/ + config CCACHE_DIR + string "Set ccache directory" if CCACHE + default "" + help + Store ccache in this directory. + If not set, uses './.ccache' + config BUILD_LOG bool "Enable log files during build process" help |