diff options
| author | Richard Henderson | 2019-05-17 00:29:06 +0200 |
|---|---|---|
| committer | Richard Henderson | 2019-05-22 18:38:54 +0200 |
| commit | 243dc2cf95298383b657cf95896615197d8b35aa (patch) | |
| tree | a795a620dfb3e9352a4a9ced08277d3744d6b63e /Makefile.objs | |
| parent | configure: Link test before auto-enabling crypto libraries (diff) | |
| download | qemu-243dc2cf95298383b657cf95896615197d8b35aa.tar.gz qemu-243dc2cf95298383b657cf95896615197d8b35aa.tar.xz qemu-243dc2cf95298383b657cf95896615197d8b35aa.zip | |
build: Link user-only with crypto random number objects
For user-only, we require only the random number bits of the
crypto subsystem. Rename crypto-aes-obj-y to crypto-user-obj-y,
and add the random number objects, plus init.o to handle any
extra stuff the crypto library requires.
Move the crypto libraries from libs_softmmu and libs_tools to
LIBS, so that they are universally used.
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'Makefile.objs')
| -rw-r--r-- | Makefile.objs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.objs b/Makefile.objs index 2b0793ecc9..dcba4429c8 100644 --- a/Makefile.objs +++ b/Makefile.objs @@ -25,7 +25,7 @@ block-obj-m = block/ # crypto-obj-y is code used by both qemu system emulation and qemu-img crypto-obj-y = crypto/ -crypto-aes-obj-y = crypto/ +crypto-user-obj-y = crypto/ ####################################################################### # qom-obj-y is code used by both qemu system emulation and qemu-img |
