Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [git commit] pkg-infra: pass --disable-doc if documentation is not enabled
From: Peter Korsgaard @ 2012-12-12 16:11 UTC (permalink / raw)
  To: buildroot

commit: http://git.buildroot.net/buildroot/commit/?id=489970e047a78f7806747b99a7e1bd170fc5c75b
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

Many configure scripts support an option like --disable-doc, --disable-docs
or --disable-documentation.  Pass all of these to configure.

In addition, not all Xorg packages accept the --disable-xxx. Instead they
look for xmlto and/or fop and build documentation if they exist.  For host
packages, this may lead to build errors because /usr/bin/xmlto uses libxml2
and we set LD_LIBRARY_PATH to point to $(HOST_DIR)/lib, which may contain
a libxml2 as well.  So it's essential to disable xmlto for host packages.

Also some whitespace cleanup.

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 package/Makefile.in      |   10 +++++++++-
 package/pkg-autotools.mk |    9 +++++++++
 2 files changed, 18 insertions(+), 1 deletions(-)

diff --git a/package/Makefile.in b/package/Makefile.in
index 4281773..cc8f320 100644
--- a/package/Makefile.in
+++ b/package/Makefile.in
@@ -290,7 +290,15 @@ DISABLE_LARGEFILE= --disable-largefile
 endif
 
 ifneq ($(BR2_HAVE_DOCUMENTATION),y)
-DISABLE_DOCUMENTATION=--disable-gtk-doc
+# The configure option varies, but since unknown options are ignored
+# we can pass all of them.
+DISABLE_DOCUMENTATION = \
+	--disable-gtk-doc \
+	--disable-doc \
+	--disable-docs \
+	--disable-documentation \
+	--with-xmlto=no \
+	--with-fop=no
 endif
 
 ifeq ($(BR2_INET_IPV6),y)
diff --git a/package/pkg-autotools.mk b/package/pkg-autotools.mk
index 785daab..890506b 100644
--- a/package/pkg-autotools.mk
+++ b/package/pkg-autotools.mk
@@ -116,6 +116,9 @@ endef
 else
 
 # Configure package for host
+# disable all kind of documentation generation in the process,
+# because it often relies on host tools which may or may not be
+# installed.
 define $(2)_CONFIGURE_CMDS
 	(cd $$($$(PKG)_SRCDIR) && rm -rf config.cache; \
 	        $$(HOST_CONFIGURE_OPTS) \
@@ -126,6 +129,12 @@ define $(2)_CONFIGURE_CMDS
 		--prefix="$$(HOST_DIR)/usr" \
 		--sysconfdir="$$(HOST_DIR)/etc" \
 		--enable-shared --disable-static \
+		--disable-gtk-doc \
+		--disable-doc \
+		--disable-docs \
+		--disable-documentation \
+		--with-xmlto=no \
+		--with-fop=no \
 		$$($$(PKG)_CONF_OPT) \
 	)
 endef

^ permalink raw reply related

* [Buildroot] [git commit] boa: needs MMU
From: Peter Korsgaard @ 2012-12-12 16:11 UTC (permalink / raw)
  To: buildroot

commit: http://git.buildroot.net/buildroot/commit/?id=64c3ce4d886bea18f24231d09914c3be2ede144d
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

Fixes
http://autobuild.buildroot.net/results/0909856aea5ea5d13206c9a46b8b5174661239b4/

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 package/boa/Config.in |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/package/boa/Config.in b/package/boa/Config.in
index 48943ff..982833a 100644
--- a/package/boa/Config.in
+++ b/package/boa/Config.in
@@ -1,5 +1,6 @@
 config BR2_PACKAGE_BOA
 	bool "boa"
+	depends on BR2_USE_MMU # uses fork()
 	help
 	  A very small and very fast http daemon.  Not intended as
 	  a feature-packed server.

^ permalink raw reply related

* [Buildroot] usb_modeswitch and lsusb yield Segmentation fault
From: Gustavo Zacarias @ 2012-12-12 15:29 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <7EE27C3F912F450282DD2DE63A6A7FED@JohanW7>

On 12/12/2012 12:26 PM, Sagaert Johan wrote:
> Hi
> 
> I was using the newer pthreads implementation,
> The old/stable pthreads are working for both lsusb (usbutils) and for usb_modeswitch with uClibc 0.9.33
> I did not try NTPL since this breaks the build of GDB.
> 
> I am not sure about what packages need the newer pthreads and what need the older/stable version.
> 
> Regards, Johan

Hi again.
Yes, the old/stable ones worked too now that i remember, they're pretty
well tested.
Packages don't depend on anyone in particular, the implementation is
just an uClibc internal thing.
Regards.

^ permalink raw reply

* [Buildroot] usb_modeswitch and lsusb yield Segmentation fault
From: Sagaert Johan @ 2012-12-12 15:26 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <50C5C08D.407@zacarias.com.ar>

 

Hi

I was using the newer pthreads implementation,
The old/stable pthreads are working for both lsusb (usbutils) and for usb_modeswitch with uClibc 0.9.33
I did not try NTPL since this breaks the build of GDB.

I am not sure about what packages need the newer pthreads and what need the older/stable version.

Regards, Johan

 

-----Oorspronkelijk bericht-----
Van: Gustavo Zacarias [mailto:gustavo at zacarias.com.ar] 
Verzonden: maandag 10 december 2012 11:59
Aan: Sagaert Johan
CC: buildroot at busybox.net
Onderwerp: Re: [Buildroot] usb_modeswitch and lsusb yield Segmentation fault

On 12/10/2012 07:57 AM, Sagaert Johan wrote:

> Hi
> 
> I am using buildroot's internal toolchain gcc 4.6.3 and uClibc 
> 0.9.33.3 and I the pthreads library.

Which threading implementation are you using? linuxthreads, linuxthreads
(stable/old) or Native POSIX Threading (NPTL) ?
NPTL should be the safe bet, i don't know how good/bad the others work on later versions of uClibc.
Regards.

^ permalink raw reply

* [Buildroot] [PATCH RESEND] pkg-infra: pass --disable-doc if documentation is not enabled
From: Arnout Vandecappelle @ 2012-12-12 14:07 UTC (permalink / raw)
  To: buildroot

Many configure scripts support an option like --disable-doc, --disable-docs
or --disable-documentation.  Pass all of these to configure.

In addition, not all Xorg packages accept the --disable-xxx. Instead they
look for xmlto and/or fop and build documentation if they exist.  For host
packages, this may lead to build errors because /usr/bin/xmlto uses libxml2
and we set LD_LIBRARY_PATH to point to $(HOST_DIR)/lib, which may contain
a libxml2 as well.  So it's essential to disable xmlto for host packages.

Also some whitespace cleanup.

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
This obviously has far-ranging effects but I rebuilt all non-deprecated
packages successfully with this patch.

---
 package/Makefile.in      |   10 +++++++++-
 package/pkg-autotools.mk |    9 +++++++++
 2 files changed, 18 insertions(+), 1 deletion(-)

diff --git a/package/Makefile.in b/package/Makefile.in
index 4281773..cc8f320 100644
--- a/package/Makefile.in
+++ b/package/Makefile.in
@@ -290,7 +290,15 @@ DISABLE_LARGEFILE= --disable-largefile
 endif
 
 ifneq ($(BR2_HAVE_DOCUMENTATION),y)
-DISABLE_DOCUMENTATION=--disable-gtk-doc
+# The configure option varies, but since unknown options are ignored
+# we can pass all of them.
+DISABLE_DOCUMENTATION = \
+	--disable-gtk-doc \
+	--disable-doc \
+	--disable-docs \
+	--disable-documentation \
+	--with-xmlto=no \
+	--with-fop=no
 endif
 
 ifeq ($(BR2_INET_IPV6),y)
diff --git a/package/pkg-autotools.mk b/package/pkg-autotools.mk
index 785daab..890506b 100644
--- a/package/pkg-autotools.mk
+++ b/package/pkg-autotools.mk
@@ -116,6 +116,9 @@ endef
 else
 
 # Configure package for host
+# disable all kind of documentation generation in the process,
+# because it often relies on host tools which may or may not be
+# installed.
 define $(2)_CONFIGURE_CMDS
 	(cd $$($$(PKG)_SRCDIR) && rm -rf config.cache; \
 	        $$(HOST_CONFIGURE_OPTS) \
@@ -126,6 +129,12 @@ define $(2)_CONFIGURE_CMDS
 		--prefix="$$(HOST_DIR)/usr" \
 		--sysconfdir="$$(HOST_DIR)/etc" \
 		--enable-shared --disable-static \
+		--disable-gtk-doc \
+		--disable-doc \
+		--disable-docs \
+		--disable-documentation \
+		--with-xmlto=no \
+		--with-fop=no \
 		$$($$(PKG)_CONF_OPT) \
 	)
 endef
-- 
tg: (7ffda3e..) t/disable-doc (depends on: master)

^ permalink raw reply related

* [Buildroot] buildroot 2012.11 large file support
From: Thomas Petazzoni @ 2012-12-12 12:47 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <20121212120341.69a89e93@skate>

Dear Thomas Petazzoni,

On Wed, 12 Dec 2012 12:03:41 +0100, Thomas Petazzoni wrote:

> Thing that remains not understood is what change between 4.5 and 4.6
> broke this.

