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

menu "gcc libraries                 "

config GCCLIBS
	bool

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_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

endmenu