add support for eglibc version 2.13
[openwrt/openwrt.git] / toolchain / eglibc / Config.in
1 choice
2 prompt "eglibc version"
3 depends on TOOLCHAINOPTS && USE_EGLIBC
4 default EGLIBC_VERSION_2_12
5 help
6 Select the version of eglibc you wish to use.
7
8 config EGLIBC_VERSION_2_6
9 bool "eglibc 2.6"
10
11 config EGLIBC_VERSION_2_7
12 bool "eglibc 2.7"
13
14 config EGLIBC_VERSION_2_8
15 bool "eglibc 2.8"
16
17 config EGLIBC_VERSION_2_9
18 bool "eglibc 2.9"
19
20 config EGLIBC_VERSION_2_10
21 bool "eglibc 2.10"
22
23 config EGLIBC_VERSION_2_11
24 bool "eglibc 2.11"
25 depends !GCC_VERSION_LLVM
26
27 config EGLIBC_VERSION_2_12
28 bool "eglibc 2.12"
29 depends !GCC_VERSION_LLVM
30
31 config EGLIBC_VERSION_2_13
32 bool "eglibc 2.13"
33 depends !GCC_VERSION_LLVM
34
35 config EGLIBC_VERSION_TRUNK
36 bool "eglibc trunk"
37
38 endchoice
39
40 config EGLIBC_REVISION
41 string
42 prompt "eglibc revision"
43 depends on TOOLCHAINOPTS && USE_EGLIBC
44 default "5887" if EGLIBC_VERSION_2_6
45 default "8588" if EGLIBC_VERSION_2_7
46 default "8587" if EGLIBC_VERSION_2_8
47 default "10153" if EGLIBC_VERSION_2_9
48 default "10152" if EGLIBC_VERSION_2_10
49 default "10454" if EGLIBC_VERSION_2_11
50 default "10495" if EGLIBC_VERSION_2_12
51 default "13055" if EGLIBC_VERSION_2_13
52 default "HEAD" if EGLIBC_VERSION_TRUNK
53 default ""
54
55 menu "eglibc configuration"
56 depends on TOOLCHAINOPTS && USE_EGLIBC
57 source toolchain/eglibc/config/Config.in
58 endmenu