diff options
-rw-r--r-- | config/kernel.in | 13 | ||||
-rw-r--r-- | config/toolchain.in | 11 |
2 files changed, 13 insertions, 11 deletions
diff --git a/config/kernel.in b/config/kernel.in index d3ae6dc7..bbaec77a 100644 --- a/config/kernel.in +++ b/config/kernel.in @@ -23,4 +23,17 @@ config KERNEL_VERSION source config.gen/kernel.in +comment "Common kernel options" + +config SHARED_LIBS + bool + prompt "Build shared libraries" + depends on KERNEL_SUPPORTS_SHARED_LIBS + default y + help + Say 'y' here, unless you don't want shared libraries. + + You might not want shared libraries if you're building for a target that + don't support it (maybe some nommu targets, for example, or bare metal). + endmenu diff --git a/config/toolchain.in b/config/toolchain.in index 9c457f27..9372dc43 100644 --- a/config/toolchain.in +++ b/config/toolchain.in @@ -28,17 +28,6 @@ config SYSROOT_DIR_PREFIX In fact, the sysroot path is constructed as: ${CT_PREFIX_DIR}/${CT_TARGET}/${CT_SYSROOT_DIR_PREFIX}/sys-root -config SHARED_LIBS - bool - prompt "Build shared libraries" - depends on KERNEL_SUPPORTS_SHARED_LIBS - default y - help - Say 'y' here, unless you don't want shared libraries. - - You might not want shared libraries if you're building for a target that - don't support it (maybe some nommu targets, for example, or bare metal). - comment "Tuple completion and aliasing" config TARGET_VENDOR |