2010-07-28 00:08:16 +02:00
|
|
|
# Config entries for internal toolchain backend
|
2008-12-15 16:28:48 +01:00
|
|
|
|
2009-12-14 12:10:12 +01:00
|
|
|
if BR2_TOOLCHAIN_BUILDROOT
|
2014-04-01 08:25:47 +02:00
|
|
|
|
|
|
|
config BR2_TOOLCHAIN_BUILDROOT_VENDOR
|
|
|
|
string "custom toolchain vendor name"
|
|
|
|
default "buildroot"
|
|
|
|
help
|
|
|
|
This option allows to customize the "vendor" part of the
|
|
|
|
toolchain tuple, where the toolchain tuple has the form
|
|
|
|
<arch>-<vendor>-<os>-<libc>. The default value, "buildroot",
|
|
|
|
is fine for most cases, except in very specific situations
|
|
|
|
where gcc might make different decisions based on the vendor
|
|
|
|
part of the tuple. The value "unknown" is not allowed, as the
|
|
|
|
cross-compiling toolchain might then be confused with the
|
|
|
|
native toolchain when the target and host architecture are
|
|
|
|
identical. The value can not be empty either.
|
|
|
|
|
|
|
|
If you're not sure, just leave the default "buildroot" value.
|
|
|
|
|
2013-06-30 21:28:58 +02:00
|
|
|
source "package/linux-headers/Config.in.host"
|
2013-06-30 21:29:12 +02:00
|
|
|
|
|
|
|
choice
|
|
|
|
prompt "C library"
|
2014-05-06 12:42:44 +02:00
|
|
|
default BR2_TOOLCHAIN_UCLIBC
|
2013-11-27 19:09:26 +01:00
|
|
|
default BR2_TOOLCHAIN_BUILDROOT_EGLIBC if BR2_mips64 || BR2_mips64el
|
2013-06-30 21:29:12 +02:00
|
|
|
|
|
|
|
config BR2_TOOLCHAIN_BUILDROOT_UCLIBC
|
|
|
|
bool "uClibc"
|
|
|
|
select BR2_TOOLCHAIN_USES_UCLIBC
|
2013-12-05 18:20:56 +01:00
|
|
|
depends on BR2_arcle || BR2_arceb || BR2_arm || BR2_armeb || \
|
|
|
|
BR2_avr32 || BR2_bfin || BR2_i386 || BR2_m68k || \
|
|
|
|
BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el || \
|
|
|
|
BR2_powerpc || BR2_sh || BR2_sparc || BR2_xtensa || \
|
|
|
|
BR2_x86_64
|
2013-06-30 21:29:12 +02:00
|
|
|
help
|
|
|
|
This option selects uClibc as the C library for the
|
|
|
|
cross-compilation toolchain.
|
|
|
|
|
|
|
|
http://uclibc.org
|
|
|
|
|
|
|
|
config BR2_TOOLCHAIN_BUILDROOT_EGLIBC
|
2013-11-11 18:57:30 +01:00
|
|
|
bool "eglibc"
|
2013-06-30 21:29:12 +02:00
|
|
|
depends on BR2_arm || BR2_armeb || BR2_aarch64 || \
|
|
|
|
BR2_i386 || BR2_mips || BR2_mipsel || \
|
|
|
|
BR2_mips64 || BR2_mips64el || BR2_powerpc || \
|
|
|
|
BR2_sh || BR2_sh64 || BR2_sparc || \
|
2014-05-13 07:28:21 +02:00
|
|
|
BR2_x86_64 || BR2_microblaze || BR2_powerpc64
|
2013-08-09 21:23:41 +02:00
|
|
|
depends on BR2_USE_MMU
|
2013-11-11 18:57:31 +01:00
|
|
|
depends on !BR2_PREFER_STATIC_LIB
|
2013-06-30 21:29:12 +02:00
|
|
|
select BR2_TOOLCHAIN_USES_GLIBC
|
|
|
|
# our eglibc.mk enables RPC support
|
|
|
|
select BR2_TOOLCHAIN_HAS_NATIVE_RPC
|
|
|
|
help
|
|
|
|
This option selects eglibc as the C library for the
|
|
|
|
cross-compilation toolchain.
|
|
|
|
|
|
|
|
http://eglibc.org
|
|
|
|
|
2013-09-02 18:06:33 +02:00
|
|
|
config BR2_TOOLCHAIN_BUILDROOT_GLIBC
|
2013-11-11 18:57:30 +01:00
|
|
|
bool "glibc"
|
2014-05-25 08:59:22 +02:00
|
|
|
depends on BR2_arm || BR2_armeb || BR2_aarch64 || \
|
|
|
|
BR2_i386 || BR2_mips || BR2_mipsel || \
|
|
|
|
BR2_mips64 || BR2_mips64el || BR2_powerpc || \
|
2014-05-13 07:28:21 +02:00
|
|
|
BR2_powerpc64 || BR2_powerpc64le || BR2_sh || \
|
|
|
|
BR2_sh64 || BR2_sparc || BR2_x86_64 || \
|
|
|
|
BR2_microblaze
|
2014-03-03 19:31:27 +01:00
|
|
|
depends on BR2_USE_MMU
|
2013-11-11 18:57:31 +01:00
|
|
|
depends on !BR2_PREFER_STATIC_LIB
|
2014-05-23 00:16:14 +02:00
|
|
|
depends on !BR2_powerpc_SPE
|
2014-03-03 19:31:27 +01:00
|
|
|
select BR2_TOOLCHAIN_USES_GLIBC
|
2013-09-02 18:06:33 +02:00
|
|
|
# our glibc.mk enables RPC support
|
|
|
|
select BR2_TOOLCHAIN_HAS_NATIVE_RPC
|
|
|
|
help
|
|
|
|
This option selects glibc as the C library for the
|
|
|
|
cross-compilation toolchain.
|
|
|
|
|
|
|
|
http://www.gnu.org/software/libc/
|
|
|
|
|
2013-11-11 18:57:31 +01:00
|
|
|
comment "(e)glibc only available with shared lib support"
|
|
|
|
depends on BR2_PREFER_STATIC_LIB
|
|
|
|
|
2014-05-05 23:17:08 +02:00
|
|
|
config BR2_TOOLCHAIN_BUILDROOT_MUSL
|
|
|
|
bool "musl (experimental)"
|
2014-05-31 15:20:08 +02:00
|
|
|
depends on BR2_arm || BR2_armeb || BR2_i386 || BR2_microblaze || \
|
2014-05-05 23:17:08 +02:00
|
|
|
BR2_mips || BR2_mipsel || BR2_powerpc || BR2_x86_64
|
2014-09-10 22:16:04 +02:00
|
|
|
depends on !BR2_powerpc_SPE # not supported, build breaks
|
2014-05-05 23:17:08 +02:00
|
|
|
select BR2_TOOLCHAIN_USES_MUSL
|
|
|
|
help
|
|
|
|
This option selects musl as the C library for the
|
|
|
|
cross-compilation toolchain.
|
|
|
|
|
2013-06-30 21:29:12 +02:00
|
|
|
endchoice
|
|
|
|
|
|
|
|
config BR2_TOOLCHAIN_BUILDROOT_LIBC
|
|
|
|
string
|
|
|
|
default "uclibc" if BR2_TOOLCHAIN_BUILDROOT_UCLIBC
|
2013-09-02 18:06:33 +02:00
|
|
|
# Both glibc and eglibc are handled by the package called
|
|
|
|
# 'glibc'
|
|
|
|
default "glibc" if BR2_TOOLCHAIN_BUILDROOT_EGLIBC
|
|
|
|
default "glibc" if BR2_TOOLCHAIN_BUILDROOT_GLIBC
|
2014-05-05 23:17:08 +02:00
|
|
|
default "musl" if BR2_TOOLCHAIN_BUILDROOT_MUSL
|
2013-06-30 21:29:12 +02:00
|
|
|
|
2013-06-30 21:29:05 +02:00
|
|
|
source "package/uclibc/Config.in"
|
2014-02-10 18:43:46 +01:00
|
|
|
source "package/glibc/Config.in"
|
2010-12-31 12:39:01 +01:00
|
|
|
source "package/binutils/Config.in.host"
|
2013-06-30 21:29:03 +02:00
|
|
|
source "package/gcc/Config.in.host"
|
2013-09-02 18:06:37 +02:00
|
|
|
source "package/elf2flt/Config.in.host"
|
2008-12-15 16:28:48 +01:00
|
|
|
endif
|