iptables: bump to version 1.6.1
[buildroot-gz.git] / toolchain / toolchain-buildroot / Config.in
blob9c672d2d34f75dc9df6119d0d58ed486205a600e
1 # Config entries for internal toolchain backend
3 if BR2_TOOLCHAIN_BUILDROOT
5 comment "Toolchain Buildroot Options"
7 config BR2_TOOLCHAIN_BUILDROOT_VENDOR
8         string "custom toolchain vendor name"
9         default "buildroot"
10         help
11           This option allows to customize the "vendor" part of the
12           toolchain tuple, where the toolchain tuple has the form
13           <arch>-<vendor>-<os>-<libc>. The default value, "buildroot",
14           is fine for most cases, except in very specific situations
15           where gcc might make different decisions based on the vendor
16           part of the tuple. The value "unknown" is not allowed, as the
17           cross-compiling toolchain might then be confused with the
18           native toolchain when the target and host architecture are
19           identical. The value can not be empty either.
21           If you're not sure, just leave the default "buildroot" value.
23 choice
24         prompt "C library"
25         default BR2_TOOLCHAIN_UCLIBC
26         default BR2_TOOLCHAIN_BUILDROOT_GLIBC if BR2_aarch64 || BR2_aarch64_be \
27                 || BR2_powerpc64
29 config BR2_TOOLCHAIN_BUILDROOT_UCLIBC
30         bool "uClibc-ng"
31         select BR2_TOOLCHAIN_USES_UCLIBC
32         depends on BR2_arcle   || BR2_arceb  || BR2_arm    || BR2_armeb    || \
33                    BR2_bfin    || BR2_i386   || BR2_m68k   || BR2_microblaze || \
34                    BR2_mips    || BR2_mipsel || BR2_mips64 || BR2_mips64el || \
35                    BR2_or1k    || BR2_powerpc || BR2_sh2a   || BR2_sh4     || \
36                    BR2_sh4eb   || BR2_sparc   || BR2_xtensa || BR2_x86_64
37         # Unsupported for MIPS R6
38         depends on !BR2_MIPS_CPU_MIPS32R6 && !BR2_MIPS_CPU_MIPS64R6
39         help
40           This option selects uClibc-ng as the C library for the
41           cross-compilation toolchain.
43           http://uclibc-ng.org
45 config BR2_TOOLCHAIN_BUILDROOT_GLIBC
46         bool "glibc"
47         depends on BR2_arm         || BR2_armeb      || BR2_aarch64 || \
48                    BR2_aarch64_be  || BR2_i386       || BR2_mips    || \
49                    BR2_mipsel      || BR2_mips64     || BR2_mips64el|| \
50                    BR2_powerpc     || BR2_powerpc64  || BR2_powerpc64le || \
51                    BR2_sh          || BR2_sparc64    || BR2_x86_64 || \
52                    BR2_microblaze || BR2_nios2
53         depends on BR2_USE_MMU
54         depends on !BR2_STATIC_LIBS
55         depends on !BR2_powerpc_SPE
56         select BR2_TOOLCHAIN_USES_GLIBC
57         # our glibc.mk enables RPC support
58         select BR2_TOOLCHAIN_HAS_NATIVE_RPC
59         help
60           This option selects glibc as the C library for the
61           cross-compilation toolchain.
63           http://www.gnu.org/software/libc/
65 comment "glibc only available with shared lib support"
66         depends on BR2_USE_MMU
67         depends on BR2_STATIC_LIBS
69 config BR2_TOOLCHAIN_BUILDROOT_MUSL
70         bool "musl"
71         depends on BR2_aarch64    || BR2_arm     || BR2_armeb     || BR2_i386 || \
72                    BR2_microblaze || BR2_mips    || BR2_mipsel    || BR2_mips64 || \
73                    BR2_mips64el   || BR2_powerpc || BR2_powerpc64 || BR2_powerpc64le || \
74                    BR2_sh         || BR2_x86_64
75         depends on !BR2_powerpc_SPE # not supported, build breaks
76         # sh2 nommu is supported by musl, but we don't have support
77         # for it in Buildroot.
78         depends on BR2_USE_MMU
79         select BR2_TOOLCHAIN_USES_MUSL
80         help
81           This option selects musl as the C library for the
82           cross-compilation toolchain.
84 endchoice
86 config BR2_TOOLCHAIN_BUILDROOT_LIBC
87         string
88         default "uclibc" if BR2_TOOLCHAIN_BUILDROOT_UCLIBC
89         default "glibc"  if BR2_TOOLCHAIN_BUILDROOT_GLIBC
90         default "musl"   if BR2_TOOLCHAIN_BUILDROOT_MUSL
92 source "package/linux-headers/Config.in.host"
93 source "package/linux-headers/Config.in"
94 source "package/musl/Config.in"
95 source "package/uclibc/Config.in"
96 source "package/glibc/Config.in"
97 source "package/binutils/Config.in.host"
98 source "package/gcc/Config.in.host"
99 source "package/elf2flt/Config.in.host"
100 endif