Config.in 581 B

1234567891011121314151617181920212223242526272829
  1. menu "Toolchain settings"
  2. config ADK_TOOLCHAIN_GDB
  3. prompt "Enable building of the GNU debugger"
  4. boolean
  5. default n
  6. config ADK_TOOLCHAIN_GCC_CXX
  7. prompt "Enable building of G++ (C++ language support in GCC)"
  8. boolean
  9. default n
  10. config ADK_TOOLCHAIN_GCC_JAVA
  11. prompt "Enable building of GCJ (Java language support in GCC)"
  12. boolean
  13. default n
  14. config ADK_TOOLCHAIN_GCC_SSP
  15. prompt "Enable Stack Smashing Protection in GCC"
  16. boolean
  17. default n
  18. config ADK_TOOLCHAIN_GCC_USE_SSP
  19. prompt "Use SSP for all packages"
  20. boolean
  21. depends on ADK_TOOLCHAIN_GCC_SSP
  22. default n
  23. endmenu