summaryrefslogtreecommitdiffstats
path: root/rules/gcclibs.in
blob: 37725089bd58a935a133a8191a6f98735d2a3993 (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
## SECTION=core

menu "gcc libraries                 "

config GCCLIBS
	bool
	select BASE if RUNTIME

config GCCLIBS_GCC_S
	bool "libgcc_s"
	select GCCLIBS
	help
	  Installs the libgcc_s Library
	  

config GCCLIBS_CXX
	bool "libstdc++"
	select GCCLIBS
	select GCCLIBS_GCC_S
	select LIBC_M
	help
	  Installs the GNU Standard C++ Library
	  libstdc++

config GCCLIBS_ATOMIC
	bool "libatomic"
	select GCCLIBS
	select LIBC_PTHREAD
	help
	  Installs the libatomic Library


config GCCLIBS_GCJ
	bool "libgcj"
	select GCCLIBS_CXX
	select GCCLIBS_GCC_S
	select LIBC_DL
	select LIBC_M
	select LIBC_PTHREAD
	select LIBC_RT
	help
	  Installs the GNU Java Library
	  libgcj

config GCCLIBS_LIBASAN
	bool "libasan"
	select GCCLIBS
	select GCCLIBS_GCC_S
	select LIBC_DL
	select LIBC_M
	select LIBC_PTHREAD
	select LIBC_RT
	help
	  Installs the AddressSanitizer runtime library
	  libasan

config GCCLIBS_LIBUBSAN
	bool "libubsan"
	select GCCLIBS
	select GCCLIBS_GCC_S
	select LIBC_DL
	select LIBC_M
	select LIBC_PTHREAD
	select LIBC_RT
	help
	  Installs the UndefinedBehaviorSanitizer runtime library
	  libubsan

endmenu