Apparently, what changed is that the gcc/configure.ac has gained a
AC_SYS_LARGEFILE check:

$ grep LARGEFILE toolchain/gcc-4.6.3/gcc/configure.ac 
AC_SYS_LARGEFILE
$ grep LARGEFILE toolchain/gcc-4.5.4/gcc/configure.ac 
$

On gcc >= 4.6, this means that a #define _FILE_OFFSET_BITS 64 is added
to auto-host.h, which breaks the build of crtstuff.c for the target as
uClibc headers warn that _FILE_OFFSET_BITS is set to 64 even though
largefile support is not enabled.

Thomas
-- 
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

^ permalink raw reply

* [Buildroot] [PATCH] boa: needs MMU
From: Gustavo Zacarias @ 2012-12-12 11:45 UTC (permalink / raw)
  To: buildroot

Fixes
http://autobuild.buildroot.net/results/0909856aea5ea5d13206c9a46b8b5174661239b4/

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/boa/Config.in |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/package/boa/Config.in b/package/boa/Config.in
index 48943ff..982833a 100644
--- a/package/boa/Config.in
+++ b/package/boa/Config.in
@@ -1,5 +1,6 @@
 config BR2_PACKAGE_BOA
 	bool "boa"
+	depends on BR2_USE_MMU # uses fork()
 	help
 	  A very small and very fast http daemon.  Not intended as
 	  a feature-packed server.
-- 
1.7.8.6

^ permalink raw reply related

* [Buildroot] buildroot 2012.11 large file support
From: Thomas Petazzoni @ 2012-12-12 11:03 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <20121212120159.4292d70b@skate>

Dear Thomas Petazzoni,

On Wed, 12 Dec 2012 12:01:59 +0100, Thomas Petazzoni wrote:
> 
> On Wed, 12 Dec 2012 11:16:28 +0100, Thomas Petazzoni wrote:
> 
> > I haven't looked into them for now.
> 
> Ok, a quick investigation shows that crtstuff.c includes auto-host.h,
> which contains _FILE_OFFSET_BITS. crtstuff.c is built for the target,
> and therefore should normally not include auto-host.h, as noted by the
> following comment:
> 
> ==
> /* FIXME: Including auto-host is incorrect, but until we have
>    identified the set of defines that need to go into auto-target.h,
>    this will have to do.  */
> #include "auto-host.h"
> ==

(sorry for not finishing the e-mail)

And this is causing problems for cross-compilation. For example:
http://www.archivum.info/gcc-patches at gcc.gnu.org/2005-11/00293/Patch-to-crtstuff.c-to-undefine-some-macros-after-auto-host.h.html.

According to http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21481 it is
quite clear that crtstuff.c should not include auto-host.h, but
apparently, it is not that simple.

Thing that remains not understood is what change between 4.5 and 4.6
broke this.

Best regards,

Thomas
-- 
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

^ permalink raw reply

* [Buildroot] buildroot 2012.11 large file support
From: Thomas Petazzoni @ 2012-12-12 11:01 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <20121212111628.5d1e9dba@skate>


On Wed, 12 Dec 2012 11:16:28 +0100, Thomas Petazzoni wrote:

> I haven't looked into them for now.

Ok, a quick investigation shows that crtstuff.c includes auto-host.h,
which contains _FILE_OFFSET_BITS. crtstuff.c is built for the target,
and therefore should normally not include auto-host.h, as noted by the
following comment:

==
/* FIXME: Including auto-host is incorrect, but until we have
   identified the set of defines that need to go into auto-target.h,
   this will have to do.  */
#include "auto-host.h"
==



-- 
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

^ permalink raw reply

* [Buildroot] buildroot 2012.11 large file support
From: Fabio Porcedda @ 2012-12-12 10:21 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <87d2yhsoh8.fsf@dell.be.48ers.dk>

On Mon, Dec 10, 2012 at 8:20 PM, Peter Korsgaard <jacmet@uclibc.org> wrote:
>>>>>> "Willy" == Willy Lambert <lambert.willy@gmail.com> writes:
>
> Hi,
>
>  >> Large file support isn't select and i have also checked it with make
>  >> uclibc-menuconfig for uclibc.
>  >> The same problem happend with beaglebone_defconfig.
>  >>
>  >> After "make clean" and selecting "large file support" the build process
>  >> works.
>  >>
>  >> This problem doesn't happend with release 2012.08.
>  >>
>  >> Has anybody a hint for me ?
>
>  Willy> I have just had the same problem, is it possible that this is a
>  Willy> regression of the 2012.11 version ?
>
> I don't think so. I just did a:
>
> make at91sam9263ek_defconfig && make
>
> Without any problems. What exactly did you do?

I've the same problem,
I'm using Ubuntu 12.10 32bit.

This configurations doesn't work:

A)
make at91sam9263ek_defconfig && make
https://dl.dropbox.com/u/14668671/log-at91sam9263ek.txt.bz2

B)
defconfig:
BR2_arm=y
BR2_GCC_VERSION_4_7_X=y

https://dl.dropbox.com/u/14668671/log-gcc4.7.txt.bz2

C)
defconfig:
BR2_arm=y

https://dl.dropbox.com/u/14668671/log.txt.bz2


This configuration build fine:
BR2_arm=y
BR2_GCC_VERSION_4_5_X=y

https://dl.dropbox.com/u/14668671/log-gcc4.5.txt.bz2

Best regards
--
Fabio Porcedda

^ permalink raw reply

* [Buildroot] buildroot 2012.11 large file support
From: Thomas Petazzoni @ 2012-12-12 10:16 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <50C7D14F.4060304@mind.be>

Dear Arnout Vandecappelle,

On Wed, 12 Dec 2012 01:35:27 +0100, Arnout Vandecappelle wrote:

