From b17f8707c142be9ee65abf5b19fa9dcf16753590 Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN\"" Date: Sat, 9 Oct 2010 11:38:04 +0200 Subject: cc/gcc: add an option to enable/disable build of libssp libssp is the run-time Stack-Smashing Protection library. It can be usefull to have or miss, depends... Signed-off-by: "Yann E. MORIN" diff --git a/config/cc/gcc.in.2 b/config/cc/gcc.in.2 index 00e5392..a87b388 100644 --- a/config/cc/gcc.in.2 +++ b/config/cc/gcc.in.2 @@ -74,6 +74,15 @@ config CC_GCC_LIBGOMP The default is 'N'. Say 'Y' if you need it, and report success/failure. +config CC_GCC_LIBSSP + bool + prompt "Compile libssp" + default n + help + libssp is the run-time Stack-Smashing Protection library. + + The default is 'N'. Say 'Y' if you need it, and report success/failure. + #----------------------------------------------------------------------------- comment "Misc. obscure options." diff --git a/scripts/build/cc/gcc.sh b/scripts/build/cc/gcc.sh index 4d78eab..db91f86 100644 --- a/scripts/build/cc/gcc.sh +++ b/scripts/build/cc/gcc.sh @@ -376,6 +376,11 @@ do_cc() { else extra_config+=(--disable-libgomp) fi + if [ "${CT_CC_GCC_LIBSSP}" = "y" ]; then + extra_config+=(--enable-libssp) + else + extra_config+=(--disable-libssp) + fi if [ "${CT_CC_STATIC_LIBSTDCXX}" = "y" ]; then # this is from CodeSourcery arm-2010q1-202-arm-none-linux-gnueabi.src.tar.bz2 -- cgit v0.10.2-6-g49f6