Config.in 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. #
  2. menu "Toolchain Options"
  3. source "toolchain/kernel-headers/Config.in"
  4. source "toolchain/uClibc/Config.in"
  5. source "toolchain/binutils/Config.in"
  6. source "toolchain/gcc/Config.in"
  7. source "toolchain/ccache/Config.in"
  8. source "toolchain/gdb/Config.in"
  9. comment "Common Toolchain Options"
  10. config BR2_ENABLE_MULTILIB
  11. bool "Enable multilib support?"
  12. default y
  13. help
  14. If you want multilib enabled, enable this...
  15. config BR2_LARGEFILE
  16. bool "Enable large file (files > 2 GB) support?"
  17. depends on !BR2_cris
  18. default y
  19. help
  20. Enable large file (files > 2 GB) support
  21. config BR2_SOFT_FLOAT
  22. bool "Use software floating point by default"
  23. default n
  24. depends on BR2_arm || BR2_armeb || BR2_mips || BR2_powerpc
  25. help
  26. If your target CPU does not have a Floating Point Unit (FPU) or a
  27. kernel FPU emulator, but you still wish to support floating point
  28. functions, then everything will need to be compiled with soft floating
  29. point support (-msoft-float).
  30. Most people will answer N.
  31. config BR2_TARGET_OPTIMIZATION
  32. string "Target Optimizations"
  33. default "-Os -pipe"
  34. help
  35. Optimizations to use when building for the target host.
  36. # Might be worth experimenting with for gcc 3.4.x.
  37. #GCC_WITH_CPU:=
  38. #GCC_WITH_ARCH:=
  39. #GCC_WITH_TUNE:=
  40. #GCC_WITH_CPU:=--with-cpu=
  41. #GCC_WITH_ARCH:=--with-arch=
  42. #GCC_WITH_TUNE:=--with-tune=
  43. endmenu