diff options
-rw-r--r-- | toolchain/Config.in | 29 |
1 files changed, 29 insertions, 0 deletions
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 |