Config.in.2 1.1 KB

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