xen: link against xentoolcore
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 <Ian.Jackson@eu.citrix.com> Acked-by: Stefano Stabellini <sstabellini@kernel.org>
This commit is contained in:
parent
7a64c17f3b
commit
58ea9a7a02
9
configure
vendored
9
configure
vendored
@ -2189,6 +2189,9 @@ if test "$xen" != "no" ; then
|
|||||||
xen=yes
|
xen=yes
|
||||||
xen_pc="xencontrol xenstore xenguest xenforeignmemory xengnttab"
|
xen_pc="xencontrol xenstore xenguest xenforeignmemory xengnttab"
|
||||||
xen_pc="$xen_pc xenevtchn xendevicemodel"
|
xen_pc="$xen_pc xenevtchn xendevicemodel"
|
||||||
|
if $pkg_config --exists xentoolcore; then
|
||||||
|
xen_pc="$xen_pc xentoolcore"
|
||||||
|
fi
|
||||||
QEMU_CFLAGS="$QEMU_CFLAGS $($pkg_config --cflags $xen_pc)"
|
QEMU_CFLAGS="$QEMU_CFLAGS $($pkg_config --cflags $xen_pc)"
|
||||||
libs_softmmu="$($pkg_config --libs $xen_pc) $libs_softmmu"
|
libs_softmmu="$($pkg_config --libs $xen_pc) $libs_softmmu"
|
||||||
LDFLAGS="$($pkg_config --libs $xen_pc) $LDFLAGS"
|
LDFLAGS="$($pkg_config --libs $xen_pc) $LDFLAGS"
|
||||||
@ -2220,18 +2223,20 @@ EOF
|
|||||||
cat > $TMPC <<EOF &&
|
cat > $TMPC <<EOF &&
|
||||||
#undef XC_WANT_COMPAT_MAP_FOREIGN_API
|
#undef XC_WANT_COMPAT_MAP_FOREIGN_API
|
||||||
#include <xenforeignmemory.h>
|
#include <xenforeignmemory.h>
|
||||||
|
#include <xentoolcore.h>
|
||||||
int main(void) {
|
int main(void) {
|
||||||
xenforeignmemory_handle *xfmem;
|
xenforeignmemory_handle *xfmem;
|
||||||
|
|
||||||
xfmem = xenforeignmemory_open(0, 0);
|
xfmem = xenforeignmemory_open(0, 0);
|
||||||
xenforeignmemory_map2(xfmem, 0, 0, 0, 0, 0, 0, 0);
|
xenforeignmemory_map2(xfmem, 0, 0, 0, 0, 0, 0, 0);
|
||||||
|
xentoolcore_restrict_all(0);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
compile_prog "" "$xen_libs -lxendevicemodel $xen_stable_libs"
|
compile_prog "" "$xen_libs -lxendevicemodel $xen_stable_libs -lxentoolcore"
|
||||||
then
|
then
|
||||||
xen_stable_libs="-lxendevicemodel $xen_stable_libs"
|
xen_stable_libs="-lxendevicemodel $xen_stable_libs -lxentoolcore"
|
||||||
xen_ctrl_version=41000
|
xen_ctrl_version=41000
|
||||||
xen=yes
|
xen=yes
|
||||||
elif
|
elif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user