diff options
author | Paolo Bonzini | 2020-09-01 12:15:41 +0200 |
---|---|---|
committer | Paolo Bonzini | 2020-09-08 11:43:16 +0200 |
commit | feabc71dfa5807427b6b1a0f8db00d994399210d (patch) | |
tree | bf3eb8cfc2cd47bfba0e5490aea2c20595659973 /hw/arm | |
parent | meson: get opengl compilation flags from OPENGL_CFLAGS (diff) | |
download | qemu-feabc71dfa5807427b6b1a0f8db00d994399210d.tar.gz qemu-feabc71dfa5807427b6b1a0f8db00d994399210d.tar.xz qemu-feabc71dfa5807427b6b1a0f8db00d994399210d.zip |
configure: do not include dependency flags in QEMU_CFLAGS and LIBS
All Meson executables should specify their dependencies explicitly, either
directly or indirectly via declare_dependency. Makefiles instead did
not propagate dependencies correctly from static libraries, for example.
Therefore, flags for dependencies need not be included in QEMU_CFLAGS.
LIBS is not used at all, so drop that one as well.
In a few cases the dependencies were not yet specified, so add them.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/arm')
-rw-r--r-- | hw/arm/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/arm/meson.build b/hw/arm/meson.build index 1ae5e17eeb..8480b7f37d 100644 --- a/hw/arm/meson.build +++ b/hw/arm/meson.build @@ -1,5 +1,5 @@ arm_ss = ss.source_set() -arm_ss.add(files('boot.c')) +arm_ss.add(files('boot.c'), fdt) arm_ss.add(when: 'CONFIG_PLATFORM_BUS', if_true: files('sysbus-fdt.c')) arm_ss.add(when: 'CONFIG_ARM_VIRT', if_true: files('virt.c')) arm_ss.add(when: 'CONFIG_ACPI', if_true: files('virt-acpi-build.c')) |