On 24/07/2015 16:14, Daniel P. Berrange wrote: >> > 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/ > I have a feeling that'd cause the test suite to fail to link, > because it expects it to be unconditionally present in the > libqemuutil.a lib.
Right... We need to introduce CONFIG_CRYPTO and use it in tests/Makefile too. Paolo