diff options
author | Ivan Kukhta <Ivan.Kukhta@acronis.com> | 2021-03-17 13:46:14 +0300 |
---|---|---|
committer | Ivan Kukhta <Ivan.Kukhta@acronis.com> | 2021-03-17 13:50:45 +0300 |
commit | 8b4373d4eeaff35ce6cd18faa87a3b90fbd2ea3f (patch) | |
tree | 3ab178e828c1c3e71a2dc92e84d8669f6a35b7b0 /config | |
parent | 2d4a8cf95e239849765d02385496bd2a5bbe2c94 (diff) | |
download | crosstool-ng-8b4373d4eeaff35ce6cd18faa87a3b90fbd2ea3f.tar.gz crosstool-ng-8b4373d4eeaff35ce6cd18faa87a3b90fbd2ea3f.tar.bz2 crosstool-ng-8b4373d4eeaff35ce6cd18faa87a3b90fbd2ea3f.zip |
Extend CC_GCC_LIBSSP with manual state
Signed-off-by: Ivan Kukhta <Ivan.Kukhta@acronis.com>
Diffstat (limited to 'config')
-rw-r--r-- | config/cc/gcc.in | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/config/cc/gcc.in b/config/cc/gcc.in index 21e7db06..c3918e8a 100644 --- a/config/cc/gcc.in +++ b/config/cc/gcc.in @@ -218,12 +218,18 @@ config CC_GCC_LIBGOMP The default is 'N'. Say 'Y' if you need it, and report success/failure. config CC_GCC_LIBSSP - bool + tristate prompt "Compile libssp" help libssp is the run-time Stack-Smashing Protection library. - The default is 'N'. Say 'Y' if you need it, and report success/failure. + Option | SSP implementation | libssp built | Associated ./configure switch + ---------+---------------------+--------------+------------------------------- + Y | libssp (forced) | yes | --enable-libssp + M | libc (if available) | yes | (none, ./configure decides) + N | libc (forced) | no | --disable-libssp + + The default is 'N'. Say 'Y' or 'M' if you need it, and report success/failure. config CC_GCC_LIBQUADMATH bool |