diff options
author | Bryan Hundven <bryanhundven@gmail.com> | 2016-02-26 03:58:09 -0800 |
---|---|---|
committer | Bryan Hundven <bryanhundven@gmail.com> | 2016-02-26 04:14:39 -0800 |
commit | b3869e933b29286fe362e68fbda3184acf655de8 (patch) | |
tree | e3e960761bbe488b0d7a9f0ae4c1a6148656d5be /config/toolchain.in | |
parent | c66d5c20cf78b6ab144e77788eedcaecb17e2e6f (diff) | |
download | crosstool-ng-b3869e933b29286fe362e68fbda3184acf655de8.tar.gz crosstool-ng-b3869e933b29286fe362e68fbda3184acf655de8.tar.bz2 crosstool-ng-b3869e933b29286fe362e68fbda3184acf655de8.zip |
config: Add static link check to static options
If we can't static link with gcc, then don't allow static linking.
Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
Diffstat (limited to 'config/toolchain.in')
-rw-r--r-- | config/toolchain.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config/toolchain.in b/config/toolchain.in index 361c6bd0..ca74ee70 100644 --- a/config/toolchain.in +++ b/config/toolchain.in @@ -52,6 +52,7 @@ config WANTS_STATIC_LINK config STATIC_TOOLCHAIN bool prompt "Build Static Toolchain" + depends on CONFIGURE_has_static_link select WANTS_STATIC_LINK help Build static host binaries. |