>   Except for the environment, I don't expect we'll see much interesting
> in these...
> 
>   Probably more useful are all the config.log under output/toolchain/gcc*
> (especially output/toolchain/gcc-*-final/*/libgcc/config.log and config.h)

I have now reproduced the problem on a fresh installation of Ubuntu
12.04 32 bits. Nothing fancy in my system: it is an Ubuntu server, with
just the base packages + the minimal dependencies for Buildroot to run.

I have posted at
http://free-electrons.com/~thomas/pub/largefile-build-problem.tar.gz a
tarball that contains:

logfile <-- this is the full build log
output/build/host-autoconf-2.68/config.log
output/build/host-gmp-5.0.5/config.log
output/build/host-mpc-1.0.1/config.log
output/build/host-m4-1.4.16/config.log
output/build/host-mpfr-3.1.1/config.log
output/build/host-libtool-2.2.10/config.log
output/build/host-binutils-2.21.1/libiberty/config.log
output/build/host-binutils-2.21.1/binutils/config.log
output/build/host-binutils-2.21.1/bfd/config.log
output/build/host-binutils-2.21.1/config.log
output/build/host-binutils-2.21.1/gprof/config.log
output/build/host-binutils-2.21.1/intl/config.log
output/build/host-binutils-2.21.1/gas/config.log
output/build/host-binutils-2.21.1/etc/config.log
output/build/host-binutils-2.21.1/ld/config.log
output/build/host-binutils-2.21.1/opcodes/config.log
output/build/host-automake-1.11.6/config.log
output/toolchain/gcc-4.6.3-initial/libiberty/config.log
output/toolchain/gcc-4.6.3-initial/libdecnumber/config.log
output/toolchain/gcc-4.6.3-initial/lto-plugin/config.log
output/toolchain/gcc-4.6.3-initial/libcpp/config.log
output/toolchain/gcc-4.6.3-initial/zlib/config.log
output/toolchain/gcc-4.6.3-initial/config.log
output/toolchain/gcc-4.6.3-initial/build-i686-pc-linux-gnu/libiberty/config.log
output/toolchain/gcc-4.6.3-initial/build-i686-pc-linux-gnu/fixincludes/config.log
output/toolchain/gcc-4.6.3-initial/fixincludes/config.log
output/toolchain/gcc-4.6.3-initial/intl/config.log
output/toolchain/gcc-4.6.3-initial/gcc/config.log
output/toolchain/gcc-4.6.3-intermediate/libiberty/config.log
output/toolchain/gcc-4.6.3-intermediate/libdecnumber/config.log
output/toolchain/gcc-4.6.3-intermediate/lto-plugin/config.log
output/toolchain/gcc-4.6.3-intermediate/libcpp/config.log
output/toolchain/gcc-4.6.3-intermediate/zlib/config.log
output/toolchain/gcc-4.6.3-intermediate/config.log
output/toolchain/gcc-4.6.3-intermediate/build-i686-pc-linux-gnu/libiberty/config.log
output/toolchain/gcc-4.6.3-intermediate/build-i686-pc-linux-gnu/fixincludes/config.log
output/toolchain/gcc-4.6.3-intermediate/fixincludes/config.log
output/toolchain/gcc-4.6.3-intermediate/i586-buildroot-linux-uclibc/libgcc/config.log
output/toolchain/gcc-4.6.3-intermediate/intl/config.log
output/toolchain/gcc-4.6.3-intermediate/gcc/config.log
output/toolchain/uClibc-0.9.33.2/.config

I haven't looked into them for now.

Thomas
-- 
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

^ permalink raw reply

* [Buildroot] [PATCH] linux: add option to get sources from custom directory
From: Richard Braun @ 2012-12-12 10:14 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <20121212105418.601702fc@skate>

On Wed, Dec 12, 2012 at 10:54:18AM +0100, Thomas Petazzoni wrote:
> On the other side, Linux, and bootloaders, are kind of special packages
> in that very often people will have to work on them, and making this
> easier might be useful.

The fact that the kernel is clearly separate from the other packages in
menuconfig, and that it already provides several ways of fetching the
source makes it hard for most people to think of the override mechanism.
On the other hand, the fact that it's handled almost like any other
package makes this hack extremely easy and safe to implement. I don't
see a reason not to provide this fetching method if the others aren't
also reconsidered (otherwise I wouldn't have bothered sending it
anyway).

-- 
Richard Braun

^ permalink raw reply

* [Buildroot] [PATCH] linux: add option to get sources from custom directory
From: Thomas Petazzoni @ 2012-12-12  9:54 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1354873604-4304-1-git-send-email-rbraun@sceen.net>

Dear Richard Braun,

On Fri,  7 Dec 2012 10:46:44 +0100, Richard Braun wrote:

> diff --git a/linux/Config.in b/linux/Config.in
> index ef3b2a1..cafbe59 100644
> --- a/linux/Config.in
> +++ b/linux/Config.in
> @@ -46,6 +46,12 @@ config BR2_LINUX_KERNEL_CUSTOM_TARBALL
>  	  This option allows to specify the http or ftp location of a
>  	  specific kernel source tarball
>  
> +config BR2_LINUX_KERNEL_CUSTOM_DIRECTORY
> +	bool "Custom directory"
> +	help
> +	  This option allows to specify the path of a specific kernel
> +	  source directory.
> +

This duplicates what the "source override" mechanism allows to do in a
generic way for all packages. So on one side, I'm tempted to say "no"
because I don't think it's worth having two mechanisms to achieve the
same thing, especially when the new mechanism is package-specific (what
if someone wants a custom source directory for Qt, for zlib, for
libpng, etc.).

On the other side, Linux, and bootloaders, are kind of special packages
in that very often people will have to work on them, and making this
easier might be useful.

Generally speaking, I'd like us to have an overall "vision" of how to
do development with Buildroot, rather than doing local hacks/fixes per
package to adjust one particular development workflow, which would end
up with many different hacks in various places with absolutely no
coherency.

Thomas
-- 
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

^ permalink raw reply

* [Buildroot] [PATCH] linux: add option to get sources from custom directory
From: Richard Braun @ 2012-12-12  9:46 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1354873604-4304-1-git-send-email-rbraun@sceen.net>

Ping.

-- 
Richard Braun

^ permalink raw reply

* [Buildroot] buildroot 2012.11 large file support
From: Willy Lambert @ 2012-12-12  9:20 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <20121211171008.3b869509@skate>

2012/12/11 Thomas Petazzoni <thomas.petazzoni@free-electrons.com>:
> Dear Willy Lambert,
>
> On Tue, 11 Dec 2012 16:09:46 +0100, Willy Lambert wrote:
>
>> I did this again from another machine
>> (silvie at silvie-VirtualBox:~/buildroot-2012.11$ uname -a
>> Linux silvie-VirtualBox 3.2.0-34-generic-pae #53-Ubuntu SMP Thu Nov 15
>> 11:11:12 UTC 2012 i686 i686 i386 GNU/Linux)
>>
>> In short :
>> wget buildroot, tar -xf, make, a menuconfig pops, I exit and save
>> config, make, wait a bit ... and it fails with the above error about
>> large file system.
>>
>> So I'm sure now that the default config has a problem with largefiles.
>> I'm sorry I'm too new to investigate further. Should I open a bug
>> ticket ?
>>
>> I did not try other versions of gcc as proposed by Berns. But my gcc
>> version is :
>> ard at ard-host(10.0):/opt/buildroot/output/host/usr$
>> ./x86_64-buildroot-linux-uclibc/bin/gcc --version
>> gcc (Buildroot 2012.11-svn2-dirty) 4.6.3
>> I wonder about the "svn2-dirty" tag.
>
> Can you do:
>
>         make clean
>         rm .config
>         make menuconfig / exit / save
>         env > buildroot-fails.env
>         make 2>&1 | tee buildroot-fails.log
>         cp output/toolchain/uClibc-0.9.33.2/.config buildroot-fails.uClibc.config
>

all my precedent try were on a virtual machines i386. One is latest
Ubuntu, the other is a not-updated Dedian Squeeze from early 2011.

Logs will come in private mail, because I don't know how to share them easily.


Here is the other command results (that you probably don't need) :

silvie at silvie-VirtualBox:~/buildroot-2012.11$ make clean
rm -rf /home/silvie/buildroot-2012.11/output/host/usr/i586-buildroot-linux-uclibc/sysroot
/home/silvie/buildroot-2012.11/output/target
/home/silvie/buildroot-2012.11/output/images
/home/silvie/buildroot-2012.11/output/host \
		/home/silvie/buildroot-2012.11/output/stamps
/home/silvie/buildroot-2012.11/output/build
/home/silvie/buildroot-2012.11/output/toolchain
/home/silvie/buildroot-2012.11/output/staging \
		/home/silvie/buildroot-2012.11/output/legal-info
silvie at silvie-VirtualBox:~/buildroot-2012.11$ rm .config
silvie at silvie-VirtualBox:~/buildroot-2012.11$ make menuconfig
mkdir -p /home/silvie/buildroot-2012.11/output/build/buildroot-config/lxdialog
make CC="/usr/bin/gcc" HOSTCC="/usr/bin/gcc"
obj=/home/silvie/buildroot-2012.11/output/build/buildroot-config -C
support/kconfig -f Makefile.br mconf
make[1]: entrant dans le r?pertoire ?
/home/silvie/buildroot-2012.11/support/kconfig ?
/usr/bin/gcc -DCURSES_LOC="<ncurses.h>" -DLOCALE
-I/home/silvie/buildroot-2012.11/output/build/buildroot-config  -MM
*.c > /home/silvie/buildroot-2012.11/output/build/buildroot-config/.depend
2>/dev/null || :
make[1]: quittant le r?pertoire ?
/home/silvie/buildroot-2012.11/support/kconfig ?
make[1]: entrant dans le r?pertoire ?
/home/silvie/buildroot-2012.11/support/kconfig ?
/usr/bin/gcc -DCURSES_LOC="<ncurses.h>" -DLOCALE
-I/home/silvie/buildroot-2012.11/output/build/buildroot-config   -c
conf.c -o /home/silvie/buildroot-2012.11/output/build/buildroot-config/conf.o
/usr/bin/gcc -DCURSES_LOC="<ncurses.h>" -DLOCALE
-I/home/silvie/buildroot-2012.11/output/build/buildroot-config   -c
lxdialog/checklist.c -o
/home/silvie/buildroot-2012.11/output/build/buildroot-config/lxdialog/checklist.o
/usr/bin/gcc -DCURSES_LOC="<ncurses.h>" -DLOCALE
-I/home/silvie/buildroot-2012.11/output/build/buildroot-config   -c
lxdialog/inputbox.c -o
/home/silvie/buildroot-2012.11/output/build/buildroot-config/lxdialog/inputbox.o
/usr/bin/gcc -DCURSES_LOC="<ncurses.h>" -DLOCALE
-I/home/silvie/buildroot-2012.11/output/build/buildroot-config   -c
lxdialog/menubox.c -o
/home/silvie/buildroot-2012.11/output/build/buildroot-config/lxdialog/menubox.o
/usr/bin/gcc -DCURSES_LOC="<ncurses.h>" -DLOCALE
-I/home/silvie/buildroot-2012.11/output/build/buildroot-config   -c
lxdialog/textbox.c -o
/home/silvie/buildroot-2012.11/output/build/buildroot-config/lxdialog/textbox.o
/usr/bin/gcc -DCURSES_LOC="<ncurses.h>" -DLOCALE
-I/home/silvie/buildroot-2012.11/output/build/buildroot-config   -c
lxdialog/util.c -o
/home/silvie/buildroot-2012.11/output/build/buildroot-config/lxdialog/util.o
/usr/bin/gcc -DCURSES_LOC="<ncurses.h>" -DLOCALE
-I/home/silvie/buildroot-2012.11/output/build/buildroot-config   -c
lxdialog/yesno.c -o
/home/silvie/buildroot-2012.11/output/build/buildroot-config/lxdialog/yesno.o
/usr/bin/gcc -DCURSES_LOC="<ncurses.h>" -DLOCALE
-I/home/silvie/buildroot-2012.11/output/build/buildroot-config   -c
mconf.c -o /home/silvie/buildroot-2012.11/output/build/buildroot-config/mconf.o
/usr/bin/gcc -DCURSES_LOC="<ncurses.h>" -DLOCALE
-I/home/silvie/buildroot-2012.11/output/build/buildroot-config  -I. -c
/home/silvie/buildroot-2012.11/output/build/buildroot-config/zconf.tab.c
-o /home/silvie/buildroot-2012.11/output/build/buildroot-config/zconf.tab.o
/usr/bin/gcc -DCURSES_LOC="<ncurses.h>" -DLOCALE
-I/home/silvie/buildroot-2012.11/output/build/buildroot-config
/home/silvie/buildroot-2012.11/output/build/buildroot-config/mconf.o
/home/silvie/buildroot-2012.11/output/build/buildroot-config/zconf.tab.o
/home/silvie/buildroot-2012.11/output/build/buildroot-config/lxdialog/checklist.o
/home/silvie/buildroot-2012.11/output/build/buildroot-config/lxdialog/util.o
/home/silvie/buildroot-2012.11/output/build/buildroot-config/lxdialog/inputbox.o
/home/silvie/buildroot-2012.11/output/build/buildroot-config/lxdialog/textbox.o
/home/silvie/buildroot-2012.11/output/build/buildroot-config/lxdialog/yesno.o
/home/silvie/buildroot-2012.11/output/build/buildroot-config/lxdialog/menubox.o
-lncurses -o /home/silvie/buildroot-2012.11/output/build/buildroot-config/mconf
rm /home/silvie/buildroot-2012.11/output/build/buildroot-config/zconf.tab.c
make[1]: quittant le r?pertoire ?
/home/silvie/buildroot-2012.11/support/kconfig ?
#
# configuration written to /home/silvie/buildroot-2012.11/.config
#


*** End of the configuration.
*** Execute 'make' to start the build or try 'make help'.

silvie at silvie-VirtualBox:~/buildroot-2012.11$




> And then put somewhere online (do *NOT* send them by e-mail on the
> list, it will be too large) the buildroot-fails.env,
> buildroot-fails.log and buildroot-fails.uClibc.config files.
>

even compressed ? It is just 200ko.


> I have just built the default Buildroot configuration on two Ubuntu
> 12.04 machines, with zero problem.
>
> Thanks,
>
> Thomas
> --
> Thomas Petazzoni, Free Electrons
> Kernel, drivers, real-time and embedded Linux
> development, consulting, training and support.
> http://free-electrons.com

^ permalink raw reply

* [Buildroot] [PATCH 01/52] package/qemu: add license information
From: Peter Korsgaard @ 2012-12-12  9:00 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1355183112-10735-2-git-send-email-yann.morin.1998@free.fr>

>>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:

 Yann> QEMU is such a snakes-nest of licenses... :-/

Yeah :/

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply

* [Buildroot] [git commit] package/qemu: add license information
From: Peter Korsgaard @ 2012-12-12  8:59 UTC (permalink / raw)
  To: buildroot

commit: http://git.buildroot.net/buildroot/commit/?id=f944824c47ff9c423be2538702c686f279d88051
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

QEMU is such a snakes-nest of licenses... :-/

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Francois Perrad <fperrad@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 package/qemu/qemu.mk |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/package/qemu/qemu.mk b/package/qemu/qemu.mk
index d40d7c9..790d34f 100644
--- a/package/qemu/qemu.mk
+++ b/package/qemu/qemu.mk
@@ -7,6 +7,11 @@
 QEMU_VERSION = 1.2.0
 QEMU_SOURCE = qemu-$(QEMU_VERSION).tar.bz2
 QEMU_SITE = http://wiki.qemu.org/download
+QEMU_LICENSE = GPLv2 LGPLv2.1 MIT BSD-3c BSD-2c Others/BSD-1c
+QEMU_LICENSE_FILES = COPYING COPYING.LIB
+#??NOTE: there is no top-level license file for non-(L)GPL licenses;
+#       the non-(L)GPL license texts are specified in the affected
+#       individual source files.
 
 QEMU_DEPENDENCIES = host-pkgconf zlib libglib2
 

^ permalink raw reply related

* [Buildroot] [PATCH] boost: bump to version 1.52.0
From: Peter Korsgaard @ 2012-12-12  8:55 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1355298611-1770-2-git-send-email-victor.hiairrassary.ml@gmail.com>

>>>>> "victor" == victor hiairrassary ml <victor.hiairrassary.ml@gmail.com> writes:

 victor> Signed-off-by: Victor Hiairrassary <victor.hiairrassary.ml@gmail.com>
 victor> ---
 victor>  package/boost/Config.in | 4 ++++
 victor>  package/boost/boost.mk  | 4 ++--
 victor>  2 files changed, 6 insertions(+), 2 deletions(-)

 victor> diff --git a/package/boost/Config.in b/package/boost/Config.in
 victor> index 8798367..58e62a0 100644
 victor> --- a/package/boost/Config.in
 victor> +++ b/package/boost/Config.in
 victor> @@ -1,9 +1,13 @@
 victor>  comment "boost requires a toolchain with C++ support enabled"
 victor>  	depends on !BR2_INSTALL_LIBSTDCPP
 
 victor> +comment "boost requires a toolchain with large file support enabled"
 victor> +	depends on !BR2_LARGEFILE
 victor> +

I've merged this comment with the above and committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply

* [Buildroot] [git commit] boost: bump to version 1.52.0
From: Peter Korsgaard @ 2012-12-12  8:54 UTC (permalink / raw)
  To: buildroot

commit: http://git.buildroot.net/buildroot/commit/?id=3bb1188b66c654c5a1841e14c46fbde1cadfe285
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

[Peter: merge largefile comment with C++ one]
Signed-off-by: Victor Hiairrassary <victor.hiairrassary.ml@gmail.com>
Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Tested-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
 (x86_64 Sourcery toolchain)
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 package/boost/Config.in |    5 +++--
 package/boost/boost.mk  |    4 ++--
 2 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/package/boost/Config.in b/package/boost/Config.in
index 8798367..fb5360e 100644
--- a/package/boost/Config.in
+++ b/package/boost/Config.in
@@ -1,9 +1,10 @@
-comment "boost requires a toolchain with C++ support enabled"
-	depends on !BR2_INSTALL_LIBSTDCPP
+comment "boost requires a toolchain with C++ and large file support enabled"
+	depends on !BR2_INSTALL_LIBSTDCPP || !BR2_LARGEFILE
 
 config BR2_PACKAGE_BOOST
 	bool "boost"
 	depends on BR2_INSTALL_LIBSTDCPP
+	depends on BR2_LARGEFILE
 	select BR2_PACKAGE_BZIP2
 	select BR2_PACKAGE_ZLIB
 	help
diff --git a/package/boost/boost.mk b/package/boost/boost.mk
index 64856bc..005c7ca 100644
--- a/package/boost/boost.mk
+++ b/package/boost/boost.mk
@@ -4,7 +4,7 @@
 #
 #############################################################
 
-BOOST_VERSION = 1.49.0
+BOOST_VERSION = 1.52.0
 BOOST_FILE_VERSION = $(subst .,_,$(BOOST_VERSION))
 BOOST_SOURCE = boost_$(BOOST_FILE_VERSION).tar.bz2
 BOOST_SITE = http://downloads.sourceforge.net/project/boost/boost/$(BOOST_VERSION)
@@ -15,7 +15,7 @@ TARGET_CC_VERSION = $(shell $(TARGET_CC) -dumpversion)
 BOOST_DEPENDENCIES = bzip2 zlib
 
 BOOST_FLAGS =
-BOOST_WITHOUT_FLAGS = python
+BOOST_WITHOUT_FLAGS = python context
 
 BOOST_WITHOUT_FLAGS += $(if $(BR2_PACKAGE_BOOST_CHRONO),,chrono)
 BOOST_WITHOUT_FLAGS += $(if $(BR2_PACKAGE_BOOST_DATE_TIME),,date_time)

^ permalink raw reply related

* [Buildroot] [PATCH] boost: bump to version 1.52.0
From: victor.hiairrassary.ml at gmail.com @ 2012-12-12  7:50 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1355298611-1770-1-git-send-email-victor.hiairrassary.ml@gmail.com>


Signed-off-by: Victor Hiairrassary <victor.hiairrassary.ml@gmail.com>
---
 package/boost/Config.in | 4 ++++
 package/boost/boost.mk  | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/package/boost/Config.in b/package/boost/Config.in
index 8798367..58e62a0 100644
--- a/package/boost/Config.in
+++ b/package/boost/Config.in
@@ -1,9 +1,13 @@
 comment "boost requires a toolchain with C++ support enabled"
 	depends on !BR2_INSTALL_LIBSTDCPP
 
+comment "boost requires a toolchain with large file support enabled"
+	depends on !BR2_LARGEFILE
+
 config BR2_PACKAGE_BOOST
 	bool "boost"
 	depends on BR2_INSTALL_LIBSTDCPP
+	depends on BR2_LARGEFILE
 	select BR2_PACKAGE_BZIP2
 	select BR2_PACKAGE_ZLIB
 	help
diff --git a/package/boost/boost.mk b/package/boost/boost.mk
index 64856bc..005c7ca 100644
--- a/package/boost/boost.mk
+++ b/package/boost/boost.mk
@@ -4,7 +4,7 @@
 #
 #############################################################
 
-BOOST_VERSION = 1.49.0
+BOOST_VERSION = 1.52.0
 BOOST_FILE_VERSION = $(subst .,_,$(BOOST_VERSION))
 BOOST_SOURCE = boost_$(BOOST_FILE_VERSION).tar.bz2
 BOOST_SITE = http://downloads.sourceforge.net/project/boost/boost/$(BOOST_VERSION)
@@ -15,7 +15,7 @@ TARGET_CC_VERSION = $(shell $(TARGET_CC) -dumpversion)
 BOOST_DEPENDENCIES = bzip2 zlib
 
 BOOST_FLAGS =
-BOOST_WITHOUT_FLAGS = python
+BOOST_WITHOUT_FLAGS = python context
 
 BOOST_WITHOUT_FLAGS += $(if $(BR2_PACKAGE_BOOST_CHRONO),,chrono)
 BOOST_WITHOUT_FLAGS += $(if $(BR2_PACKAGE_BOOST_DATE_TIME),,date_time)
-- 
1.8.0.1

^ permalink raw reply related

* [Buildroot] [PATCH] boost: bump to version 1.52.0
From: victor.hiairrassary.ml at gmail.com @ 2012-12-12  7:50 UTC (permalink / raw)
  To: buildroot

I'm really happy to send my patch :)

Regards,
Victor Hiairrassary

^ permalink raw reply

* [Buildroot] [autobuild.buildroot.net] Build results for 2012-12-11
From: Thomas Petazzoni @ 2012-12-12  7:34 UTC (permalink / raw)
  To: buildroot


Hello,

On 2012-12-11, 169 random build tests have been done and
submitted on autobuild.buildroot.net.
 114 builds have been successful
 55 builds have failed

Below the results of the failed builds. Successful builds are omitted.

Build c21eb36015105f2c45cc7aeef39d7dbc91b41845
==============================================

Status         : NOK
Failure reason : libnl-3.2.16
Architecture   : mips
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 00:13:03
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/c21eb36015105f2c45cc7aeef39d7dbc91b41845/build-end.log
Complete log   : http://autobuild.buildroot.net/results/c21eb36015105f2c45cc7aeef39d7dbc91b41845/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/c21eb36015105f2c45cc7aeef39d7dbc91b41845/config
Defconfig      : http://autobuild.buildroot.net/results/c21eb36015105f2c45cc7aeef39d7dbc91b41845/defconfig

Build 36b76d3b254117f6bc57a27d3666745c54efd2d2
==============================================

Status         : NOK
Failure reason : webkit-1.2.7
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-11 00:16:10
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=422700feba3c56a5bb9534d222395c00c930df65
End of log     : http://autobuild.buildroot.net/results/36b76d3b254117f6bc57a27d3666745c54efd2d2/build-end.log
Complete log   : http://autobuild.buildroot.net/results/36b76d3b254117f6bc57a27d3666745c54efd2d2/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/36b76d3b254117f6bc57a27d3666745c54efd2d2/config
Defconfig      : http://autobuild.buildroot.net/results/36b76d3b254117f6bc57a27d3666745c54efd2d2/defconfig

Build 3dc273f19468ffb76b39d4b8edade5c84107bb6a
==============================================

Status         : NOK
Failure reason : libffi-3.0.11
Architecture   : xtensa
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 00:26:07
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/3dc273f19468ffb76b39d4b8edade5c84107bb6a/build-end.log
Complete log   : http://autobuild.buildroot.net/results/3dc273f19468ffb76b39d4b8edade5c84107bb6a/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/3dc273f19468ffb76b39d4b8edade5c84107bb6a/config
Defconfig      : http://autobuild.buildroot.net/results/3dc273f19468ffb76b39d4b8edade5c84107bb6a/defconfig

Build 1eb620bc419b50bfb91abf11ef6459deac435fdb
==============================================

Status         : NOK
Failure reason : webkit-1.2.7
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 01:13:23
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/1eb620bc419b50bfb91abf11ef6459deac435fdb/build-end.log
Complete log   : http://autobuild.buildroot.net/results/1eb620bc419b50bfb91abf11ef6459deac435fdb/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/1eb620bc419b50bfb91abf11ef6459deac435fdb/config
Defconfig      : http://autobuild.buildroot.net/results/1eb620bc419b50bfb91abf11ef6459deac435fdb/defconfig

Build 0bf1d8e4a46781675845df2983880901dce76e4c
==============================================

Status         : NOK
Failure reason : ltp-testsuite-20101031
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 02:36:53
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/0bf1d8e4a46781675845df2983880901dce76e4c/build-end.log
Complete log   : http://autobuild.buildroot.net/results/0bf1d8e4a46781675845df2983880901dce76e4c/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/0bf1d8e4a46781675845df2983880901dce76e4c/config
Defconfig      : http://autobuild.buildroot.net/results/0bf1d8e4a46781675845df2983880901dce76e4c/defconfig

Build 44b2148040b9bf56f8c95652a40f0d1ae7f5f557
==============================================

Status         : NOK
Failure reason : mplayer-1.1
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 02:54:08
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/44b2148040b9bf56f8c95652a40f0d1ae7f5f557/build-end.log
Complete log   : http://autobuild.buildroot.net/results/44b2148040b9bf56f8c95652a40f0d1ae7f5f557/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/44b2148040b9bf56f8c95652a40f0d1ae7f5f557/config
Defconfig      : http://autobuild.buildroot.net/results/44b2148040b9bf56f8c95652a40f0d1ae7f5f557/defconfig

Build d9474bf6dfa8ba7ac6cee647ffecc1a1019cc6db
==============================================

Status         : NOK
Failure reason : sqlite-3071401
Architecture   : xtensa
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 03:28:52
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/d9474bf6dfa8ba7ac6cee647ffecc1a1019cc6db/build-end.log
Complete log   : http://autobuild.buildroot.net/results/d9474bf6dfa8ba7ac6cee647ffecc1a1019cc6db/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/d9474bf6dfa8ba7ac6cee647ffecc1a1019cc6db/config
Defconfig      : http://autobuild.buildroot.net/results/d9474bf6dfa8ba7ac6cee647ffecc1a1019cc6db/defconfig

Build d345e01a8ec407174d5ce0bf2e805a81c8464bdf
==============================================

Status         : NOK
Failure reason : boost-1.49.0
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 03:33:27
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/d345e01a8ec407174d5ce0bf2e805a81c8464bdf/build-end.log
Complete log   : http://autobuild.buildroot.net/results/d345e01a8ec407174d5ce0bf2e805a81c8464bdf/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/d345e01a8ec407174d5ce0bf2e805a81c8464bdf/config
Defconfig      : http://autobuild.buildroot.net/results/d345e01a8ec407174d5ce0bf2e805a81c8464bdf/defconfig

Build 199df016b75200cf00b965f07d9a916136074b55
==============================================

Status         : NOK
Failure reason : make: *** [/home/test/test/output1/stamps/ct-ng-toolchain-built] Error 2
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 03:56:33
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/199df016b75200cf00b965f07d9a916136074b55/build-end.log
Complete log   : http://autobuild.buildroot.net/results/199df016b75200cf00b965f07d9a916136074b55/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/199df016b75200cf00b965f07d9a916136074b55/config
Defconfig      : http://autobuild.buildroot.net/results/199df016b75200cf00b965f07d9a916136074b55/defconfig

Build 70c9a5616a282c310bdf6d99bcb07ece1e9c0fc3
==============================================

Status         : NOK
Failure reason : make: *** [/home/test/test/output1/stamps/ct-ng-toolchain-built] Error 2
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 03:59:55
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/70c9a5616a282c310bdf6d99bcb07ece1e9c0fc3/build-end.log
Complete log   : http://autobuild.buildroot.net/results/70c9a5616a282c310bdf6d99bcb07ece1e9c0fc3/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/70c9a5616a282c310bdf6d99bcb07ece1e9c0fc3/config
Defconfig      : http://autobuild.buildroot.net/results/70c9a5616a282c310bdf6d99bcb07ece1e9c0fc3/defconfig

Build 524be1331781dd33eb01bbd5ad2fd6c06354d061
==============================================

Status         : NOK
Failure reason : inotify-tools-3.14
Architecture   : microblaze
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 04:03:06
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/524be1331781dd33eb01bbd5ad2fd6c06354d061/build-end.log
Complete log   : http://autobuild.buildroot.net/results/524be1331781dd33eb01bbd5ad2fd6c06354d061/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/524be1331781dd33eb01bbd5ad2fd6c06354d061/config
Defconfig      : http://autobuild.buildroot.net/results/524be1331781dd33eb01bbd5ad2fd6c06354d061/defconfig

Build 5e35aa6352967ae1231cb59ce8a7995244427b0f
==============================================

Status         : NOK
Failure reason : libnl-3.2.16
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 04:07:01
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/5e35aa6352967ae1231cb59ce8a7995244427b0f/build-end.log
Complete log   : http://autobuild.buildroot.net/results/5e35aa6352967ae1231cb59ce8a7995244427b0f/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/5e35aa6352967ae1231cb59ce8a7995244427b0f/config
Defconfig      : http://autobuild.buildroot.net/results/5e35aa6352967ae1231cb59ce8a7995244427b0f/defconfig

Build 9032c899541a05279d093ce0a7fd6f2a3953fa81
==============================================

Status         : NOK
Failure reason : libnl-3.2.16
Architecture   : mips
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 05:15:06
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/9032c899541a05279d093ce0a7fd6f2a3953fa81/build-end.log
Complete log   : http://autobuild.buildroot.net/results/9032c899541a05279d093ce0a7fd6f2a3953fa81/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/9032c899541a05279d093ce0a7fd6f2a3953fa81/config
Defconfig      : http://autobuild.buildroot.net/results/9032c899541a05279d093ce0a7fd6f2a3953fa81/defconfig

Build 6fa7bae18edffcfd70c47bff838d5ce3c6416954
==============================================

Status         : NOK
Failure reason : icu-4.8.1.1
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 05:20:10
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/6fa7bae18edffcfd70c47bff838d5ce3c6416954/build-end.log
Complete log   : http://autobuild.buildroot.net/results/6fa7bae18edffcfd70c47bff838d5ce3c6416954/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/6fa7bae18edffcfd70c47bff838d5ce3c6416954/config
Defconfig      : http://autobuild.buildroot.net/results/6fa7bae18edffcfd70c47bff838d5ce3c6416954/defconfig

Build 2bb2a6ca5889c5bfbfc1ca198948f8d1b6a8e3da
==============================================

Status         : NOK
Failure reason : make: *** [/home/test/test/output2/stamps/ct-ng-toolchain-built] Error 2
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 05:23:47
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/2bb2a6ca5889c5bfbfc1ca198948f8d1b6a8e3da/build-end.log
Complete log   : http://autobuild.buildroot.net/results/2bb2a6ca5889c5bfbfc1ca198948f8d1b6a8e3da/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/2bb2a6ca5889c5bfbfc1ca198948f8d1b6a8e3da/config
Defconfig      : http://autobuild.buildroot.net/results/2bb2a6ca5889c5bfbfc1ca198948f8d1b6a8e3da/defconfig

Build e423c2fe930b91b01e2a3705aa636c5800564a1d
==============================================

Status         : NOK
Failure reason : tcllib-1.13
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-12-11 05:39:46
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/e423c2fe930b91b01e2a3705aa636c5800564a1d/build-end.log
Complete log   : http://autobuild.buildroot.net/results/e423c2fe930b91b01e2a3705aa636c5800564a1d/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/e423c2fe930b91b01e2a3705aa636c5800564a1d/config
Defconfig      : http://autobuild.buildroot.net/results/e423c2fe930b91b01e2a3705aa636c5800564a1d/defconfig

Build f36a49ae26476d3c7c2e1a703664e5e424fa116a
==============================================

Status         : NOK
Failure reason : make: *** [/home/test/test/output2/stamps/ct-ng-toolchain-built] Error 2
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 06:27:57
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/f36a49ae26476d3c7c2e1a703664e5e424fa116a/build-end.log
Complete log   : http://autobuild.buildroot.net/results/f36a49ae26476d3c7c2e1a703664e5e424fa116a/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/f36a49ae26476d3c7c2e1a703664e5e424fa116a/config
Defconfig      : http://autobuild.buildroot.net/results/f36a49ae26476d3c7c2e1a703664e5e424fa116a/defconfig

Build bfd6cc99c9fff2537f3620117e357ee3edf0db3b
==============================================

Status         : NOK
Failure reason : sdl-1.2.15
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-11 08:11:18
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/bfd6cc99c9fff2537f3620117e357ee3edf0db3b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/bfd6cc99c9fff2537f3620117e357ee3edf0db3b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/bfd6cc99c9fff2537f3620117e357ee3edf0db3b/config
Defconfig      : http://autobuild.buildroot.net/results/bfd6cc99c9fff2537f3620117e357ee3edf0db3b/defconfig

Build 357faa00ceb6075f1de1e9541f0e5de81548c341
==============================================

Status         : NOK
Failure reason : xstroke-0.6
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 09:03:21
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/357faa00ceb6075f1de1e9541f0e5de81548c341/build-end.log
Complete log   : http://autobuild.buildroot.net/results/357faa00ceb6075f1de1e9541f0e5de81548c341/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/357faa00ceb6075f1de1e9541f0e5de81548c341/config
Defconfig      : http://autobuild.buildroot.net/results/357faa00ceb6075f1de1e9541f0e5de81548c341/defconfig

Build a63cc1b19a5b995e78e8abb63d92a928fac4a2fe
==============================================

Status         : NOK
Failure reason : webkit-1.2.7
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 09:07:50
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/a63cc1b19a5b995e78e8abb63d92a928fac4a2fe/build-end.log
Complete log   : http://autobuild.buildroot.net/results/a63cc1b19a5b995e78e8abb63d92a928fac4a2fe/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/a63cc1b19a5b995e78e8abb63d92a928fac4a2fe/config
Defconfig      : http://autobuild.buildroot.net/results/a63cc1b19a5b995e78e8abb63d92a928fac4a2fe/defconfig

Build 1d90cab5403b111db3f58e32f83224c6e2883a45
==============================================

Status         : NOK
Failure reason : libglib2-2.30.3
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 09:33:24
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/1d90cab5403b111db3f58e32f83224c6e2883a45/build-end.log
Complete log   : http://autobuild.buildroot.net/results/1d90cab5403b111db3f58e32f83224c6e2883a45/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/1d90cab5403b111db3f58e32f83224c6e2883a45/config
Defconfig      : http://autobuild.buildroot.net/results/1d90cab5403b111db3f58e32f83224c6e2883a45/defconfig

Build fadcf3c4d52ba6c45ff85f6a7cc8e732106eb570
==============================================

Status         : NOK
Failure reason : squid-3.2.4
Architecture   : mips
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 09:46:44
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/fadcf3c4d52ba6c45ff85f6a7cc8e732106eb570/build-end.log
Complete log   : http://autobuild.buildroot.net/results/fadcf3c4d52ba6c45ff85f6a7cc8e732106eb570/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/fadcf3c4d52ba6c45ff85f6a7cc8e732106eb570/config
Defconfig      : http://autobuild.buildroot.net/results/fadcf3c4d52ba6c45ff85f6a7cc8e732106eb570/defconfig

Build 5175cad52b9741608db4304107590ee067bd090a
==============================================

Status         : NOK
Failure reason : make: *** [/home/test/test/output2/stamps/ct-ng-toolchain-built] Error 2
Architecture   : mipsel
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 09:50:04
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/5175cad52b9741608db4304107590ee067bd090a/build-end.log
Complete log   : http://autobuild.buildroot.net/results/5175cad52b9741608db4304107590ee067bd090a/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/5175cad52b9741608db4304107590ee067bd090a/config
Defconfig      : http://autobuild.buildroot.net/results/5175cad52b9741608db4304107590ee067bd090a/defconfig

Build ace152943f014ab97ea3fc8efdb9e922f4543288
==============================================

Status         : NOK
Failure reason : make: *** [/home/test/test/output2/stamps/ct-ng-toolchain-built] Error 2
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 09:53:10
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/ace152943f014ab97ea3fc8efdb9e922f4543288/build-end.log
Complete log   : http://autobuild.buildroot.net/results/ace152943f014ab97ea3fc8efdb9e922f4543288/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/ace152943f014ab97ea3fc8efdb9e922f4543288/config
Defconfig      : http://autobuild.buildroot.net/results/ace152943f014ab97ea3fc8efdb9e922f4543288/defconfig

Build 25c2a4b8cc6e8a6c72ed3e0e36263b2d67f9344e
==============================================

Status         : NOK
Failure reason : make: *** [/home/test/test/output2/stamps/ct-ng-toolchain-built] Error 2
Architecture   : mipsel
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 10:02:09
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/25c2a4b8cc6e8a6c72ed3e0e36263b2d67f9344e/build-end.log
Complete log   : http://autobuild.buildroot.net/results/25c2a4b8cc6e8a6c72ed3e0e36263b2d67f9344e/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/25c2a4b8cc6e8a6c72ed3e0e36263b2d67f9344e/config
Defconfig      : http://autobuild.buildroot.net/results/25c2a4b8cc6e8a6c72ed3e0e36263b2d67f9344e/defconfig

Build e76004137eef58147b94eff0ddf26063ef8917a2
==============================================

Status         : NOK
Failure reason : pulseaudio-2.1
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 10:05:45
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/e76004137eef58147b94eff0ddf26063ef8917a2/build-end.log
Complete log   : http://autobuild.buildroot.net/results/e76004137eef58147b94eff0ddf26063ef8917a2/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/e76004137eef58147b94eff0ddf26063ef8917a2/config
Defconfig      : http://autobuild.buildroot.net/results/e76004137eef58147b94eff0ddf26063ef8917a2/defconfig

Build 77398b3752e967abb4362120c8f1364634f27028
==============================================

Status         : NOK
Failure reason : libffi-3.0.11
Architecture   : microblaze
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 10:14:04
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/77398b3752e967abb4362120c8f1364634f27028/build-end.log
Complete log   : http://autobuild.buildroot.net/results/77398b3752e967abb4362120c8f1364634f27028/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/77398b3752e967abb4362120c8f1364634f27028/config
Defconfig      : http://autobuild.buildroot.net/results/77398b3752e967abb4362120c8f1364634f27028/defconfig

Build 4bca259caf7324631d7e73087462b5116c661fda
==============================================

Status         : NOK
Failure reason : alsa-lib-1.0.26
Architecture   : sh2a
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 10:27:26
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/4bca259caf7324631d7e73087462b5116c661fda/build-end.log
Complete log   : http://autobuild.buildroot.net/results/4bca259caf7324631d7e73087462b5116c661fda/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/4bca259caf7324631d7e73087462b5116c661fda/config
Defconfig      : http://autobuild.buildroot.net/results/4bca259caf7324631d7e73087462b5116c661fda/defconfig

Build 0fd981dbb8ffc446916baa8b6847394f62e86b1f
==============================================

Status         : NOK
Failure reason : make: *** [/home/test/test/output2/stamps/ct-ng-toolchain-built] Error 2
Architecture   : mipsel
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 10:56:19
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/0fd981dbb8ffc446916baa8b6847394f62e86b1f/build-end.log
Complete log   : http://autobuild.buildroot.net/results/0fd981dbb8ffc446916baa8b6847394f62e86b1f/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/0fd981dbb8ffc446916baa8b6847394f62e86b1f/config
Defconfig      : http://autobuild.buildroot.net/results/0fd981dbb8ffc446916baa8b6847394f62e86b1f/defconfig

Build 73d049588fef56aee78b0cff5779b0fdc96bfc94
==============================================

Status         : NOK
Failure reason : make: *** [/home/test/test/output2/stamps/ct-ng-toolchain-built] Error 2
Architecture   : mipsel
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 10:59:56
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/73d049588fef56aee78b0cff5779b0fdc96bfc94/build-end.log
Complete log   : http://autobuild.buildroot.net/results/73d049588fef56aee78b0cff5779b0fdc96bfc94/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/73d049588fef56aee78b0cff5779b0fdc96bfc94/config
Defconfig      : http://autobuild.buildroot.net/results/73d049588fef56aee78b0cff5779b0fdc96bfc94/defconfig

Build 00036792b22eb20a983ea9223f0679f2c21491bc
==============================================

Status         : NOK
Failure reason : ffmpeg-0.8.12
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 11:22:02
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/00036792b22eb20a983ea9223f0679f2c21491bc/build-end.log
Complete log   : http://autobuild.buildroot.net/results/00036792b22eb20a983ea9223f0679f2c21491bc/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/00036792b22eb20a983ea9223f0679f2c21491bc/config
Defconfig      : http://autobuild.buildroot.net/results/00036792b22eb20a983ea9223f0679f2c21491bc/defconfig

Build 711c3840053da8d221713a4b467b1888c6f97973
==============================================

Status         : NOK
Failure reason : libnl-3.2.16
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 11:26:58
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/711c3840053da8d221713a4b467b1888c6f97973/build-end.log
Complete log   : http://autobuild.buildroot.net/results/711c3840053da8d221713a4b467b1888c6f97973/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/711c3840053da8d221713a4b467b1888c6f97973/config
Defconfig      : http://autobuild.buildroot.net/results/711c3840053da8d221713a4b467b1888c6f97973/defconfig

Build 018e9ec1adeede300355653971135f1899a55185
==============================================

Status         : NOK
Failure reason : lmbench-3.0-a9
Architecture   : xtensa
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 11:36:23
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/018e9ec1adeede300355653971135f1899a55185/build-end.log
Complete log   : http://autobuild.buildroot.net/results/018e9ec1adeede300355653971135f1899a55185/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/018e9ec1adeede300355653971135f1899a55185/config
Defconfig      : http://autobuild.buildroot.net/results/018e9ec1adeede300355653971135f1899a55185/defconfig

Build 40686b804dbe19e51fcc82d865a26b2644cccf1c
==============================================

Status         : NOK
Failure reason : kmod-11
Architecture   : xtensa
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 13:07:22
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/40686b804dbe19e51fcc82d865a26b2644cccf1c/build-end.log
Complete log   : http://autobuild.buildroot.net/results/40686b804dbe19e51fcc82d865a26b2644cccf1c/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/40686b804dbe19e51fcc82d865a26b2644cccf1c/config
Defconfig      : http://autobuild.buildroot.net/results/40686b804dbe19e51fcc82d865a26b2644cccf1c/defconfig

Build d860cda3adc6a13c7956613f0b315e98a9406671
==============================================

Status         : NOK
Failure reason : util-linux-2.20.1
Architecture   : xtensa
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 13:42:10
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/d860cda3adc6a13c7956613f0b315e98a9406671/build-end.log
Complete log   : http://autobuild.buildroot.net/results/d860cda3adc6a13c7956613f0b315e98a9406671/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/d860cda3adc6a13c7956613f0b315e98a9406671/config
Defconfig      : http://autobuild.buildroot.net/results/d860cda3adc6a13c7956613f0b315e98a9406671/defconfig

Build d77db48fe98236b062bd50816c093333c7f28328
==============================================

Status         : NOK
Failure reason : sconeserver-180
Architecture   : sh4a
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 13:52:52
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/d77db48fe98236b062bd50816c093333c7f28328/build-end.log
Complete log   : http://autobuild.buildroot.net/results/d77db48fe98236b062bd50816c093333c7f28328/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/d77db48fe98236b062bd50816c093333c7f28328/config
Defconfig      : http://autobuild.buildroot.net/results/d77db48fe98236b062bd50816c093333c7f28328/defconfig

Build 9252b4128635c3007a3b0e6fb719351164be3ca8
==============================================

Status         : NOK
Failure reason : xserver_xorg-server-1.9.4
Architecture   : xtensa
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 14:09:40
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/9252b4128635c3007a3b0e6fb719351164be3ca8/build-end.log
Complete log   : http://autobuild.buildroot.net/results/9252b4128635c3007a3b0e6fb719351164be3ca8/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/9252b4128635c3007a3b0e6fb719351164be3ca8/config
Defconfig      : http://autobuild.buildroot.net/results/9252b4128635c3007a3b0e6fb719351164be3ca8/defconfig

Build 310d51b23849103f7659f52821753d3b00cfc4b6
==============================================

Status         : NOK
Failure reason : rt-tests-0.83
Architecture   : mipsel
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 14:35:37
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/310d51b23849103f7659f52821753d3b00cfc4b6/build-end.log
Complete log   : http://autobuild.buildroot.net/results/310d51b23849103f7659f52821753d3b00cfc4b6/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/310d51b23849103f7659f52821753d3b00cfc4b6/config
Defconfig      : http://autobuild.buildroot.net/results/310d51b23849103f7659f52821753d3b00cfc4b6/defconfig

Build 33a89aad8e2df9e4ba7aa00e16e5b6ee6ad62020
==============================================

Status         : NOK
Failure reason : make: *** [/home/test/test/output1/stamps/ct-ng-toolchain-built] Error 2
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 14:39:20
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/33a89aad8e2df9e4ba7aa00e16e5b6ee6ad62020/build-end.log
Complete log   : http://autobuild.buildroot.net/results/33a89aad8e2df9e4ba7aa00e16e5b6ee6ad62020/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/33a89aad8e2df9e4ba7aa00e16e5b6ee6ad62020/config
Defconfig      : http://autobuild.buildroot.net/results/33a89aad8e2df9e4ba7aa00e16e5b6ee6ad62020/defconfig

Build ea91186756bc164b1be8d8aa8c08d90b91d173c4
==============================================

Status         : NOK
Failure reason : libcap-ng-0.6.6
Architecture   : avr32
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 15:06:15
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/ea91186756bc164b1be8d8aa8c08d90b91d173c4/build-end.log
Complete log   : http://autobuild.buildroot.net/results/ea91186756bc164b1be8d8aa8c08d90b91d173c4/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/ea91186756bc164b1be8d8aa8c08d90b91d173c4/config
Defconfig      : http://autobuild.buildroot.net/results/ea91186756bc164b1be8d8aa8c08d90b91d173c4/defconfig

Build 2b27ad8f8c1b32110e7422a753bb1c8a34b5fb8d
==============================================

Status         : NOK
Failure reason : opkg-635
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 16:17:20
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/2b27ad8f8c1b32110e7422a753bb1c8a34b5fb8d/build-end.log
Complete log   : http://autobuild.buildroot.net/results/2b27ad8f8c1b32110e7422a753bb1c8a34b5fb8d/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/2b27ad8f8c1b32110e7422a753bb1c8a34b5fb8d/config
Defconfig      : http://autobuild.buildroot.net/results/2b27ad8f8c1b32110e7422a753bb1c8a34b5fb8d/defconfig

Build 3989a0c8c356bf5c719922a93971aab72864a11d
==============================================

Status         : NOK
Failure reason : webkit-1.2.7
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-11 17:01:30
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/3989a0c8c356bf5c719922a93971aab72864a11d/build-end.log
Complete log   : http://autobuild.buildroot.net/results/3989a0c8c356bf5c719922a93971aab72864a11d/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/3989a0c8c356bf5c719922a93971aab72864a11d/config
Defconfig      : http://autobuild.buildroot.net/results/3989a0c8c356bf5c719922a93971aab72864a11d/defconfig

Build d85569f39bdf6e201d14bee002612fc6d498f3ee
==============================================

Status         : NOK
Failure reason : make: *** [/home/test/test/output2/stamps/ct-ng-toolchain-built] Error 2
Architecture   : mipsel
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 17:35:16
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/d85569f39bdf6e201d14bee002612fc6d498f3ee/build-end.log
Complete log   : http://autobuild.buildroot.net/results/d85569f39bdf6e201d14bee002612fc6d498f3ee/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/d85569f39bdf6e201d14bee002612fc6d498f3ee/config
Defconfig      : http://autobuild.buildroot.net/results/d85569f39bdf6e201d14bee002612fc6d498f3ee/defconfig

Build 7722a16700231a49b736fae697532013dfccfd2a
==============================================

Status         : NOK
Failure reason : host-python-2.7.3
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 17:37:05
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/7722a16700231a49b736fae697532013dfccfd2a/build-end.log
Complete log   : http://autobuild.buildroot.net/results/7722a16700231a49b736fae697532013dfccfd2a/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/7722a16700231a49b736fae697532013dfccfd2a/config
Defconfig      : http://autobuild.buildroot.net/results/7722a16700231a49b736fae697532013dfccfd2a/defconfig

Build c879688028b20b04dfa0796d545e18c81138a7a1
==============================================

Status         : NOK
Failure reason : alsa-lib-1.0.26
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 17:37:43
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/c879688028b20b04dfa0796d545e18c81138a7a1/build-end.log
Complete log   : http://autobuild.buildroot.net/results/c879688028b20b04dfa0796d545e18c81138a7a1/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/c879688028b20b04dfa0796d545e18c81138a7a1/config
Defconfig      : http://autobuild.buildroot.net/results/c879688028b20b04dfa0796d545e18c81138a7a1/defconfig

Build 995a23b8f5ff43f79016b3f12f508f138208298c
==============================================

Status         : NOK
Failure reason : valgrind-3.7.0
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 18:25:10
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/995a23b8f5ff43f79016b3f12f508f138208298c/build-end.log
Complete log   : http://autobuild.buildroot.net/results/995a23b8f5ff43f79016b3f12f508f138208298c/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/995a23b8f5ff43f79016b3f12f508f138208298c/config
Defconfig      : http://autobuild.buildroot.net/results/995a23b8f5ff43f79016b3f12f508f138208298c/defconfig

Build 70c9b367cb96501e285b57090ac6669085f1e41a
==============================================

Status         : NOK
Failure reason : webkit-1.2.7
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-11 20:24:04
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/70c9b367cb96501e285b57090ac6669085f1e41a/build-end.log
Complete log   : http://autobuild.buildroot.net/results/70c9b367cb96501e285b57090ac6669085f1e41a/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/70c9b367cb96501e285b57090ac6669085f1e41a/config
Defconfig      : http://autobuild.buildroot.net/results/70c9b367cb96501e285b57090ac6669085f1e41a/defconfig

Build a5ac00bb2a830a0555322ab050a6e37aa663e2fc
==============================================

Status         : NOK
Failure reason : libffi-3.0.11
Architecture   : xtensa
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 21:53:01
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/a5ac00bb2a830a0555322ab050a6e37aa663e2fc/build-end.log
Complete log   : http://autobuild.buildroot.net/results/a5ac00bb2a830a0555322ab050a6e37aa663e2fc/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/a5ac00bb2a830a0555322ab050a6e37aa663e2fc/config
Defconfig      : http://autobuild.buildroot.net/results/a5ac00bb2a830a0555322ab050a6e37aa663e2fc/defconfig

Build 90f5311827ad8e768312e4091e7f84f1905c7b6f
==============================================

Status         : NOK
Failure reason : webkit-1.2.7
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-11 22:06:35
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/90f5311827ad8e768312e4091e7f84f1905c7b6f/build-end.log
Complete log   : http://autobuild.buildroot.net/results/90f5311827ad8e768312e4091e7f84f1905c7b6f/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/90f5311827ad8e768312e4091e7f84f1905c7b6f/config
Defconfig      : http://autobuild.buildroot.net/results/90f5311827ad8e768312e4091e7f84f1905c7b6f/defconfig

Build 3046baf2b524b913be72c415bd33347ce6d3d33f
==============================================

Status         : NOK
Failure reason : sqlite-3071401
Architecture   : xtensa
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 22:08:46
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/3046baf2b524b913be72c415bd33347ce6d3d33f/build-end.log
Complete log   : http://autobuild.buildroot.net/results/3046baf2b524b913be72c415bd33347ce6d3d33f/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/3046baf2b524b913be72c415bd33347ce6d3d33f/config
Defconfig      : http://autobuild.buildroot.net/results/3046baf2b524b913be72c415bd33347ce6d3d33f/defconfig

Build 3b120bba357e8f85f762a729a7de522fc7162155
==============================================

Status         : NOK
Failure reason : ltp-testsuite-20101031
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 22:09:31
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/3b120bba357e8f85f762a729a7de522fc7162155/build-end.log
Complete log   : http://autobuild.buildroot.net/results/3b120bba357e8f85f762a729a7de522fc7162155/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/3b120bba357e8f85f762a729a7de522fc7162155/config
Defconfig      : http://autobuild.buildroot.net/results/3b120bba357e8f85f762a729a7de522fc7162155/defconfig

Build fbde26d1dc0a25a3e06dfd13b1b9b7e912e89149
==============================================

Status         : NOK
Failure reason : make: *** [/home/test/test/output2/stamps/ct-ng-toolchain-built] Error 2
Architecture   : mipsel
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 22:45:49
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/fbde26d1dc0a25a3e06dfd13b1b9b7e912e89149/build-end.log
Complete log   : http://autobuild.buildroot.net/results/fbde26d1dc0a25a3e06dfd13b1b9b7e912e89149/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/fbde26d1dc0a25a3e06dfd13b1b9b7e912e89149/config
Defconfig      : http://autobuild.buildroot.net/results/fbde26d1dc0a25a3e06dfd13b1b9b7e912e89149/defconfig

Build 4a8a6deddbf36a0de454198cbb520b6b64bea6ad
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 23:29:46
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/4a8a6deddbf36a0de454198cbb520b6b64bea6ad/build-end.log
Complete log   : http://autobuild.buildroot.net/results/4a8a6deddbf36a0de454198cbb520b6b64bea6ad/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/4a8a6deddbf36a0de454198cbb520b6b64bea6ad/config
Defconfig      : http://autobuild.buildroot.net/results/4a8a6deddbf36a0de454198cbb520b6b64bea6ad/defconfig

Build b696e073191c1f97eaa59ad92860ef65af2cac39
==============================================

Status         : NOK
Failure reason : make: *** [/home/test/test/output2/stamps/ct-ng-toolchain-built] Error 2
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 23:29:55
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/b696e073191c1f97eaa59ad92860ef65af2cac39/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b696e073191c1f97eaa59ad92860ef65af2cac39/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b696e073191c1f97eaa59ad92860ef65af2cac39/config
Defconfig      : http://autobuild.buildroot.net/results/b696e073191c1f97eaa59ad92860ef65af2cac39/defconfig

Build 0909856aea5ea5d13206c9a46b8b5174661239b4
==============================================

Status         : NOK
Failure reason : boa-0.94.14rc21
Architecture   : sh2a
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-11 23:30:13
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
End of log     : http://autobuild.buildroot.net/results/0909856aea5ea5d13206c9a46b8b5174661239b4/build-end.log
Complete log   : http://autobuild.buildroot.net/results/0909856aea5ea5d13206c9a46b8b5174661239b4/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/0909856aea5ea5d13206c9a46b8b5174661239b4/config
Defconfig      : http://autobuild.buildroot.net/results/0909856aea5ea5d13206c9a46b8b5174661239b4/defconfig



-- 
http://autobuild.buildroot.net

^ permalink raw reply

* [Buildroot] buildroot 2012.11 large file support
From: Peter Korsgaard @ 2012-12-12  6:05 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <NDBBKLDECLOIHFJKBINAIEFOFPAA.Berns@BEKA-Elektronik.de>

>>>>> "Berns" == Berns  <Berns@BEKA-Elektronik.de> writes:

 Berns> I changed from gcc 4.6.X to gcc 4.5.X and now it works.
 Berns> Maybe it's an isue with ubuntu 12.04 and gcc 4.6.X.

Ok, interesting. I don't find anything specific about any largefile
changes in 12.04, but will try to find time to install it in a vm to
have a look.

Could you perhaps put the entire (compressed) failing build log online
somewhere so I can have a look?

E.G.:

make >log.txt 2>&1
bzip2 log.txt

-- 
Bye, Peter Korsgaard

^ permalink raw reply

* [Buildroot] [PATCH] barebox: add 2012.12, remove 2012.08
From: Peter Korsgaard @ 2012-12-12  5:59 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <20121211212853.GB11142@game.jcrosoft.org>

>>>>> "J>" == Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> writes:

 J>> do not use this release the net support is broken we will push a
 J>> new release at the end of the week

Ok, thanks. I'll leave it as it is for now and update once 2012.12.1 is
out.

-- 
Bye, Peter Korsgaard

^ permalink raw reply

* [Buildroot] [PATCH] boost: bump to version 1.52.0
From: Peter Korsgaard @ 2012-12-12  5:58 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <50C7C677.5060105@mind.be>

>>>>> "Arnout" == Arnout Vandecappelle <arnout@mind.be> writes:

 Arnout> On 06/11/12 18:53, Victor Hiairrassary wrote:
 >> From: mecanix<victor.hiairrassary.ml@gmail.com>

 Arnout> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
 Arnout> Tested-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
 Arnout>  (x86_64 Sourcery toolchain)

 Arnout>  It also fixes a build failure for me.

 Arnout>  Add a Signed-off-by line for yourself.  This is a short way for you to
 Arnout> assert that you are entitled to contribute the patch under buildroot's
 Arnout> GPL license.  See  http://elinux.org/Developer_Certificate_Of_Origin
 Arnout> for more details.

Yes, please resend with your Signed-off-by: and I'll commit - Thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox