diff options
author | Peter Maydell | 2020-03-13 11:33:04 +0100 |
---|---|---|
committer | Peter Maydell | 2020-03-13 11:33:04 +0100 |
commit | 61c265f0660ee476985808c8aa7915617c44fd53 (patch) | |
tree | 1a2f200018dc1a9cf070f27e5071252f386a375c /configure | |
parent | Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20200312'... (diff) | |
parent | migration: recognize COLO as part of activating process (diff) | |
download | qemu-61c265f0660ee476985808c8aa7915617c44fd53.tar.gz qemu-61c265f0660ee476985808c8aa7915617c44fd53.tar.xz qemu-61c265f0660ee476985808c8aa7915617c44fd53.zip |
Merge remote-tracking branch 'remotes/dgilbert/tags/pull-migration-20200313a' into staging
Migration pull 2020-03-13
zstd build fix
A new auto-converge parameter
Some COLO improvements
# gpg: Signature made Fri 13 Mar 2020 10:29:34 GMT
# gpg: using RSA key 45F5C71B4A0CB7FB977A9FA90516331EBC5BFDE7
# gpg: Good signature from "Dr. David Alan Gilbert (RH2) <dgilbert@redhat.com>" [full]
# Primary key fingerprint: 45F5 C71B 4A0C B7FB 977A 9FA9 0516 331E BC5B FDE7
* remotes/dgilbert/tags/pull-migration-20200313a:
migration: recognize COLO as part of activating process
ram/colo: only record bitmap of dirty pages in COLO stage
COLO: Optimize memory back-up process
migration/throttle: Add throttle-trig-thres migration parameter
configure: Improve zstd test
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2475,7 +2475,8 @@ fi # zstd check if test "$zstd" != "no" ; then - if $pkg_config --exist libzstd ; then + libzstd_minver="1.4.0" + if $pkg_config --atleast-version=$libzstd_minver libzstd ; then zstd_cflags="$($pkg_config --cflags libzstd)" zstd_libs="$($pkg_config --libs libzstd)" LIBS="$zstd_libs $LIBS" |