summaryrefslogtreecommitdiffstats
path: root/rules/cross-rustc.in
blob: 2af2ca32ad80bf6ad98132868c89fbc767c3568c (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
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.
	  Note: During updates, only change CROSS_RUSTC_VERSION at first.
	  The compile stage will then try (and fail) to download the
	  version (and build date) needed here. It is defined in
	  src/stage0.json in the source tarball.

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