[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH 03/16] xen: link against xentoolcore
From: |
Anthony PERARD |
Subject: |
Re: [Qemu-devel] [PATCH 03/16] xen: link against xentoolcore |
Date: |
Mon, 23 Apr 2018 16:05:53 +0100 |
User-agent: |
Mutt/1.9.5 (2018-04-13) |
On Thu, Apr 19, 2018 at 05:45:06PM +0100, Ian Jackson wrote:
> From: Anthony PERARD <address@hidden>
>
> Xen libraries in 4.10 include a new xentoolcore library. This
> contains the xentoolcore_restrict_all function which we are about to
> want to use.
>
> Signed-off-by: Ian Jackson <address@hidden>
> Acked-by: Stefano Stabellini <address@hidden>
> ---
> v5: More truthful commit message.
> ---
> configure | 8 +++++---
> 1 file changed, 5 insertions(+), 3 deletions(-)
>
> diff --git a/configure b/configure
> index 0a19b03..f580255 100755
> --- a/configure
> +++ b/configure
> @@ -2188,7 +2188,7 @@ 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"
I think we want to check if "xentoolcore" pkg_config exist before trying
to use it. Otherwith, that is not going to work with Xen older than
4.10.
`pkg-config --libs` will throw an error without printing anything if
one of the library doesn't exist.
Instead, we could do this:
if $pkg_config --exists xentoolcore; then
xen_pc+=" xentoolcore"
fi
> 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"
--
Anthony PERARD
- [Qemu-devel] [PATCH v7 00/16] xen: xen-domid-restrict improvements, Ian Jackson, 2018/04/19
- [Qemu-devel] [PATCH 01/16] checkpatch: Add xendevicemodel_handle to the list of types, Ian Jackson, 2018/04/19
- [Qemu-devel] [PATCH 03/16] xen: link against xentoolcore, Ian Jackson, 2018/04/19
- Re: [Qemu-devel] [PATCH 03/16] xen: link against xentoolcore,
Anthony PERARD <=
- [Qemu-devel] [PATCH 06/16] xen: destroy_hvm_domain: Move reason into a variable, Ian Jackson, 2018/04/19
- [Qemu-devel] [PATCH 08/16] xen: destroy_hvm_domain: Try xendevicemodel_shutdown, Ian Jackson, 2018/04/19
- [Qemu-devel] [PATCH 13/16] xen: Expect xenstore write to fail when restricted, Ian Jackson, 2018/04/19
- [Qemu-devel] [PATCH 05/16] xen: defer call to xen_restrict until just before os_setup_post, Ian Jackson, 2018/04/19
- [Qemu-devel] [PATCH 04/16] xen: restrict: use xentoolcore_restrict_all, Ian Jackson, 2018/04/19
- [Qemu-devel] [PATCH 07/16] xen: move xc_interface compatibility fallback further up the file, Ian Jackson, 2018/04/19