From b2956541046630f72236d35724521ddf26e05c37 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Fri, 7 Jan 2011 17:10:43 +0100 Subject: [PATCH] add missing Config.in for toolchain settings --- toolchain/Config.in | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 toolchain/Config.in diff --git a/toolchain/Config.in b/toolchain/Config.in new file mode 100644 index 000000000..b85fd6056 --- /dev/null +++ b/toolchain/Config.in @@ -0,0 +1,29 @@ +menu "Toolchain settings" + +config ADK_TOOLCHAIN_GDB + prompt "Enable building of the GNU debugger" + boolean + default n + +config ADK_TOOLCHAIN_GCC_CXX + prompt "Enable building of G++ (C++ language support in GCC)" + boolean + default n + +config ADK_TOOLCHAIN_GCC_JAVA + prompt "Enable building of GCJ (Java language support in GCC)" + boolean + default n + +config ADK_TOOLCHAIN_GCC_SSP + prompt "Enable Stack Smashing Protection in GCC" + boolean + default n + +config ADK_TOOLCHAIN_GCC_USE_SSP + prompt "Use SSP for all packages" + boolean + depends on ADK_TOOLCHAIN_GCC_SSP + default n + +endmenu -- 2.11.4.GIT