diff options
author | Pierrick Bouvier <pierrick.bouvier@linaro.org> | 2025-07-30 15:04:34 -0700 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-09-02 17:57:05 +0200 |
commit | 7ef54b7bf38104c59523a0d7559ae964676178b2 (patch) | |
tree | 04b6fe18d24148b181a39021ee611b27e1be296c | |
parent | e74416713fe166a6f21cc5ee2000cfd0c248e1a7 (diff) | |
download | qemu-7ef54b7bf38104c59523a0d7559ae964676178b2.zip qemu-7ef54b7bf38104c59523a0d7559ae964676178b2.tar.gz qemu-7ef54b7bf38104c59523a0d7559ae964676178b2.tar.bz2 |
migration: compile migration/ram.c once
Acked-by: Fabiano Rosas <farosas@suse.de>
Reviewed-by: Peter Xu <peterx@redhat.com>
Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-ID: <20250730220435.1139101-2-pierrick.bouvier@linaro.org>
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
-rw-r--r-- | migration/meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/migration/meson.build b/migration/meson.build index 276da3b..45e9445 100644 --- a/migration/meson.build +++ b/migration/meson.build @@ -31,6 +31,7 @@ system_ss.add(files( 'multifd-zero-page.c', 'options.c', 'postcopy-ram.c', + 'ram.c', 'savevm.c', 'socket.c', 'tls.c', @@ -50,5 +51,4 @@ system_ss.add(when: uadk, if_true: files('multifd-uadk.c')) system_ss.add(when: qatzip, if_true: files('multifd-qatzip.c')) specific_ss.add(when: 'CONFIG_SYSTEM_ONLY', - if_true: files('ram.c', - 'vfio.c')) + if_true: files('vfio.c')) |