diff options
Diffstat (limited to 'config/toolchain.in')
-rw-r--r-- | config/toolchain.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/config/toolchain.in b/config/toolchain.in index d5ee6b7c..bc8f19c1 100644 --- a/config/toolchain.in +++ b/config/toolchain.in @@ -46,10 +46,19 @@ config SYSROOT_DIR_PREFIX In fact, the sysroot path is constructed as: ${CT_PREFIX_DIR}/${CT_TARGET}/${CT_SYSROOT_DIR_PREFIX}/${CT_SYSROOT_NAME} +# In case we need to add more conditions to enable static +# toolchain, we'll be adding them here +config STATIC_TOOLCHAIN_POSSIBLE + bool + default y + depends on CONFIGURE_has_static_libstdcxx + # Add new deps here! :-) + config STATIC_TOOLCHAIN bool prompt "Build Static Toolchain (EXPERIMENTAL)" depends on EXPERIMENTAL + depends on STATIC_TOOLCHAIN_POSSIBLE help Build static host binaries. |