summaryrefslogtreecommitdiffstats
path: root/rules/cross-lld.in
blob: 79e0e987c28e81b50b8729dcd821b4cbec7bcd68 (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
menuconfig CROSS_LLD
	tristate
	select HOST_CMAKE
	select CROSS_LLVM
	depends on CROSS_CLANG
	default CROSS_CLANG
	prompt "lld                         "
	help
	  LLD is a new, high-performance linker. It is built as a set of
	  reusable components which highly leverage existing libraries in
	  the larger LLVM Project.

if CROSS_LLD

config CROSS_LLD_VERSION
	string
	prompt "lld version"
	default "${PTXCONF_CROSS_LLVM_VERSION}"
	help
	  Specify the version of lld here.
	  The default ${PTXCONF_CROSS_LLVM_VERSION} is usually correct.

config CROSS_LLD_MD5
	string
	prompt "lld source md5sum"

config CROSS_LLD_LICENSE
	string
	prompt "lld license"

config CROSS_LLD_LICENSE_FILES
	string
	prompt "lld license files"

endif