[Qemu-devel] [PATCH] configure: Remove -lxencall for Xen detection

Anthony PERARD posted 1 patch 6 years, 11 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20170511113542.16682-1-anthony.perard@citrix.com
Test checkpatch passed
Test docker passed
Test s390x passed
configure | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[Qemu-devel] [PATCH] configure: Remove -lxencall for Xen detection
Posted by Anthony PERARD 6 years, 11 months ago
QEMU does not depends on libxencall, it was added because it was a
missing link dependency of libxendevicemodel, but now the later should
be built properly.

Signed-off-by: Anthony PERARD <anthony.perard@citrix.com>
---
 configure | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure b/configure
index 7c020c076b..fa3522d18a 100755
--- a/configure
+++ b/configure
@@ -2014,7 +2014,7 @@ if test "$xen" != "no" ; then
   else
 
     xen_libs="-lxenstore -lxenctrl -lxenguest"
-    xen_stable_libs="-lxencall -lxenforeignmemory -lxengnttab -lxenevtchn"
+    xen_stable_libs="-lxenforeignmemory -lxengnttab -lxenevtchn"
 
     # First we test whether Xen headers and libraries are available.
     # If no, we are done and there is no Xen support.
-- 
Anthony PERARD


Re: [Qemu-devel] [PATCH] configure: Remove -lxencall for Xen detection
Posted by Stefano Stabellini 6 years, 11 months ago
On Thu, 11 May 2017, Anthony PERARD wrote:
> QEMU does not depends on libxencall, it was added because it was a
> missing link dependency of libxendevicemodel, but now the later should
> be built properly.
> 
> Signed-off-by: Anthony PERARD <anthony.perard@citrix.com>

Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>


> ---
>  configure | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/configure b/configure
> index 7c020c076b..fa3522d18a 100755
> --- a/configure
> +++ b/configure
> @@ -2014,7 +2014,7 @@ if test "$xen" != "no" ; then
>    else
>  
>      xen_libs="-lxenstore -lxenctrl -lxenguest"
> -    xen_stable_libs="-lxencall -lxenforeignmemory -lxengnttab -lxenevtchn"
> +    xen_stable_libs="-lxenforeignmemory -lxengnttab -lxenevtchn"
>  
>      # First we test whether Xen headers and libraries are available.
>      # If no, we are done and there is no Xen support.
> -- 
> Anthony PERARD
>