[libvirt] Build issue with libvirt 0.9.8

Daniel P. Berrange berrange at redhat.com
Fri Dec 9 11:18:48 UTC 2011


On Fri, Dec 09, 2011 at 11:43:21AM +0100, Christophe Fergeau wrote:
> Hi,
> 
> When building libvirt 0.9.8 with jhbuild, I have now reproduced twice some
> issue during the build. Namely, after successfully building and installing
> libvirt 0.9.8, when I try to run virsh, I get:
> 
> virsh: /home/teuf/jhbuild-boxes/opt/lib64/libvirt.so.0: version
> `LIBVIRT_PRIVATE_0.9.7' not found (required by
> /home/teuf/jhbuild-boxes/opt/lib64/libvirt-qemu.so.0)
> 
> This happens when I start from a clean prefix (no libvirt in it), then I
> install 0.9.7, and then I try to install 0.9.8 on top of it. If I rebuild
> libvirt-0.9.8 once more this goes away, so this is not a blocking problem
> for me.
> 
> I have checked that libvirt-qemu.so.0 is the 0.9.8 version, I have looked
> in the build logs and in Makefile.am and everything looks correct to me, so
> I was wondering if anyone had any explanation for this behaviour. Once
> again, it's easy to workaround so it's not a big issue, but I'm mentioning
> it in case there would something obvious I missed.
> 
> I put the build logs at
> http://people.gnome.org/~teuf/libvirt-0.9.7
> and
> http://people.gnome.org/~teuf/libvirt-0.9.8


There is something odd about the way it is being built:

Notice where it installs the library:

Making install in src
make[1]: Entering directory `/home/teuf/jhbuild-boxes/sources/libvirt-0.9.8/src'
make  install-am
make[2]: Entering directory `/home/teuf/jhbuild-boxes/sources/libvirt-0.9.8/src'
make[3]: Entering directory `/home/teuf/jhbuild-boxes/sources/libvirt-0.9.8/src'
test -z "/home/teuf/jhbuild-boxes/opt/lib64" || /bin/mkdir -p "/home/teuf/jhbuild-boxes/opt/_jhbuild/root-libvirt/home/teuf/jhbuild-boxes/opt/lib64"
 /bin/sh ../libtool   --mode=install /home/teuf/.local/bin/install-check   libvirt.la libvirt-qemu.la '/home/teuf/jhbuild-boxes/opt/_jhbuild/root-libvirt/home/teuf/jhbuild-boxes/opt/lib64'


And now where virsh thinks the library should have been installed:

Making install in tools
make[1]: Entering directory `/home/teuf/jhbuild-boxes/sources/libvirt-0.9.8/tools'
make  install-am
make[2]: Entering directory `/home/teuf/jhbuild-boxes/sources/libvirt-0.9.8/tools'
make[3]: Entering directory `/home/teuf/jhbuild-boxes/sources/libvirt-0.9.8/tools'
test -z "/home/teuf/jhbuild-boxes/opt/bin" || /bin/mkdir -p "/home/teuf/jhbuild-boxes/opt/_jhbuild/root-libvirt/home/teuf/jhbuild-boxes/opt/bin"
  /bin/sh ../libtool   --mode=install /home/teuf/.local/bin/install-check virsh '/home/teuf/jhbuild-boxes/opt/_jhbuild/root-libvirt/home/teuf/jhbuild-boxes/opt/bin'
libtool: install: warning: `../src/libvirt.la' has not been installed in `/home/teuf/jhbuild-boxes/opt/lib64'
libtool: install: warning: `../src/libvirt-qemu.la' has not been installed in `/home/teuf/jhbuild-boxes/opt/lib64'
libtool: install: warning: `/home/teuf/jhbuild-boxes/sources/libvirt-0.9.8/src/libvirt.la' has not been installed in `/home/teuf/jhbuild-boxes/opt/lib64'
libtool: install: /home/teuf/.local/bin/install-check .libs/virsh /home/teuf/jhbuild-boxes/opt/_jhbuild/root-libvirt/home/teuf/jhbuild-boxes/opt/bin/virsh


Finally right at the end:


I: 41 files remaining from previous build
....
I: Deleted: '/home/teuf/jhbuild-boxes/opt/lib64/libvirt.so.0.9.7'
I: Deleted: '/home/teuf/jhbuild-boxes/opt/lib64/libvirt-qemu.so.0.9.7'


The combination of these 3 sets of messages, makes me think you have
confused libtool into linking to the old binary

What arguments are you passing to 'configure' and what if any variables
are you passing to 'make install' ?


I can't reproduce any problem myself if I do

   cd libvirt-0.9.7
   ./configure --prefix=/tmp/libvirt
   make
   make install
   cd ../libvirt-0.9.8
   ./configure --prefix=/tmp/libvirt
   make
   make install

Regards,
Daniel
-- 
|: http://berrange.com      -o-    http://www.flickr.com/photos/dberrange/ :|
|: http://libvirt.org              -o-             http://virt-manager.org :|
|: http://autobuild.org       -o-         http://search.cpan.org/~danberr/ :|
|: http://entangle-photo.org       -o-       http://live.gnome.org/gtk-vnc :|




More information about the libvir-list mailing list