Message ID | 20200925232454.2185982-1-pbonzini@redhat.com |
---|---|
State | New |
Headers | show |
On Sat, 26 Sep 2020 at 00:26, Paolo Bonzini <pbonzini@redhat.com> wrote: > > The following changes since commit 8c1c07929feae876202ba26f07a540c5115c18cd: > > Merge remote-tracking branch 'remotes/stefanha/tags/block-pull-request' into staging (2020-09-24 18:48:45 +0100) > > are available in the Git repository at: > > https://gitlab.com/bonzini/qemu.git tags/for-upstream > > for you to fetch changes up to a92d54785437140cb83d47190d5fcbc12c8ad9fc: > > hw/net/can: Correct Kconfig dependencies (2020-09-25 19:01:51 -0400) > > ---------------------------------------------------------------- > * SCSI fix (Dmitry, Li Feng, Li Qiang) > * memory API fixes (Eduardo) > * removal of deprecated '-numa node', 'cpu-add', '-smp' (Igor) > * ACPI fix for VMBus (Jon) > * relocatable install (myself) > * always remove docker containers (myself) > * serial cleanups (Philippe) > * vmware cpuid leaf for tsc and apic frequency (Sunil) > * KVM_FEATURE_ASYNC_PF_INT support (Vitaly) > * i386 XSAVE bugfix (Xiaoyao) > * QOM developer documentation in docs/devel (Eduardo) > * new checkpatch tests (Dov) > * x86_64 syscall fix (Douglas) > * interrupt-based APF fix (Vitaly) > * always create kvmclock (Vitaly) > * fix bios-tables-test (Eduardo) > * KVM PV features cleanup (myself) > * CAN FD (Pavel) > > meson: > * fixes (Marc-André, Max, Stefan, Alexander, myself) > * moved libmpathpersist, cocoa, malloc tests (myself) > * support for 0.56 introspected test dependencies (myself) > > ---------------------------------------------------------------- This version has new meson warnings: Library util found: YES Dependency pixman-1 found: YES 0.38.4 (cached) Library aio found: YES Dependency zlib found: YES 1.2.11 (cached) Dependency xkbcommon found: YES 0.10.0 (cached) Library rt found: YES ../../meson.build:274:3: ERROR: Unknown variable "have_softmmu". A full log can be found at /home/pm/qemu/build/all/meson-logs/meson-log.txt /usr/bin/python3 /home/pm/qemu/meson/meson.py --internal exe --capture qemu-version.h -- /home/pm/qemu/scripts/qemu-version.sh /home/pm/qemu '' 5.1.50 && if test -e qemu-version.h; then printf '%s\n' qemu-version.h > qemu-version.h.stamp; fi MALLOC_PERTURB_=${MALLOC_PERTURB_:-$(( ${RANDOM:-0} % 255 + 1))} G_TEST_SRCDIR=/home/pm/qemu/tests G_TEST_BUILDDIR=/home/pm/qemu/build/all/tests tests/check-block-qdict --tap -k (Side question: can we make errors from Meson cause the build to fail?) thanks -- PMM
diff --git a/meson.build b/meson.build index fa23453e4b..6245901a6d 100644 --- a/meson.build +++ b/meson.build @@ -271,7 +271,7 @@ if 'CONFIG_CURL' in config_host link_args: config_host['CURL_LIBS'].split()) endif libudev = not_found -if target_os == 'linux' and (have_softmmu or have_tools) +if targetos == 'linux' and (have_softmmu or have_tools) libudev = dependency('libudev', required: get_option('mpath').enabled(), static: enable_static)