summaryrefslogtreecommitdiffstats
path: root/rules/uclibc.in
blob: e01e11c64d5eed4b08709da7accc854a3a678c01 (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
menuconfig UCLIBC
	bool
	prompt "uClibc"

config UCLIBC_VERSION
	prompt "uClibc Version"
	string
	default "0.9.27"
	depends on UCLIBC

comment	"Install options"
	depends on UCLIBC

config UCLIBC_C
	bool
	depends on UCLIBC
	prompt "Install libc on the target"
	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
	depends on UCLIBC
	prompt "Install libcrypt on the target"
	help
	  The encryption/decryption library

config UCLIBC_DL
	bool
	depends on UCLIBC
	prompt "Install libdl on the target"
	help
	  The dynamic linking library

config UCLIBC_M
	bool
	depends on UCLIBC
	prompt "Install libm on the target"
	help
	  The C math libary

config UCLIBC_NSL
	bool
	depends on UCLIBC
	prompt "Install libnsl on the target"
	help
	  The network services library

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

config UCLIBC_THREAD_DB
	bool
	depends on UCLIBC
	prompt "Install libthread_db on the target"
	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
	depends on UCLIBC
	prompt "Install libresolv on the target"
	help
	  The resolver library

config UCLIBC_RT
	bool
	depends on UCLIBC
	prompt "Install librt on the target"
	help
	  The rt library

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