meson: convert hw/cpu
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
b4c8eece57
commit
cff3c5d2b4
@ -5,7 +5,6 @@ devices-dirs-y += adc/
|
||||
devices-dirs-y += audio/
|
||||
devices-dirs-y += block/
|
||||
devices-dirs-y += char/
|
||||
devices-dirs-y += cpu/
|
||||
endif
|
||||
|
||||
common-obj-y += $(devices-dirs-y)
|
||||
|
@ -1,5 +0,0 @@
|
||||
obj-$(CONFIG_ARM11MPCORE) += arm11mpcore.o
|
||||
obj-$(CONFIG_REALVIEW) += realview_mpcore.o
|
||||
obj-$(CONFIG_A9MPCORE) += a9mpcore.o
|
||||
obj-$(CONFIG_A15MPCORE) += a15mpcore.o
|
||||
common-obj-y += core.o cluster.o
|
6
hw/cpu/meson.build
Normal file
6
hw/cpu/meson.build
Normal file
@ -0,0 +1,6 @@
|
||||
softmmu_ss.add(files('core.c', 'cluster.c'))
|
||||
|
||||
specific_ss.add(when: 'CONFIG_ARM11MPCORE', if_true: files('arm11mpcore.c'))
|
||||
specific_ss.add(when: 'CONFIG_REALVIEW', if_true: files('realview_mpcore.c'))
|
||||
specific_ss.add(when: 'CONFIG_A9MPCORE', if_true: files('a9mpcore.c'))
|
||||
specific_ss.add(when: 'CONFIG_A15MPCORE', if_true: files('a15mpcore.c'))
|
@ -1,4 +1,5 @@
|
||||
subdir('core')
|
||||
subdir('cpu')
|
||||
subdir('display')
|
||||
subdir('dma')
|
||||
subdir('gpio')
|
||||
|
Loading…
Reference in New Issue
Block a user