summaryrefslogtreecommitdiffstats
path: root/rules/cross-gcc.in
blob: f399d1090c90152c69acc3b9ead7597238446b5b (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
# config for cross-gcc-first

menuconfig CROSS_GCC_FIRST
	bool
	prompt "gcc (first)                 "
	select CROSS_BINUTILS
	select LIBC_HEADERS

config CROSS_GCC_VERSION
	depends on CROSS_GCC_FIRST
	string
	prompt "gcc version"
	default "4.1.2"
	help
	  Specify the version of gcc here.

config CROSS_GCC_FIRST_SERIES
	depends on CROSS_GCC_FIRST
	string
	prompt "gcc patch series file"

config CROSS_GCC_LANG
	depends on CROSS_GCC_FIRST
	string
	prompt "languages"
	default "c,c++"

config CROSS_GCC_EXTRA_CONFIG
	depends on CROSS_GCC_FIRST
	string
	prompt "extra configure options"
	help
	  Add these extra options to the gcc configure script.

config CROSS_GCC_SECOND
	bool
	select LIBC
	prompt "gcc (second)                "