search for: guestfs_int_init_libvirt_backend

Displaying 5 results from an estimated 5 matches for "guestfs_int_init_libvirt_backend".

2015 Oct 15
3
Build libguestfs error with undefined reference to `guestfs_int_init_libvirt_backend'
Dear all, I am trying to build libguestfs library on my system : Ubuntu Server 12.04 x64bit on XEN hypervisor. I have followed all instructions on their homepage but whey i am trying to build the library make -> gives me the following error: libguestfs.so: undefined reference to `guestfs_int_init_libvirt_backend' Here is a sample code of the error : make[2]: Entering directory `/home/str/libguestfs-1.30.3/examples' CCLD create-disk ../src/.libs/libguestfs.so: undefined reference to `guestfs_int_init_libvirt_backend' collect2: ld returned 1 exit status make[2]: *** [create-disk] Error 1...
2015 Oct 15
0
Re: Build libguestfs error with undefined reference to `guestfs_int_init_libvirt_backend'
...I am trying to build libguestfs library on my system : Ubuntu Server 12.04 > x64bit on XEN hypervisor. > > I have followed all instructions on their homepage but whey i am trying to > build the library make -> gives me the following error: libguestfs.so: > undefined reference to `guestfs_int_init_libvirt_backend' > > Here is a sample code of the error : > > make[2]: Entering directory `/home/str/libguestfs-1.30.3/examples' > CCLD create-disk > ../src/.libs/libguestfs.so: undefined reference to > `guestfs_int_init_libvirt_backend' > collect2: ld returned 1 exit st...
2015 Oct 16
0
Re: Build libguestfs error with undefined reference to `guestfs_int_init_libvirt_backend'
[Please keep all replies on the list.] On Fri, Oct 16, 2015 at 03:01:42AM +0300, Efstratios Skleparis wrote: > Dear Richard, > > Yes I do have libvirt-dev installed already and virsh --version was : 0.9.8 > ! > > - I tried to comment out the lines but still i got some errors due to that > [ undeclared variables etc. ] > > - Made changes to files : > >
2016 May 18
2
[PATCH v2 0/2] lib: qemu: Memoize qemu feature detection.
v1 -> v2: - Rebase on top of Pino's version work. Two patches went upstream, these are the two remaining patches. Note the generation number is still inside the qemu.stat file. We could put it in the filename, I have no particular preference. Rich.
2016 May 12
7
[PATCH 0/4] lib: qemu: Memoize qemu feature detection.
Doing qemu feature detection in the direct backend takes ~100ms because we need to run `qemu -help' and `qemu -devices ?', and each of those interacts with glibc's very slow link loader. Fixing the link loader is really hard. Instead memoize the output of those two commands. This patch series first separates all the code dealing with qemu into a separate module (src/qemu.c) and