On Mon, 4 Jan 2021 at 14:44, Paolo Bonzini <pbonz...@redhat.com> wrote: > > The following changes since commit 41192db338588051f21501abc13743e62b0a5605: > > Merge remote-tracking branch > 'remotes/ehabkost-gl/tags/machine-next-pull-request' into staging (2021-01-01 > 22:57:15 +0000) > > are available in the Git repository at: > > https://gitlab.com/bonzini/qemu.git tags/for-upstream > > for you to fetch changes up to bac87e979fcca9f884e1c9190132c51d99a86984: > > win32: drop fd registration to the main-loop on setting non-block > (2021-01-02 21:03:38 +0100) > > ---------------------------------------------------------------- > From Alex's pull request: > * improve cross-build KVM coverage > * new --without-default-features configure flag > * add __repr__ for ConsoleSocket for debugging > * build tcg tests with -Werror > * test 32 bit builds with fedora > * remove last traces of debian9 > * hotfix for centos8 powertools repo > > * Move lots of feature detection code to meson (Alex, myself) > * CFI and LTO support (Daniele) > * test-char dangling pointer (Eduardo) > * Build system and win32 fixes (Marc-André) > * Initialization fixes (myself) > * TCG include cleanup (Richard, myself) > * x86 'int N' fix (Peter) > > ----------------------------------------------------------------
Compile failure on s390x: ../../block/ssh.c: In function ‘check_host_key_knownhosts’: ../../block/ssh.c:281:28: error: storage size of ‘state’ isn’t known enum ssh_known_hosts_e state; ^~~~~ ../../block/ssh.c:289:13: error: implicit declaration of function ‘ssh_session_is_known_server’ [-Werror=implicit-function-declaration] state = ssh_session_is_known_server(s->session); ^~~~~~~~~~~~~~~~~~~~~~~~~~~ ../../block/ssh.c:289:13: error: nested extern declaration of ‘ssh_session_is_known_server’ [-Werror=nested-externs] ../../block/ssh.c:293:10: error: ‘SSH_KNOWN_HOSTS_OK’ undeclared (first use in this function); did you mean ‘SSH_OPTIONS_HOSTKEYS’? case SSH_KNOWN_HOSTS_OK: ^~~~~~~~~~~~~~~~~~ SSH_OPTIONS_HOSTKEYS ../../block/ssh.c:293:10: note: each undeclared identifier is reported only once for each function it appears in ../../block/ssh.c:297:10: error: ‘SSH_KNOWN_HOSTS_CHANGED’ undeclared (first use in this function); did you mean ‘SSH_KNOWN_HOSTS_OK’? case SSH_KNOWN_HOSTS_CHANGED: ^~~~~~~~~~~~~~~~~~~~~~~ SSH_KNOWN_HOSTS_OK (and other similar in the same file) On x86, new warnings from meson when doing the linux-user static build: Has header "sasl/sasl.h" : YES (cached) Library sasl2 found: YES Has header "snappy-c.h" : YES Library snappy found: YES ../../meson.build:829: WARNING: could not link libsnappy, disabling Has header "lzo/lzo1x.h" : YES Library lzo2 found: YES ../../meson.build:843: WARNING: could not link liblzo2, disabling thanks -- PMM