summaryrefslogtreecommitdiffstats
path: root/rules/uclibc.in
blob: 1fa99eba5146f61685d1750565575fa1ae0599a6 (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
## SECTION=libc

config UCLIBC
	tristate
	select BASE if RUNTIME

if UCLIBC

menu "uClibc                        "

comment	"Install options"

config UCLIBC_C
	bool
	prompt "Install libc"
	help
	  Any Unix-like operating system needs a C library:
	  the library which defines the "system calls" and
	  other basic facilities such as open, malloc, printf,
	  exit...

	  The uClibc library is used as the C library in the
	  GNU system and embedded systems with the Linux kernel.

	  Better not turn this option off..

config UCLIBC_CRYPT
	bool
	prompt "Install libcrypt"
	help
	  The encryption/decryption library

config UCLIBC_DL
	bool
	prompt "Install libdl"
	help
	  The dynamic linking library

config UCLIBC_M
	bool
	prompt "Install libm"
	help
	  The C math library

config UCLIBC_NSL
	bool
	prompt "Install libnsl"
	help
	  The network services library

config UCLIBC_PTHREAD
	bool
	prompt "Install libpthread"
	help
	  If at least one application on the target uses threads when executed
	  this library will be required.

config UCLIBC_THREAD_DB
	bool
	prompt "Install libthread_db"
	help
	  If at least one application on the target uses threads when executed
	  and you are going to debug this application (also remotely!), this
	  library will be required. You can omit this library, if you never
	  intend to debug multithread application on your target.

config UCLIBC_RESOLV
	bool
	prompt "Install libresolv"
	help
	  The resolver library

config UCLIBC_RT
	bool
	prompt "Install librt"
	help
	  The rt library

config UCLIBC_UTIL
	bool
	prompt "Install libutil"
	help
	  Contains code for "standard" functions used in many different Unix
	  utilities.

endmenu

endif