Browse Source
Add a target-specific Kconfig. We need the definitions in Kconfig so the minikconf tool can verify they exits. However CONFIG_FOO is only enabled for target foo via the meson.build rules. Two architecture have a particularity, ARM and MIPS. As their translators have been split you can potentially build a plain 32 bit build along with a 64-bit version including the 32-bit subset. Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <20210131111316.232778-6-f4bug@amsat.org> Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Thomas Huth <thuth@redhat.com> Message-Id: <20210707131744.26027-2-alex.bennee@linaro.org> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>pull/121/head
committed by
Paolo Bonzini
22 changed files with 80 additions and 1 deletions
@ -1,5 +1,6 @@ |
|||
source Kconfig.host |
|||
source backends/Kconfig |
|||
source accel/Kconfig |
|||
source target/Kconfig |
|||
source hw/Kconfig |
|||
source semihosting/Kconfig |
|||
|
|||
@ -0,0 +1,19 @@ |
|||
source alpha/Kconfig |
|||
source arm/Kconfig |
|||
source avr/Kconfig |
|||
source cris/Kconfig |
|||
source hppa/Kconfig |
|||
source i386/Kconfig |
|||
source m68k/Kconfig |
|||
source microblaze/Kconfig |
|||
source mips/Kconfig |
|||
source nios2/Kconfig |
|||
source openrisc/Kconfig |
|||
source ppc/Kconfig |
|||
source riscv/Kconfig |
|||
source rx/Kconfig |
|||
source s390x/Kconfig |
|||
source sh4/Kconfig |
|||
source sparc/Kconfig |
|||
source tricore/Kconfig |
|||
source xtensa/Kconfig |
|||
@ -0,0 +1,2 @@ |
|||
config ALPHA |
|||
bool |
|||
@ -0,0 +1,6 @@ |
|||
config ARM |
|||
bool |
|||
|
|||
config AARCH64 |
|||
bool |
|||
select ARM |
|||
@ -0,0 +1,2 @@ |
|||
config AVR |
|||
bool |
|||
@ -0,0 +1,2 @@ |
|||
config CRIS |
|||
bool |
|||
@ -0,0 +1,2 @@ |
|||
config HPPA |
|||
bool |
|||
@ -0,0 +1,5 @@ |
|||
config I386 |
|||
bool |
|||
|
|||
config X86_64 |
|||
bool |
|||
@ -0,0 +1,2 @@ |
|||
config M68K |
|||
bool |
|||
@ -0,0 +1,2 @@ |
|||
config MICROBLAZE |
|||
bool |
|||
@ -0,0 +1,6 @@ |
|||
config MIPS |
|||
bool |
|||
|
|||
config MIPS64 |
|||
bool |
|||
select MIPS |
|||
@ -0,0 +1,2 @@ |
|||
config NIOS2 |
|||
bool |
|||
@ -0,0 +1,2 @@ |
|||
config OPENRISC |
|||
bool |
|||
@ -0,0 +1,5 @@ |
|||
config PPC |
|||
bool |
|||
|
|||
config PPC64 |
|||
bool |
|||
@ -0,0 +1,5 @@ |
|||
config RISCV32 |
|||
bool |
|||
|
|||
config RISCV64 |
|||
bool |
|||
@ -0,0 +1,2 @@ |
|||
config RX |
|||
bool |
|||
@ -0,0 +1,2 @@ |
|||
config S390X |
|||
bool |
|||
@ -0,0 +1,2 @@ |
|||
config SH4 |
|||
bool |
|||
@ -0,0 +1,5 @@ |
|||
config SPARC |
|||
bool |
|||
|
|||
config SPARC64 |
|||
bool |
|||
@ -0,0 +1,2 @@ |
|||
config TRICORE |
|||
bool |
|||
@ -0,0 +1,2 @@ |
|||
config XTENSA |
|||
bool |
|||
Loading…
Reference in new issue