Config.in 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. source "toolchain/elf2flt/Config.in"
  10. comment "Common Toolchain Options"
  11. source "toolchain/sstrip/Config.in"
  12. config BR2_ENABLE_MULTILIB
  13. bool "Enable multilib support?"
  14. default n
  15. help
  16. If you want multilib enabled, enable this...
  17. config BR2_LARGEFILE
  18. bool "Enable large file (files > 2 GB) support?"
  19. depends on !BR2_cris
  20. default y
  21. help
  22. Enable large file (files > 2 GB) support
  23. config BR2_SOFT_FLOAT
  24. bool "Use software floating point by default"
  25. default n
  26. depends on BR2_arm || BR2_armeb || BR2_mips || BR2_mipsel || BR2_powerpc
  27. help
  28. If your target CPU does not have a Floating Point Unit (FPU) or a
  29. kernel FPU emulator, but you still wish to support floating point
  30. functions, then everything will need to be compiled with soft floating
  31. point support (-msoft-float).
  32. Most people will answer N.
  33. config BR2_TARGET_OPTIMIZATION
  34. string "Target Optimizations"
  35. default "-Os -pipe"
  36. help
  37. Optimizations to use when building for the target host.
  38. config BR2_CROSS_TOOLCHAIN_TARGET_UTILS
  39. bool "Include target utils in cross toolchain"
  40. default y
  41. help
  42. When using buildroot to build a deployable cross toolchain, it is handy
  43. to include certain target apps with that toolchain as a convenience.
  44. Examples include ldd, gdbserver, and strace.
  45. Answer Y if you want these apps (if built) copied into the cross toolchain
  46. dir under <arch>-linux-uclibc/target_utils/.
  47. # Might be worth experimenting with for gcc 3.4.x.
  48. #GCC_WITH_CPU:=
  49. #GCC_WITH_ARCH:=
  50. #GCC_WITH_TUNE:=
  51. #GCC_WITH_CPU:=--with-cpu=
  52. #GCC_WITH_ARCH:=--with-arch=
  53. #GCC_WITH_TUNE:=--with-tune=
  54. endmenu