diff options
author | Christian Marangi <ansuelsmth@gmail.com> | 2022-09-09 22:53:01 +0200 |
---|---|---|
committer | Christian Marangi <ansuelsmth@gmail.com> | 2022-09-30 22:26:54 +0200 |
commit | ebabdff4017fe2ed14491908ebe00589de0da189 (patch) | |
tree | da2688d8db1f41d5c86d82b9c4b831364f14760c /config | |
parent | 53a08e37437972ba0a8fbf953a93a70a6b784ef4 (diff) | |
download | upstream-ebabdff4017fe2ed14491908ebe00589de0da189.tar.gz upstream-ebabdff4017fe2ed14491908ebe00589de0da189.tar.bz2 upstream-ebabdff4017fe2ed14491908ebe00589de0da189.zip |
tools: add option BUILD_ALL_HOST_TOOLS to compile all host tools
Add option to compile all host tools even if not needed.
This can be useful to prepare a universal precompiled host tools
archive to use in another buildroot and speedup compilation.
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
Diffstat (limited to 'config')
-rw-r--r-- | config/Config-devel.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/config/Config-devel.in b/config/Config-devel.in index 87f9157106..3f73cb404d 100644 --- a/config/Config-devel.in +++ b/config/Config-devel.in @@ -45,6 +45,13 @@ menuconfig DEVEL This allows you to symlink build_dir into a scratch location, e.g. a ramdisk, which does not have enough space to keep a complete build_dir. + config BUILD_ALL_HOST_TOOLS + bool "Compile all host tools" if DEVEL + default n + help + Compile all host host tools even if not needed. This is needed to prepare a + universal precompiled host tools archive to use in another buildroot. + config BUILD_SUFFIX string "Build suffix to append to the target BUILD_DIR variable" if DEVEL default "" |