summaryrefslogtreecommitdiffstats
path: root/rules/libc.in
blob: 7d04c84211bc57a3991dc2d9420e6d4c8772d9ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# menue to chose C library

choice
        prompt "Which C library do you want to use?"
        default GLIBC
	
	config GLIBC
		bool
 		prompt "GLIBC"
 		depends on !ARCH_NOMMU
    
	config UCLIBC
		bool
 		prompt "uClibc"
endchoice

comment "C Library options"

choice
	prompt "C-Lib Version"
		default GLIBC_2_2_5
	
	config GLIBC_2_2_5
		bool
		prompt "2.2.5"
		depends on GLIBC

	config GLIBC_2_2_4
		bool
		prompt "2.2.4"
		depends on GLIBC
		depends on ARCH_X86

	config GLIBC_2_2_3
		bool
		prompt "2.2.3"
		depends on GLIBC
		depends on ARCH_X86

	config UCLIBC_0_9_19
		bool
		prompt "0.9.19"
		depends on UCLIBC

	config UCLIBC_0_9_20
		bool
		prompt "0.9.20"
		depends on UCLIBC
endchoice

source "rules/glibc.in"
          
source "config/uClibc/extra/Configs/Config.alpha"
source "config/uClibc/extra/Configs/Config.arm"
source "config/uClibc/extra/Configs/Config.cris"
source "config/uClibc/extra/Configs/Config.h8300"
source "config/uClibc/extra/Configs/Config.i386"
source "config/uClibc/extra/Configs/Config.i960"
source "config/uClibc/extra/Configs/Config.m68k"
source "config/uClibc/extra/Configs/Config.mips"
source "config/uClibc/extra/Configs/Config.mipsel"
source "config/uClibc/extra/Configs/Config.powerpc"
source "config/uClibc/extra/Configs/Config.sh"
source "config/uClibc/extra/Configs/Config.sparc"
source "config/uClibc/extra/Configs/Config.v850"

comment "Install options"
	depends on UCLIBC

config UCLIBC_CRYPT
	bool
	prompt "Install libcrypt on the target"
	depends on UCLIBC

config UCLIBC_DL
	bool
	prompt "Install libdl on the target"
	depends on UCLIBC

config UCLIBC_M
	bool
	prompt "Install libm on the target"
	depends on UCLIBC

config UCLIBC_NSL
	bool
	prompt "Install libnsl on the target"
	depends on UCLIBC

config UCLIBC_PTHREAD
	bool
	prompt "Install libpthread on the target"
	depends on UCLIBC

config UCLIBC_RESOLV
	bool
	prompt "Install libresolv on the target"
	depends on UCLIBC

config UCLIBC_UTIL
	bool
	prompt "Install libutil on the target"
	depends on UCLIBC