1#
2# For a description of the syntax of this configuration file,
3# see docs/misc/kconfig-language.txt
4#
5mainmenu "Xen/$SRCARCH $XEN_FULLVERSION Configuration"
6
7config SRCARCH
8	string
9	option env="SRCARCH"
10
11config ARCH
12	string
13	option env="ARCH"
14
15config BROKEN
16	bool
17
18source "arch/$SRCARCH/Kconfig"
19
20config XEN_FULLVERSION
21	string
22	option env="XEN_FULLVERSION"
23
24config DEFCONFIG_LIST
25	string
26	option defconfig_list
27	default "$ARCH_DEFCONFIG"
28
29config EXPERT
30	string
31	option env="XEN_CONFIG_EXPERT"
32
33config LTO
34	bool "Link Time Optimisation"
35	depends on BROKEN
36	---help---
37	  Enable Link Time Optimisation.
38
39	  If unsure, say N.
40
41#
42# For architectures that know their compiler __int128 support is sound
43#
44config ARCH_SUPPORTS_INT128
45	bool
46
47source "Kconfig.debug"
48