mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-19 04:47:52 +00:00
a257ff7da8
If check_for is able to find the required prog/inc/lib, allow it to set an arbitrary variable to 'y'. This variable is then pushed down to the kconfig definition. For example: has_or_abort prog=foobar kconfig=has_foobar If foobar is available, it yields a kconfig variable defaulting to y: config CONFIGURE_has_foobar bool default y If foobar is missing, it yields a kconfig variable defaulting to n: config CONFIGURE_has_foobar bool Thus it is possible to depends on that variabel to show/hide options: config SOME_FEATURE bool prompt "Some feature" depends on CONFIGURE_has_foobar Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
15 lines
408 B
Plaintext
15 lines
408 B
Plaintext
mainmenu "The crosstool-NG configuration menu"
|
|
source "config/configure.in"
|
|
source "config/backend.in"
|
|
source "config/global.in"
|
|
source "config/target.in"
|
|
source "config/toolchain.in"
|
|
source "config/kernel.in"
|
|
source "config/binutils.in"
|
|
source "config/cc.in"
|
|
source "config/libc.in"
|
|
source "config/debug.in"
|
|
source "config/companion_libs.in"
|
|
source "config/companion_tools.in"
|
|
source "config/test_suite.in"
|