diff options
| author | Paolo Bonzini | 2019-07-29 15:55:47 +0200 |
|---|---|---|
| committer | Paolo Bonzini | 2019-12-17 19:32:48 +0100 |
| commit | b8d89ba83bf42be1f7b1d7d45236eaf6960d1c4e (patch) | |
| tree | b0d8f39d91daf80289f290275e5aa24406a5c49e /Makefile.objs | |
| parent | libvixl: remove per-target compiler flags (diff) | |
| download | qemu-b8d89ba83bf42be1f7b1d7d45236eaf6960d1c4e.tar.gz qemu-b8d89ba83bf42be1f7b1d7d45236eaf6960d1c4e.tar.xz qemu-b8d89ba83bf42be1f7b1d7d45236eaf6960d1c4e.zip | |
crypto: move common bits for all emulators to libqemuutil
qcrypto_random_*, AES and qcrypto_init do not need to be linked as a whole
and are the only parts that are used by user-mode emulation. Place them
in libqemuutil, so that whatever needs them will pick them up automatically.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'Makefile.objs')
| -rw-r--r-- | Makefile.objs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile.objs b/Makefile.objs index c4bc783a7d..6807c8b0d5 100644 --- a/Makefile.objs +++ b/Makefile.objs @@ -1,7 +1,7 @@ ####################################################################### # Common libraries for tools and emulators stub-obj-y = stubs/ util/ crypto/ -util-obj-y = util/ qobject/ qapi/ +util-obj-y = crypto/ util/ qobject/ qapi/ chardev-obj-y = chardev/ @@ -25,7 +25,6 @@ block-obj-m = block/ # crypto-obj-y is code used by both qemu system emulation and qemu-img crypto-obj-y = crypto/ -crypto-user-obj-y = crypto/ ####################################################################### # qom-obj-y is code used by both qemu system emulation and qemu-img |
