diff options
author | Cho, Yu-Chen | 2021-07-07 12:53:19 +0200 |
---|---|---|
committer | Cornelia Huck | 2021-07-07 14:01:58 +0200 |
commit | 98be64d2f4dd5ff66b16e3525ee7d099d82f5ec8 (patch) | |
tree | 8c9934bcc0ad39baf9a5d3f628f94564c8c7795e /target/s390x/meson.build | |
parent | target/s390x: move sysemu-only code out to cpu-sysemu.c (diff) | |
download | qemu-98be64d2f4dd5ff66b16e3525ee7d099d82f5ec8.tar.gz qemu-98be64d2f4dd5ff66b16e3525ee7d099d82f5ec8.tar.xz qemu-98be64d2f4dd5ff66b16e3525ee7d099d82f5ec8.zip |
target/s390x: split cpu-dump from helper.c
Splitting this functionality also allows us to make helper.c sysemu-only.
Signed-off-by: Claudio Fontana <cfontana@suse.de>
Signed-off-by: Cho, Yu-Chen <acho@suse.com>
Acked-by: Cornelia Huck <cohuck@redhat.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Message-Id: <20210707105324.23400-10-acho@suse.com>
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
Diffstat (limited to 'target/s390x/meson.build')
-rw-r--r-- | target/s390x/meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/s390x/meson.build b/target/s390x/meson.build index a73bae3dc5..6e1aa3b0cd 100644 --- a/target/s390x/meson.build +++ b/target/s390x/meson.build @@ -6,6 +6,7 @@ s390x_ss.add(files( 'gdbstub.c', 'helper.c', 'interrupt.c', + 'cpu-dump.c', )) s390x_ss.add(when: 'CONFIG_KVM', if_true: files('kvm.c'), if_false: files('kvm-stub.c')) |