Config.in.2 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. config BR2_PACKAGE_GCC_TARGET
  2. bool "gcc"
  3. # We no longer want to support a toolchain on the target
  4. depends on BR2_DEPRECATED
  5. depends on BR2_HAVE_DEVFILES && BR2_TOOLCHAIN_BUILDROOT
  6. select BR2_PACKAGE_BINUTILS
  7. select BR2_PACKAGE_BINUTILS_TARGET
  8. select BR2_PACKAGE_MPC if (BR2_GCC_VERSION_4_5_X || BR2_GCC_VERSION_4_6_X || BR2_GCC_VERSION_4_7_X || BR2_GCC_VERSION_SNAP)
  9. select BR2_PACKAGE_MPFR
  10. select BR2_PACKAGE_GMP
  11. help
  12. If you want the target system to be able to run
  13. binutils/gcc and compile native code, say Y here.
  14. config BR2_GCC_CROSS_FORTRAN
  15. bool "fortran support"
  16. depends on !BR2_avr32 && BR2_PACKAGE_GCC_TARGET
  17. help
  18. Build a Fortran compiler
  19. config BR2_GCC_CROSS_OBJC
  20. bool "objective-c support"
  21. depends on !BR2_avr32 && BR2_PACKAGE_GCC_TARGET
  22. help
  23. Build an Objective-C compiler
  24. config BR2_EXTRA_TARGET_GCC_CONFIG_OPTIONS
  25. string "Additional target gcc options"
  26. default ""
  27. depends on BR2_PACKAGE_GCC_TARGET
  28. help
  29. Any additional target gcc options you may want to include....
  30. Including, but not limited to --disable-checking etc.
  31. Refer to */configure in your gcc sources.