summaryrefslogtreecommitdiffstats
path: root/rules/cross-rustc.in
blob: 49956afc6ed1dfb2093794b89b05e083824492ef (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
menuconfig CROSS_RUSTC
	tristate
	select HOST_SYSTEM_OPENSSL
	select CROSS_LLVM
	prompt "rustc                       "
	help
	  FIXME

if CROSS_RUSTC

config CROSS_RUSTC_VERSION
	string
	prompt "rustc version"
	help
	  Specify the version of rustc here.

config CROSS_RUSTC_MD5
	string
	prompt "rustc source md5sum"

config CROSS_RUSTC_TARGET
	string
	default "${PTXCONF_GNU_TARGET}"
	prompt "rust target triple"

config CROSS_RUSTC_BUILD_VERSION
	string
	prompt "build version"
	help
	  version of the prebuilt rust compiler. It will be used to bootstrap
	  the rust compiler.

config CROSS_RUSTC_BUILD_DATE
	string
	prompt "build date"
	help
	  needed to download the prebuilt rust compiler.

config CROSS_RUSTC_BUILD_STD_MD5
	string
	prompt "rust-std binary md5sum"

config CROSS_RUSTC_BUILD_RUSTC_MD5
	string
	prompt "rustc binary md5sum"

config CROSS_RUSTC_BUILD_CARGO_MD5
	string
	prompt "cargo binary md5sum"

endif