it will be used for for 2 purposes, 1st is to provide to cpu name resolving class for machine 'none' cpu_parse_cpu_model(machine_class->default_cpu_type, cpu_model). and later to drop a bunch of ifdefs *-user/main.c that set default cpu_model.
LM32 however doesn't have working default in *-user targets which defaults to catch all 'any'. So I arbitraraly picked 'lm32-basic' cpu model to serve as the default. Signed-off-by: Igor Mammedov <imamm...@redhat.com> --- CC: Michael Walle <mich...@walle.cc> --- target/lm32/cpu.h | 1 + 1 file changed, 1 insertion(+) diff --git a/target/lm32/cpu.h b/target/lm32/cpu.h index 2279594..65f58f5 100644 --- a/target/lm32/cpu.h +++ b/target/lm32/cpu.h @@ -259,6 +259,7 @@ bool lm32_cpu_do_semihosting(CPUState *cs); #define LM32_CPU_TYPE_SUFFIX "-" TYPE_LM32_CPU #define LM32_CPU_TYPE_NAME(model) model LM32_CPU_TYPE_SUFFIX +#define TARGET_DEFAULT_CPU_TYPE LM32_CPU_TYPE_NAME("lm32-basic") #define cpu_list lm32_cpu_list #define cpu_signal_handler cpu_lm32_signal_handler -- 2.7.4