1config BR2_PACKAGE_GCC_TARGET 2 bool "gcc" 3 depends on BR2_TOOLCHAIN_BUILDROOT 4 select BR2_PACKAGE_BINUTILS 5 select BR2_PACKAGE_BINUTILS_TARGET 6 select BR2_PACKAGE_GMP 7 select BR2_PACKAGE_MPFR 8 select BR2_PACKAGE_MPC 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 13config BR2_EXTRA_TARGET_GCC_CONFIG_OPTIONS 14 string "Additional target gcc options" 15 default "" 16 depends on BR2_PACKAGE_GCC_TARGET 17 help 18 Any additional target gcc options you may want to include.... 19 Including, but not limited to --disable-checking etc. 20 Refer to */configure in your gcc sources. 21 22