qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PULL v3 00/12] Final changes for 2.4-rc0


From: Paolo Bonzini
Subject: Re: [Qemu-devel] [PULL v3 00/12] Final changes for 2.4-rc0
Date: Fri, 24 Jul 2015 15:55:56 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.0.1


On 24/07/2015 15:31, Peter Maydell wrote:
> Yes, but the set of required static libs for linux-user is pretty
> tiny, and it doesn't generally change. In particular since we
> don't want to link gnutls into linux-user we shouldn't be requiring
> the user to scrape up a static lib of it to keep things working.
> Requiring gnutls at all for these configure options is just a bug
> (in configure or the makefile).

Can you check if this works?

diff --git a/Makefile.objs b/Makefile.objs
index f094eff..9d988d9 100644
--- a/Makefile.objs
+++ b/Makefile.objs
@@ -2,7 +2,9 @@
 # Common libraries for tools and emulators
 stub-obj-y = stubs/
 util-obj-y = util/ qobject/ qapi/ qapi-types.o qapi-visit.o qapi-event.o
-util-obj-y += crypto/
+
+util-obj-$(call notempty,$(TOOLS)) += crypto/
+util-obj-$(CONFIG_SOFTMMU) += crypto/
 
 #######################################################################
 # block-obj-y is code used by both qemu system emulation and qemu-img

Paolo



reply via email to

[Prev in Thread] Current Thread [Next in Thread]