[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH RFC 1/6] xen: link against xentoolcore
From: |
Juergen Gross |
Subject: |
Re: [Qemu-devel] [PATCH RFC 1/6] xen: link against xentoolcore |
Date: |
Fri, 22 Sep 2017 14:14:16 +0200 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.3.0 |
On 15/09/17 20:09, Ian Jackson wrote:
> Signed-off-by: Ian Jackson <address@hidden>
> ---
> configure | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/configure b/configure
> index fd7e3a5..c59a0c0 100755
> --- a/configure
> +++ b/configure
> @@ -2072,14 +2072,14 @@ if test "$xen" != "no" ; then
> $($pkg_config --modversion xencontrol | sed 's/\./ /g') )"
> xen=yes
> xen_pc="xencontrol xenstore xenguest xenforeignmemory xengnttab"
> - xen_pc="$xen_pc xenevtchn xendevicemodel"
> + xen_pc="$xen_pc xenevtchn xendevicemodel xentoolcore"
> QEMU_CFLAGS="$QEMU_CFLAGS $($pkg_config --cflags $xen_pc)"
> libs_softmmu="$($pkg_config --libs $xen_pc) $libs_softmmu"
> LDFLAGS="$($pkg_config --libs $xen_pc) $LDFLAGS"
> else
>
> xen_libs="-lxenstore -lxenctrl -lxenguest"
> - xen_stable_libs="-lxenforeignmemory -lxengnttab -lxenevtchn"
> + xen_stable_libs="-lxenforeignmemory -lxengnttab -lxenevtchn
> -lxentoolcore"
I don't think this is necessary. libxentoolcore is only available with
a new Xen, which will always have the xentoolcore.pc file installed.
Juergen
- [Qemu-devel] [PATCH RFC 0/6] xen: xen-domid-restrict improvements, Ian Jackson, 2017/09/15
- [Qemu-devel] [PATCH RFC 6/6] os-posix: Provide new -runasid option, Ian Jackson, 2017/09/15
- [Qemu-devel] [PATCH RFC 1/6] xen: link against xentoolcore, Ian Jackson, 2017/09/15
- [Qemu-devel] [PATCH RFC 4/6] xen: destroy_hvm_domain: Move reason into a variable, Ian Jackson, 2017/09/15
- [Qemu-devel] [PATCH RFC 2/6] xen: defer call to xen_restrict until running, Ian Jackson, 2017/09/15
- [Qemu-devel] [PATCH RFC 3/6] xen: restrict: use xentoolcore_restrict_all, Ian Jackson, 2017/09/15
- [Qemu-devel] [PATCH RFC 5/6] xen: destroy_hvm_domain: Try xendevicemodel_shutdown, Ian Jackson, 2017/09/15