[libvirt] ALERT Virtualization Automatic Builder

Overall status: failed Start date: Tue Oct 11 2011 Start time: 11:05:02 UTC / 07:05:02 EDT Build counter: 1318331102 Build timestamp: 1318331102 URL: http://builder.virt-tools.org/index.html Module: libvirt Status: failed URL: http://builder.virt-tools.org/module-libvirt.html

On Tue, Oct 11, 2011 at 07:11:46AM -0400, berrange@redhat.com wrote:
Overall status: failed Start date: Tue Oct 11 2011 Start time: 11:05:02 UTC / 07:05:02 EDT Build counter: 1318331102 Build timestamp: 1318331102 URL: http://builder.virt-tools.org/index.html
Module: libvirt Status: failed URL: http://builder.virt-tools.org/module-libvirt.html
Looks like a parallel make issue, wrt probes.o I think the following might be what we need: diff --git a/src/Makefile.am b/src/Makefile.am index f937b97..6451ad3 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1253,7 +1253,8 @@ libvirt_la_CFLAGS = -DIN_LIBVIRT $(AM_CFLAGS) libvirt_la_DEPENDENCIES = $(libvirt_la_BUILT_LIBADD) $(LIBVIRT_SYMBOL_FILE) if WITH_DTRACE -libvirt_la_LIBADD += probes.o +libvirt_la_BUILT_LIBADD += probes.o +libvirt_la_DEPENDENCIES += probes.o nodist_libvirt_la_SOURCES = probes.h BUILT_SOURCES += probes.h libvirt_probes.stp libvirt_functions.stp 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 :|

On 10/11/2011 05:17 AM, Daniel P. Berrange wrote:
Looks like a parallel make issue, wrt probes.o
I think the following might be what we need:
diff --git a/src/Makefile.am b/src/Makefile.am index f937b97..6451ad3 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1253,7 +1253,8 @@ libvirt_la_CFLAGS = -DIN_LIBVIRT $(AM_CFLAGS) libvirt_la_DEPENDENCIES = $(libvirt_la_BUILT_LIBADD) $(LIBVIRT_SYMBOL_FILE)
if WITH_DTRACE -libvirt_la_LIBADD += probes.o +libvirt_la_BUILT_LIBADD += probes.o +libvirt_la_DEPENDENCIES += probes.o
ACK. That also fixed things for my case, of doing an incremental single-thread build in-tree rather than a parallel build on a fresh tree. -- Eric Blake eblake@redhat.com +1-801-349-2682 Libvirt virtualization library http://libvirt.org
participants (3)
-
berrange@redhat.com
-
Daniel P. Berrange
-
Eric Blake