* [Buildroot] [PATCH 2/2] luajit: allow to build Lua extensions without lua
From: Francois Perrad @ 2012-12-15 9:33 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1355564002-14490-1-git-send-email-francois.perrad@gadz.org>
Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
---
package/Makefile.in | 6 ++++++
package/lua-msgpack-native/lua-msgpack-native.mk | 2 +-
package/luacjson/luacjson.mk | 2 +-
package/luaexpat/luaexpat.mk | 2 +-
package/luafilesystem/luafilesystem.mk | 2 +-
package/luajit/luajit.mk | 11 ++++++++++-
package/luasocket/luasocket.mk | 2 +-
package/rings/rings.mk | 2 +-
8 files changed, 22 insertions(+), 7 deletions(-)
diff --git a/package/Makefile.in b/package/Makefile.in
index 8dea51e..c19887b 100644
--- a/package/Makefile.in
+++ b/package/Makefile.in
@@ -307,6 +307,12 @@ else
SHARED_STATIC_LIBS_OPTS=--enable-static --enable-shared
endif
+ifeq ($(BR2_PACKAGE_LUA),y)
+LUA_INTERPRETER = lua
+else ifeq ($(BR2_PACKAGE_LUAJIT),y)
+LUA_INTERPRETER = luajit
+endif
+
include package/pkg-utils.mk
include package/pkg-download.mk
include package/pkg-autotools.mk
diff --git a/package/lua-msgpack-native/lua-msgpack-native.mk b/package/lua-msgpack-native/lua-msgpack-native.mk
index 97ce83c..5387f53 100644
--- a/package/lua-msgpack-native/lua-msgpack-native.mk
+++ b/package/lua-msgpack-native/lua-msgpack-native.mk
@@ -5,7 +5,7 @@
#############################################################
LUA_MSGPACK_NATIVE_VERSION = g41cce91
LUA_MSGPACK_NATIVE_SITE = http://github.com/kengonakajima/lua-msgpack-native/tarball/master
-LUA_MSGPACK_NATIVE_DEPENDENCIES = lua
+LUA_MSGPACK_NATIVE_DEPENDENCIES = $(LUA_INTERPRETER)
LUA_MSGPACK_NATIVE_LICENSE = Apache-2.0
LUA_MSGPACK_NATIVE_LICENSE_FILES = LICENSE.txt
diff --git a/package/luacjson/luacjson.mk b/package/luacjson/luacjson.mk
index 1f79d5d..de79e9f 100644
--- a/package/luacjson/luacjson.mk
+++ b/package/luacjson/luacjson.mk
@@ -6,7 +6,7 @@
LUACJSON_VERSION = 2.1.0
LUACJSON_SOURCE = lua-cjson-$(LUACJSON_VERSION).tar.gz
LUACJSON_SITE = http://www.kyne.com.au/~mark/software/download
-LUACJSON_DEPENDENCIES = lua
+LUACJSON_DEPENDENCIES = $(LUA_INTERPRETER)
LUACJSON_LICENSE = MIT
LUACJSON_LICENSE_FILES = LICENSE
diff --git a/package/luaexpat/luaexpat.mk b/package/luaexpat/luaexpat.mk
index 2d4c517..435eb8e 100644
--- a/package/luaexpat/luaexpat.mk
+++ b/package/luaexpat/luaexpat.mk
@@ -6,7 +6,7 @@
LUAEXPAT_VERSION = 1.2.0
LUAEXPAT_SITE = http://matthewwild.co.uk/projects/luaexpat
-LUAEXPAT_DEPENDENCIES = lua expat
+LUAEXPAT_DEPENDENCIES = $(LUA_INTERPRETER) expat
LUAEXPAT_LICENSE = MIT
diff --git a/package/luafilesystem/luafilesystem.mk b/package/luafilesystem/luafilesystem.mk
index 8553212..5e964af 100644
--- a/package/luafilesystem/luafilesystem.mk
+++ b/package/luafilesystem/luafilesystem.mk
@@ -6,7 +6,7 @@
LUAFILESYSTEM_VERSION = 1.5.0
LUAFILESYSTEM_SITE = http://github.com/downloads/keplerproject/luafilesystem
-LUAFILESYSTEM_DEPENDENCIES = lua
+LUAFILESYSTEM_DEPENDENCIES = $(LUA_INTERPRETER)
LUAFILESYSTEM_LICENSE = MIT
ifeq ($(BR2_LARGEFILE),y)
diff --git a/package/luajit/luajit.mk b/package/luajit/luajit.mk
index 844122e..d7e5d4d 100644
--- a/package/luajit/luajit.mk
+++ b/package/luajit/luajit.mk
@@ -4,7 +4,10 @@
#
#############################################################
-LUAJIT_VERSION = 2.0.0
+LUAJIT_MAJVER= 2
+LUAJIT_MINVER= 0
+LUAJIT_RELVER= 0
+LUAJIT_VERSION = $(LUAJIT_MAJVER).$(LUAJIT_MINVER).$(LUAJIT_RELVER)
LUAJIT_SOURCE = LuaJIT-$(LUAJIT_VERSION).tar.gz
LUAJIT_SITE = http://luajit.org/download
LUAJIT_LICENSE = MIT
@@ -47,8 +50,14 @@ define LUAJIT_BUILD_CMDS
-C $(@D) amalg
endef
+LUAJIT_FILES_INC= lua.h lualib.h lauxlib.h luaconf.h lua.hpp
+
define LUAJIT_INSTALL_STAGING_CMDS
$(MAKE) PREFIX="/usr" DESTDIR="$(STAGING_DIR)" -C $(@D) install
+ for i in $(LUAJIT_FILES_INC); do \
+ ln -sf $(STAGING_DIR)/usr/include/luajit-$(LUAJIT_MAJVER).$(LUAJIT_MINVER)/$$i \
+ $(STAGING_DIR)/usr/include/$$i; \
+ done
endef
define LUAJIT_INSTALL_TARGET_CMDS
diff --git a/package/luasocket/luasocket.mk b/package/luasocket/luasocket.mk
index 45fb9a3..3126ea3 100644
--- a/package/luasocket/luasocket.mk
+++ b/package/luasocket/luasocket.mk
@@ -6,7 +6,7 @@
LUASOCKET_VERSION = 2.0.2
LUASOCKET_SITE = http://luaforge.net/frs/download.php/2664
-LUASOCKET_DEPENDENCIES = lua
+LUASOCKET_DEPENDENCIES = $(LUA_INTERPRETER)
LUASOCKET_LICENSE = MIT
LUASOCKET_LICENSE_FILES = LICENSE
diff --git a/package/rings/rings.mk b/package/rings/rings.mk
index e2a2bd7..791cf5e 100644
--- a/package/rings/rings.mk
+++ b/package/rings/rings.mk
@@ -6,7 +6,7 @@
RINGS_VERSION = 1.2.3
RINGS_SITE = http://github.com/downloads/keplerproject/rings
-RINGS_DEPENDENCIES = lua
+RINGS_DEPENDENCIES = $(LUA_INTERPRETER)
RINGS_LICENSE = MIT
define RINGS_BUILD_CMDS
--
1.7.9.5
^ permalink raw reply related
* [Buildroot] [PATCH 1/2] lua: remove built dependencies
From: Francois Perrad @ 2012-12-15 9:33 UTC (permalink / raw)
To: buildroot
runtime dependencies are handled in Config.in
Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
---
package/cgilua/cgilua.mk | 1 -
package/copas/copas.mk | 1 -
package/coxpcall/coxpcall.mk | 1 -
package/wsapi/wsapi.mk | 1 -
package/xavante/xavante.mk | 1 -
5 files changed, 5 deletions(-)
diff --git a/package/cgilua/cgilua.mk b/package/cgilua/cgilua.mk
index 48ee005..184d836 100644
--- a/package/cgilua/cgilua.mk
+++ b/package/cgilua/cgilua.mk
@@ -6,7 +6,6 @@
CGILUA_VERSION = 5.1.4
CGILUA_SITE = http://github.com/downloads/keplerproject/cgilua
-CGILUA_DEPENDENCIES = luafilesystem
CGILUA_LICENSE = MIT
define CGILUA_INSTALL_TARGET_CMDS
diff --git a/package/copas/copas.mk b/package/copas/copas.mk
index c84a6cc..d3e6576 100644
--- a/package/copas/copas.mk
+++ b/package/copas/copas.mk
@@ -6,7 +6,6 @@
COPAS_VERSION = 1.1.6
COPAS_SITE = http://github.com/downloads/keplerproject/copas
-COPAS_DEPENDENCIES = lua coxpcall luasocket
COPAS_LICENSE = MIT
define COPAS_INSTALL_TARGET_CMDS
diff --git a/package/coxpcall/coxpcall.mk b/package/coxpcall/coxpcall.mk
index e7fb76d..329d6fd 100644
--- a/package/coxpcall/coxpcall.mk
+++ b/package/coxpcall/coxpcall.mk
@@ -6,7 +6,6 @@
COXPCALL_VERSION = 1.13.0
COXPCALL_SITE = http://luaforge.net/frs/download.php/3406
-COXPCALL_DEPENDENCIES = lua
COXPCALL_LICENSE = MIT
define COXPCALL_INSTALL_TARGET_CMDS
diff --git a/package/wsapi/wsapi.mk b/package/wsapi/wsapi.mk
index eb2b51c..4628530 100644
--- a/package/wsapi/wsapi.mk
+++ b/package/wsapi/wsapi.mk
@@ -6,7 +6,6 @@
WSAPI_VERSION = 1.5
WSAPI_SITE = http://github.com/downloads/keplerproject/wsapi
-WSAPI_DEPENDENCIES = coxpcall luafilesystem rings
WSAPI_LICENSE = MIT
define WSAPI_INSTALL_TARGET_CMDS
diff --git a/package/xavante/xavante.mk b/package/xavante/xavante.mk
index 0c1c6f1..d1ca320 100644
--- a/package/xavante/xavante.mk
+++ b/package/xavante/xavante.mk
@@ -6,7 +6,6 @@
XAVANTE_VERSION = 2.2.1
XAVANTE_SITE = http://github.com/downloads/keplerproject/xavante
-XAVANTE_DEPENDENCIES = cgilua copas coxpcall lua luafilesystem luasocket wsapi
XAVANTE_LICENSE = MIT
define XAVANTE_INSTALL_TARGET_CMDS
--
1.7.9.5
^ permalink raw reply related
* [Buildroot] [v2] luajit: complete replacement for lua
From: François Perrad @ 2012-12-15 9:32 UTC (permalink / raw)
To: buildroot
In-Reply-To: <50CA46E1.2090105@mind.be>
2012/12/13 Arnout Vandecappelle <arnout@mind.be>:
> Hi Francois,
>
>
> On 06/12/12 09:44, Francois Perrad wrote:
>>
>> the mutual exclusion is done by a choice
>>
>> Signed-off-by: Francois Perrad<francois.perrad@gadz.org>
>>
>> see initial discussion,
>> http://article.gmane.org/gmane.comp.lib.uclibc.buildroot/43499
>>
>> ---
>> Makefile | 6 ++++++
>> package/Config.in | 1 -
>> package/copas/copas.mk | 2 +-
>> package/coxpcall/coxpcall.mk | 1 -
>> package/lua-msgpack-native/lua-msgpack-native.mk | 2 +-
>> package/lua/Config.in | 25
>> ++++++++++++++++++++++
>> package/luacjson/luacjson.mk | 2 +-
>> package/luaexpat/luaexpat.mk | 2 +-
>> package/luafilesystem/luafilesystem.mk | 2 +-
>> package/luajit/Config.in | 12 -----------
>> package/luajit/luajit-05-install-like-lua.patch | 17 +++++++++++++++
>> package/luasocket/luasocket.mk | 2 +-
>> package/rings/rings.mk | 2 +-
>> package/xavante/xavante.mk | 2 +-
>> 14 files changed, 56 insertions(+), 22 deletions(-)
>> delete mode 100644 package/luajit/Config.in
>> create mode 100644 package/luajit/luajit-05-install-like-lua.patch
>>
>> diff --git a/Makefile b/Makefile
>> index 4b09437..b5215e0 100644
>> --- a/Makefile
>> +++ b/Makefile
>> @@ -282,6 +282,12 @@ HOSTCC := $(CCACHE) $(HOSTCC)
>> HOSTCXX := $(CCACHE) $(HOSTCXX)
>> endif
>>
>> +ifeq ($(BR2_PACKAGE_LUA),y)
>> + LUA_INTERPRETER = lua
>> +else ifeq ($(BR2_PACKAGE_LUAJIT),y)
>> + LUA_INTERPRETER = luajit
>> +endif
>> +
>
>
> Minor detail: I think this fits better in package/Makefile.in.
Ok.
>
>
>> #############################################################
>> #
>> # You should probably leave this stuff alone unless you know
>> diff --git a/package/Config.in b/package/Config.in
>> index 74e439e..e6e294e 100644
>> --- a/package/Config.in
>> +++ b/package/Config.in
>> @@ -271,7 +271,6 @@ source "package/erlang/Config.in"
>> source "package/haserl/Config.in"
>> source "package/jamvm/Config.in"
>> source "package/lua/Config.in"
>> -source "package/luajit/Config.in"
>> if BR2_PACKAGE_LUA || BR2_PACKAGE_LUAJIT
>> menu "LUA libraries/modules"
>> source "package/cgilua/Config.in"
>> diff --git a/package/copas/copas.mk b/package/copas/copas.mk
>> index c84a6cc..a258927 100644
>> --- a/package/copas/copas.mk
>> +++ b/package/copas/copas.mk
>> @@ -6,7 +6,7 @@
>>
>> COPAS_VERSION = 1.1.6
>> COPAS_SITE = http://github.com/downloads/keplerproject/copas
>> -COPAS_DEPENDENCIES = lua coxpcall luasocket
>> +COPAS_DEPENDENCIES = coxpcall luasocket
>
>
> I guess this is removed because it's a runtime-only dependency?
> Then it's better to do this in a separate patch.
Ok.
>
> [snip]
>>
>> diff --git a/package/lua/Config.in b/package/lua/Config.in
>> index 4166730..d698a25 100644
>> --- a/package/lua/Config.in
>> +++ b/package/lua/Config.in
>> @@ -1,3 +1,13 @@
>> +
>> +choice
>> + prompt "Lua Interpreter"
>> + default BR2_PACKAGE_LUA_NONE
>> +
>> +config BR2_PACKAGE_LUA_NONE
>> + bool "none"
>> + help
>> + None.
>> +
>> config BR2_PACKAGE_LUA
>> bool "lua"
>> help
>> @@ -5,6 +15,21 @@ config BR2_PACKAGE_LUA
>>
>> http://www.lua.org/
>>
>> +config BR2_PACKAGE_LUAJIT
>> + bool "luajit"
>> + # Luajit is only available for some target architectures, and
>> + # has some complexity wrt 32/64. See luajit.mk for details.
>> + depends on BR2_i386 || (BR2_x86_64&& BR2_HOSTARCH='x86_64') ||
>> BR2_powerpc || BR2_arm || BR2_armeb
>>
>> + help
>> + LuaJIT implements the full set of language features defined
>> + by Lua 5.1. The virtual machine (VM) is API- and
>> + ABI-compatible to the standard Lua interpreter and can be
>> + deployed as a drop-in replacement.
>> +
>> + http://luajit.org/
>> +
>> +endchoice
>
>
> It's a good idea to make it a choice, but I have a few problems
> with it:
>
> - it doesn't work well with packages that select LUA (e.g.
> BR2_PACKAGE_LIGHTTPD_LUA);
> - it's not good to split luajit's Config.in from the .mk file.
>
> Maybe there could be a symbol BR2_USE_LUA that can be selected by
> other packages? This symbol could be defined package/Config.in.
> The choice would default to BR2_PACKAGE_LUA if BR2_USE_LUA, and
> BR2_PACKAGE_LUA_NONE would depend on !BR2_USE_LUA.
>
You are right, the choice lua/luajit works well for Lua extensions,
but not when Lua is embedded (dnsmask, libedje, haserl, lighttpd).
So, I'll remove it.
Fran?ois
>> +
>> if BR2_PACKAGE_LUA
>>
>> choice
>
> [snip]
>
>> diff --git a/package/xavante/xavante.mk b/package/xavante/xavante.mk
>> index 0c1c6f1..7f49f4d 100644
>> --- a/package/xavante/xavante.mk
>> +++ b/package/xavante/xavante.mk
>> @@ -6,7 +6,7 @@
>>
>> XAVANTE_VERSION = 2.2.1
>> XAVANTE_SITE = http://github.com/downloads/keplerproject/xavante
>> -XAVANTE_DEPENDENCIES = cgilua copas coxpcall lua luafilesystem luasocket
>> wsapi
>> +XAVANTE_DEPENDENCIES = cgilua copas coxpcall luafilesystem luasocket
>> wsapi
>
>
> Here again I think it should be a separate patch.
>
>
> Regards,
> Arnout
>
>
>> XAVANTE_LICENSE = MIT
>>
>> define XAVANTE_INSTALL_TARGET_CMDS
>
>
> --
> Arnout Vandecappelle arnout at mind be
> Senior Embedded Software Architect +32-16-286540
> Essensium/Mind http://www.mind.be
> G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
> LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
> GPG fingerprint: 7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
^ permalink raw reply
* [Buildroot] [autobuild.buildroot.net] Build results for 2012-12-14
From: Thomas Petazzoni @ 2012-12-15 7:34 UTC (permalink / raw)
To: buildroot
Hello,
On 2012-12-14, 204 random build tests have been done and
submitted on autobuild.buildroot.net.
103 builds have been successful
101 builds have failed
Below the results of the failed builds. Successful builds are omitted.
Build 7dae5498aa2bc87a8a5573b5a39e590ce8b7ef99
==============================================
Status : NOK
Failure reason : webkit-1.2.7
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 00:09:52
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e043dd6c99a801dc7f863986c78c947e25c75b3f
End of log : http://autobuild.buildroot.net/results/7dae5498aa2bc87a8a5573b5a39e590ce8b7ef99/build-end.log
Complete log : http://autobuild.buildroot.net/results/7dae5498aa2bc87a8a5573b5a39e590ce8b7ef99/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/7dae5498aa2bc87a8a5573b5a39e590ce8b7ef99/config
Defconfig : http://autobuild.buildroot.net/results/7dae5498aa2bc87a8a5573b5a39e590ce8b7ef99/defconfig
Build e4ae42e7d063d6ddee10ed6f20ef7861615bc972
==============================================
Status : NOK
Failure reason : webkit-1.2.7
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-12-14 02:05:19
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=21dd3e777b5b9eb40c6e0fe9fadcf0c7fcc63901
End of log : http://autobuild.buildroot.net/results/e4ae42e7d063d6ddee10ed6f20ef7861615bc972/build-end.log
Complete log : http://autobuild.buildroot.net/results/e4ae42e7d063d6ddee10ed6f20ef7861615bc972/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/e4ae42e7d063d6ddee10ed6f20ef7861615bc972/config
Defconfig : http://autobuild.buildroot.net/results/e4ae42e7d063d6ddee10ed6f20ef7861615bc972/defconfig
Build 805196aad6dafe51b281aa5b7c1b145fd3dd205a
==============================================
Status : NOK
Failure reason : libffi-3.0.11
Architecture : microblaze
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 02:23:28
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=24cb62ed4c7c3e0aa36500cc4d1c0b13ee722f71
End of log : http://autobuild.buildroot.net/results/805196aad6dafe51b281aa5b7c1b145fd3dd205a/build-end.log
Complete log : http://autobuild.buildroot.net/results/805196aad6dafe51b281aa5b7c1b145fd3dd205a/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/805196aad6dafe51b281aa5b7c1b145fd3dd205a/config
Defconfig : http://autobuild.buildroot.net/results/805196aad6dafe51b281aa5b7c1b145fd3dd205a/defconfig
Build 915c2a790ea6abb56024fdc7e64a21bdd0a1307f
==============================================
Status : NOK
Failure reason : collectd-5.1.1
Architecture : avr32
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 02:48:49
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=24cb62ed4c7c3e0aa36500cc4d1c0b13ee722f71
End of log : http://autobuild.buildroot.net/results/915c2a790ea6abb56024fdc7e64a21bdd0a1307f/build-end.log
Complete log : http://autobuild.buildroot.net/results/915c2a790ea6abb56024fdc7e64a21bdd0a1307f/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/915c2a790ea6abb56024fdc7e64a21bdd0a1307f/config
Defconfig : http://autobuild.buildroot.net/results/915c2a790ea6abb56024fdc7e64a21bdd0a1307f/defconfig
Build 2015b9130912d3e06d0e40141316d2df23c7fa35
==============================================
Status : NOK
Failure reason : libffi-3.0.11
Architecture : xtensa
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 02:59:22
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=24cb62ed4c7c3e0aa36500cc4d1c0b13ee722f71
End of log : http://autobuild.buildroot.net/results/2015b9130912d3e06d0e40141316d2df23c7fa35/build-end.log
Complete log : http://autobuild.buildroot.net/results/2015b9130912d3e06d0e40141316d2df23c7fa35/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/2015b9130912d3e06d0e40141316d2df23c7fa35/config
Defconfig : http://autobuild.buildroot.net/results/2015b9130912d3e06d0e40141316d2df23c7fa35/defconfig
Build 335a45c755e8c6f0afcae7a372c85f098ecd940d
==============================================
Status : NOK
Failure reason : host-python-2.7.3
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 03:18:20
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=24cb62ed4c7c3e0aa36500cc4d1c0b13ee722f71
End of log : http://autobuild.buildroot.net/results/335a45c755e8c6f0afcae7a372c85f098ecd940d/build-end.log
Complete log : http://autobuild.buildroot.net/results/335a45c755e8c6f0afcae7a372c85f098ecd940d/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/335a45c755e8c6f0afcae7a372c85f098ecd940d/config
Defconfig : http://autobuild.buildroot.net/results/335a45c755e8c6f0afcae7a372c85f098ecd940d/defconfig
Build 8150e8bbd461f7cdf6521678405a839c9803b9f7
==============================================
Status : NOK
Failure reason : ffmpeg-0.8.12
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 03:40:02
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=24cb62ed4c7c3e0aa36500cc4d1c0b13ee722f71
End of log : http://autobuild.buildroot.net/results/8150e8bbd461f7cdf6521678405a839c9803b9f7/build-end.log
Complete log : http://autobuild.buildroot.net/results/8150e8bbd461f7cdf6521678405a839c9803b9f7/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/8150e8bbd461f7cdf6521678405a839c9803b9f7/config
Defconfig : http://autobuild.buildroot.net/results/8150e8bbd461f7cdf6521678405a839c9803b9f7/defconfig
Build 9c332efb8ec26983f5e390a7108fa057306e5c19
==============================================
Status : NOK
Failure reason : busybox-1.20.2
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-12-14 04:23:08
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=24cb62ed4c7c3e0aa36500cc4d1c0b13ee722f71
End of log : http://autobuild.buildroot.net/results/9c332efb8ec26983f5e390a7108fa057306e5c19/build-end.log
Complete log : http://autobuild.buildroot.net/results/9c332efb8ec26983f5e390a7108fa057306e5c19/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/9c332efb8ec26983f5e390a7108fa057306e5c19/config
Defconfig : http://autobuild.buildroot.net/results/9c332efb8ec26983f5e390a7108fa057306e5c19/defconfig
Build 950eae9b01acb8c404bcf5e439d0d63ef220b8f7
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 04:24:54
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=24cb62ed4c7c3e0aa36500cc4d1c0b13ee722f71
End of log : http://autobuild.buildroot.net/results/950eae9b01acb8c404bcf5e439d0d63ef220b8f7/build-end.log
Complete log : http://autobuild.buildroot.net/results/950eae9b01acb8c404bcf5e439d0d63ef220b8f7/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/950eae9b01acb8c404bcf5e439d0d63ef220b8f7/config
Defconfig : http://autobuild.buildroot.net/results/950eae9b01acb8c404bcf5e439d0d63ef220b8f7/defconfig
Build 0fbe8cb4ae2740bb5fcdf95ab2e96a8fb02006ef
==============================================
Status : NOK
Failure reason : boost-1.52.0
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-12-14 04:47:37
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=24cb62ed4c7c3e0aa36500cc4d1c0b13ee722f71
End of log : http://autobuild.buildroot.net/results/0fbe8cb4ae2740bb5fcdf95ab2e96a8fb02006ef/build-end.log
Complete log : http://autobuild.buildroot.net/results/0fbe8cb4ae2740bb5fcdf95ab2e96a8fb02006ef/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/0fbe8cb4ae2740bb5fcdf95ab2e96a8fb02006ef/config
Defconfig : http://autobuild.buildroot.net/results/0fbe8cb4ae2740bb5fcdf95ab2e96a8fb02006ef/defconfig
Build 36b0f8153749f3bae13ef1c9e6cf4839c4dbd739
==============================================
Status : NOK
Failure reason : boost-1.52.0
Architecture : mips
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 05:11:09
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=24cb62ed4c7c3e0aa36500cc4d1c0b13ee722f71
End of log : http://autobuild.buildroot.net/results/36b0f8153749f3bae13ef1c9e6cf4839c4dbd739/build-end.log
Complete log : http://autobuild.buildroot.net/results/36b0f8153749f3bae13ef1c9e6cf4839c4dbd739/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/36b0f8153749f3bae13ef1c9e6cf4839c4dbd739/config
Defconfig : http://autobuild.buildroot.net/results/36b0f8153749f3bae13ef1c9e6cf4839c4dbd739/defconfig
Build 29df854cf005bcb68bd2d9e5ff07de4a1e6daa95
==============================================
Status : NOK
Failure reason : cifs-utils-5.7
Architecture : microblaze
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 05:15:15
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=24cb62ed4c7c3e0aa36500cc4d1c0b13ee722f71
End of log : http://autobuild.buildroot.net/results/29df854cf005bcb68bd2d9e5ff07de4a1e6daa95/build-end.log
Complete log : http://autobuild.buildroot.net/results/29df854cf005bcb68bd2d9e5ff07de4a1e6daa95/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/29df854cf005bcb68bd2d9e5ff07de4a1e6daa95/config
Defconfig : http://autobuild.buildroot.net/results/29df854cf005bcb68bd2d9e5ff07de4a1e6daa95/defconfig
Build a8ac87786774325e0103440fec4e183fa7758e6f
==============================================
Status : NOK
Failure reason : host-python-2.7.3
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 05:16:29
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=24cb62ed4c7c3e0aa36500cc4d1c0b13ee722f71
End of log : http://autobuild.buildroot.net/results/a8ac87786774325e0103440fec4e183fa7758e6f/build-end.log
Complete log : http://autobuild.buildroot.net/results/a8ac87786774325e0103440fec4e183fa7758e6f/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/a8ac87786774325e0103440fec4e183fa7758e6f/config
Defconfig : http://autobuild.buildroot.net/results/a8ac87786774325e0103440fec4e183fa7758e6f/defconfig
Build af73d86a679a2c59ebbbf0a75846d198553a0745
==============================================
Status : NOK
Failure reason : libnl-3.2.16
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 05:31:16
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=24cb62ed4c7c3e0aa36500cc4d1c0b13ee722f71
End of log : http://autobuild.buildroot.net/results/af73d86a679a2c59ebbbf0a75846d198553a0745/build-end.log
Complete log : http://autobuild.buildroot.net/results/af73d86a679a2c59ebbbf0a75846d198553a0745/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/af73d86a679a2c59ebbbf0a75846d198553a0745/config
Defconfig : http://autobuild.buildroot.net/results/af73d86a679a2c59ebbbf0a75846d198553a0745/defconfig
Build c80c75b972e569dd98da93d8684fd63a13d0fd0c
==============================================
Status : NOK
Failure reason : ltrace-0.7.2
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 06:00:10
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=24cb62ed4c7c3e0aa36500cc4d1c0b13ee722f71
End of log : http://autobuild.buildroot.net/results/c80c75b972e569dd98da93d8684fd63a13d0fd0c/build-end.log
Complete log : http://autobuild.buildroot.net/results/c80c75b972e569dd98da93d8684fd63a13d0fd0c/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/c80c75b972e569dd98da93d8684fd63a13d0fd0c/config
Defconfig : http://autobuild.buildroot.net/results/c80c75b972e569dd98da93d8684fd63a13d0fd0c/defconfig
Build 728c2be65e3314707630fb60244394bce6a2d7a2
==============================================
Status : NOK
Failure reason : boost-1.52.0
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 06:21:59
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=24cb62ed4c7c3e0aa36500cc4d1c0b13ee722f71
End of log : http://autobuild.buildroot.net/results/728c2be65e3314707630fb60244394bce6a2d7a2/build-end.log
Complete log : http://autobuild.buildroot.net/results/728c2be65e3314707630fb60244394bce6a2d7a2/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/728c2be65e3314707630fb60244394bce6a2d7a2/config
Defconfig : http://autobuild.buildroot.net/results/728c2be65e3314707630fb60244394bce6a2d7a2/defconfig
Build 53aaeaaffe340f1318938cd56faeedfe63a20870
==============================================
Status : NOK
Failure reason : webkit-1.2.7
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-12-14 06:55:15
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=24cb62ed4c7c3e0aa36500cc4d1c0b13ee722f71
End of log : http://autobuild.buildroot.net/results/53aaeaaffe340f1318938cd56faeedfe63a20870/build-end.log
Complete log : http://autobuild.buildroot.net/results/53aaeaaffe340f1318938cd56faeedfe63a20870/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/53aaeaaffe340f1318938cd56faeedfe63a20870/config
Defconfig : http://autobuild.buildroot.net/results/53aaeaaffe340f1318938cd56faeedfe63a20870/defconfig
Build 61925294db072120649f052df108280f95bf7989
==============================================
Status : NOK
Failure reason : boost-1.52.0
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 07:11:17
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=24cb62ed4c7c3e0aa36500cc4d1c0b13ee722f71
End of log : http://autobuild.buildroot.net/results/61925294db072120649f052df108280f95bf7989/build-end.log
Complete log : http://autobuild.buildroot.net/results/61925294db072120649f052df108280f95bf7989/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/61925294db072120649f052df108280f95bf7989/config
Defconfig : http://autobuild.buildroot.net/results/61925294db072120649f052df108280f95bf7989/defconfig
Build f3a02b0024c4a5d05df882a381fd352242e78009
==============================================
Status : NOK
Failure reason : libnfc-llcp-1103
Architecture : bfin
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 07:11:27
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=24cb62ed4c7c3e0aa36500cc4d1c0b13ee722f71
End of log : http://autobuild.buildroot.net/results/f3a02b0024c4a5d05df882a381fd352242e78009/build-end.log
Complete log : http://autobuild.buildroot.net/results/f3a02b0024c4a5d05df882a381fd352242e78009/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/f3a02b0024c4a5d05df882a381fd352242e78009/config
Defconfig : http://autobuild.buildroot.net/results/f3a02b0024c4a5d05df882a381fd352242e78009/defconfig
Build 6206527117f499edb5d942f5eb71925e82b4dc45
==============================================
Status : NOK
Failure reason : util-linux-2.20.1
Architecture : aarch64
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 07:49:47
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=24cb62ed4c7c3e0aa36500cc4d1c0b13ee722f71
End of log : http://autobuild.buildroot.net/results/6206527117f499edb5d942f5eb71925e82b4dc45/build-end.log
Complete log : http://autobuild.buildroot.net/results/6206527117f499edb5d942f5eb71925e82b4dc45/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/6206527117f499edb5d942f5eb71925e82b4dc45/config
Defconfig : http://autobuild.buildroot.net/results/6206527117f499edb5d942f5eb71925e82b4dc45/defconfig
Build b4e6cdab0e4a71176e4498eb8a812a287d4aaa4b
==============================================
Status : NOK
Failure reason : connman-1.9
Architecture : avr32
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 08:14:27
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=24cb62ed4c7c3e0aa36500cc4d1c0b13ee722f71
End of log : http://autobuild.buildroot.net/results/b4e6cdab0e4a71176e4498eb8a812a287d4aaa4b/build-end.log
Complete log : http://autobuild.buildroot.net/results/b4e6cdab0e4a71176e4498eb8a812a287d4aaa4b/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/b4e6cdab0e4a71176e4498eb8a812a287d4aaa4b/config
Defconfig : http://autobuild.buildroot.net/results/b4e6cdab0e4a71176e4498eb8a812a287d4aaa4b/defconfig
Build 9609887a182edc6ee2080f6463de1f21ef27d311
==============================================
Status : NOK
Failure reason : boost-1.52.0
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 08:30:00
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=24cb62ed4c7c3e0aa36500cc4d1c0b13ee722f71
End of log : http://autobuild.buildroot.net/results/9609887a182edc6ee2080f6463de1f21ef27d311/build-end.log
Complete log : http://autobuild.buildroot.net/results/9609887a182edc6ee2080f6463de1f21ef27d311/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/9609887a182edc6ee2080f6463de1f21ef27d311/config
Defconfig : http://autobuild.buildroot.net/results/9609887a182edc6ee2080f6463de1f21ef27d311/defconfig
Build 2fbadf3f4e94dd0df32fbbbb8ef39e784de68b8d
==============================================
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-14 08:33:25
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=24cb62ed4c7c3e0aa36500cc4d1c0b13ee722f71
End of log : http://autobuild.buildroot.net/results/2fbadf3f4e94dd0df32fbbbb8ef39e784de68b8d/build-end.log
Complete log : http://autobuild.buildroot.net/results/2fbadf3f4e94dd0df32fbbbb8ef39e784de68b8d/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/2fbadf3f4e94dd0df32fbbbb8ef39e784de68b8d/config
Defconfig : http://autobuild.buildroot.net/results/2fbadf3f4e94dd0df32fbbbb8ef39e784de68b8d/defconfig
Build 9ecbc6a936471ff0a4a0c16dbbb908595b18bb1a
==============================================
Status : NOK
Failure reason : libffi-3.0.11
Architecture : microblaze
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 08:35:02
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=24cb62ed4c7c3e0aa36500cc4d1c0b13ee722f71
End of log : http://autobuild.buildroot.net/results/9ecbc6a936471ff0a4a0c16dbbb908595b18bb1a/build-end.log
Complete log : http://autobuild.buildroot.net/results/9ecbc6a936471ff0a4a0c16dbbb908595b18bb1a/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/9ecbc6a936471ff0a4a0c16dbbb908595b18bb1a/config
Defconfig : http://autobuild.buildroot.net/results/9ecbc6a936471ff0a4a0c16dbbb908595b18bb1a/defconfig
Build 67772a08ff8aa3b7714f6d83e00385ae8fc5eb75
==============================================
Status : NOK
Failure reason : netatalk-3.0
Architecture : x86_64
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 08:57:04
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=24cb62ed4c7c3e0aa36500cc4d1c0b13ee722f71
End of log : http://autobuild.buildroot.net/results/67772a08ff8aa3b7714f6d83e00385ae8fc5eb75/build-end.log
Complete log : http://autobuild.buildroot.net/results/67772a08ff8aa3b7714f6d83e00385ae8fc5eb75/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/67772a08ff8aa3b7714f6d83e00385ae8fc5eb75/config
Defconfig : http://autobuild.buildroot.net/results/67772a08ff8aa3b7714f6d83e00385ae8fc5eb75/defconfig
Build d5e205b773ae34d087907479b50f802d94185846
==============================================
Status : NOK
Failure reason : boost-1.52.0
Architecture : x86_64
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 09:08:24
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=45eda5a15cd8e5b8d4fabfbeac45776eec51fc8a
End of log : http://autobuild.buildroot.net/results/d5e205b773ae34d087907479b50f802d94185846/build-end.log
Complete log : http://autobuild.buildroot.net/results/d5e205b773ae34d087907479b50f802d94185846/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/d5e205b773ae34d087907479b50f802d94185846/config
Defconfig : http://autobuild.buildroot.net/results/d5e205b773ae34d087907479b50f802d94185846/defconfig
Build a81768f1141a08c2698999b67a475a4725d9be70
==============================================
Status : NOK
Failure reason : libffi-3.0.11
Architecture : microblaze
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 09:49:01
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=45eda5a15cd8e5b8d4fabfbeac45776eec51fc8a
End of log : http://autobuild.buildroot.net/results/a81768f1141a08c2698999b67a475a4725d9be70/build-end.log
Complete log : http://autobuild.buildroot.net/results/a81768f1141a08c2698999b67a475a4725d9be70/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/a81768f1141a08c2698999b67a475a4725d9be70/config
Defconfig : http://autobuild.buildroot.net/results/a81768f1141a08c2698999b67a475a4725d9be70/defconfig
Build dcdae6358ac1e562f3eade6d69f79ab0203ffcc3
==============================================
Status : NOK
Failure reason : ortp-0.20.0
Architecture : avr32
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 10:02:03
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=45eda5a15cd8e5b8d4fabfbeac45776eec51fc8a
End of log : http://autobuild.buildroot.net/results/dcdae6358ac1e562f3eade6d69f79ab0203ffcc3/build-end.log
Complete log : http://autobuild.buildroot.net/results/dcdae6358ac1e562f3eade6d69f79ab0203ffcc3/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/dcdae6358ac1e562f3eade6d69f79ab0203ffcc3/config
Defconfig : http://autobuild.buildroot.net/results/dcdae6358ac1e562f3eade6d69f79ab0203ffcc3/defconfig
Build 9a03decc185e5273c3df3d1cb4cfa6a82767e16e
==============================================
Status : NOK
Failure reason : rt-tests-0.83
Architecture : mipsel
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 10:20:47
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=45eda5a15cd8e5b8d4fabfbeac45776eec51fc8a
End of log : http://autobuild.buildroot.net/results/9a03decc185e5273c3df3d1cb4cfa6a82767e16e/build-end.log
Complete log : http://autobuild.buildroot.net/results/9a03decc185e5273c3df3d1cb4cfa6a82767e16e/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/9a03decc185e5273c3df3d1cb4cfa6a82767e16e/config
Defconfig : http://autobuild.buildroot.net/results/9a03decc185e5273c3df3d1cb4cfa6a82767e16e/defconfig
Build 9ecd20b9e5730735011e474863fa170406285447
==============================================
Status : NOK
Failure reason : sdl-1.2.15
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-12-14 10:36:40
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=24cb62ed4c7c3e0aa36500cc4d1c0b13ee722f71
End of log : http://autobuild.buildroot.net/results/9ecd20b9e5730735011e474863fa170406285447/build-end.log
Complete log : http://autobuild.buildroot.net/results/9ecd20b9e5730735011e474863fa170406285447/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/9ecd20b9e5730735011e474863fa170406285447/config
Defconfig : http://autobuild.buildroot.net/results/9ecd20b9e5730735011e474863fa170406285447/defconfig
Build a8bea241c4ef7ebfc64947664598f740da7776c0
==============================================
Status : NOK
Failure reason : imagemagick-6.7.8-8
Architecture : sh4
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 10:38:05
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=45eda5a15cd8e5b8d4fabfbeac45776eec51fc8a
End of log : http://autobuild.buildroot.net/results/a8bea241c4ef7ebfc64947664598f740da7776c0/build-end.log
Complete log : http://autobuild.buildroot.net/results/a8bea241c4ef7ebfc64947664598f740da7776c0/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/a8bea241c4ef7ebfc64947664598f740da7776c0/config
Defconfig : http://autobuild.buildroot.net/results/a8bea241c4ef7ebfc64947664598f740da7776c0/defconfig
Build 03e8d824f0640646ea175960ab1b4e1583ce36a3
==============================================
Status : NOK
Failure reason : ortp-0.20.0
Architecture : avr32
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 11:07:05
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=45eda5a15cd8e5b8d4fabfbeac45776eec51fc8a
End of log : http://autobuild.buildroot.net/results/03e8d824f0640646ea175960ab1b4e1583ce36a3/build-end.log
Complete log : http://autobuild.buildroot.net/results/03e8d824f0640646ea175960ab1b4e1583ce36a3/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/03e8d824f0640646ea175960ab1b4e1583ce36a3/config
Defconfig : http://autobuild.buildroot.net/results/03e8d824f0640646ea175960ab1b4e1583ce36a3/defconfig
Build ff99d03a4165b7b4e8ff8f2c386dd6bddc3e12cc
==============================================
Status : NOK
Failure reason : gnupg-1.4.12
Architecture : mips64el
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 11:41:44
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=45eda5a15cd8e5b8d4fabfbeac45776eec51fc8a
End of log : http://autobuild.buildroot.net/results/ff99d03a4165b7b4e8ff8f2c386dd6bddc3e12cc/build-end.log
Complete log : http://autobuild.buildroot.net/results/ff99d03a4165b7b4e8ff8f2c386dd6bddc3e12cc/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/ff99d03a4165b7b4e8ff8f2c386dd6bddc3e12cc/config
Defconfig : http://autobuild.buildroot.net/results/ff99d03a4165b7b4e8ff8f2c386dd6bddc3e12cc/defconfig
Build 46c9b49c03f00590e56bf60821263168b3b9bb54
==============================================
Status : NOK
Failure reason : luajit-2.0.0
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 11:42:24
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=4f3a4c96312e27ca82f6c26a0179536a11594b95
End of log : http://autobuild.buildroot.net/results/46c9b49c03f00590e56bf60821263168b3b9bb54/build-end.log
Complete log : http://autobuild.buildroot.net/results/46c9b49c03f00590e56bf60821263168b3b9bb54/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/46c9b49c03f00590e56bf60821263168b3b9bb54/config
Defconfig : http://autobuild.buildroot.net/results/46c9b49c03f00590e56bf60821263168b3b9bb54/defconfig
Build d39900fba64316b2a9b9dc861ea57136c917fbd0
==============================================
Status : NOK
Failure reason : libnetfilter_conntrack-1.0.2
Architecture : sh2a
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 11:47:19
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=4f3a4c96312e27ca82f6c26a0179536a11594b95
End of log : http://autobuild.buildroot.net/results/d39900fba64316b2a9b9dc861ea57136c917fbd0/build-end.log
Complete log : http://autobuild.buildroot.net/results/d39900fba64316b2a9b9dc861ea57136c917fbd0/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/d39900fba64316b2a9b9dc861ea57136c917fbd0/config
Defconfig : http://autobuild.buildroot.net/results/d39900fba64316b2a9b9dc861ea57136c917fbd0/defconfig
Build 25b0f407596a628cc140f2ed1e71d9c7a5743992
==============================================
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-14 11:51:56
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=4f3a4c96312e27ca82f6c26a0179536a11594b95
End of log : http://autobuild.buildroot.net/results/25b0f407596a628cc140f2ed1e71d9c7a5743992/build-end.log
Complete log : http://autobuild.buildroot.net/results/25b0f407596a628cc140f2ed1e71d9c7a5743992/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/25b0f407596a628cc140f2ed1e71d9c7a5743992/config
Defconfig : http://autobuild.buildroot.net/results/25b0f407596a628cc140f2ed1e71d9c7a5743992/defconfig
Build 6fac3c32a8c11b0e5ec08c9a5b46c3835f80d110
==============================================
Status : NOK
Failure reason : gettext-0.18.1.1
Architecture : mipsel
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 12:15:58
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=933ebedd200088600809a1149bb1670c58e25c62
End of log : http://autobuild.buildroot.net/results/6fac3c32a8c11b0e5ec08c9a5b46c3835f80d110/build-end.log
Complete log : http://autobuild.buildroot.net/results/6fac3c32a8c11b0e5ec08c9a5b46c3835f80d110/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/6fac3c32a8c11b0e5ec08c9a5b46c3835f80d110/config
Defconfig : http://autobuild.buildroot.net/results/6fac3c32a8c11b0e5ec08c9a5b46c3835f80d110/defconfig
Build 269b7fe69457ba4d7d190a3bdf10fe2376300fb0
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 13:01:44
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=933ebedd200088600809a1149bb1670c58e25c62
End of log : http://autobuild.buildroot.net/results/269b7fe69457ba4d7d190a3bdf10fe2376300fb0/build-end.log
Complete log : http://autobuild.buildroot.net/results/269b7fe69457ba4d7d190a3bdf10fe2376300fb0/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/269b7fe69457ba4d7d190a3bdf10fe2376300fb0/config
Defconfig : http://autobuild.buildroot.net/results/269b7fe69457ba4d7d190a3bdf10fe2376300fb0/defconfig
Build ac6bf134b02d1e8dc2835f8e3a4b29e0c8b14826
==============================================
Status : NOK
Failure reason : bzip2-1.0.6
Architecture : bfin
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 13:02:31
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=933ebedd200088600809a1149bb1670c58e25c62
End of log : http://autobuild.buildroot.net/results/ac6bf134b02d1e8dc2835f8e3a4b29e0c8b14826/build-end.log
Complete log : http://autobuild.buildroot.net/results/ac6bf134b02d1e8dc2835f8e3a4b29e0c8b14826/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/ac6bf134b02d1e8dc2835f8e3a4b29e0c8b14826/config
Defconfig : http://autobuild.buildroot.net/results/ac6bf134b02d1e8dc2835f8e3a4b29e0c8b14826/defconfig
Build 1828eba39b0918a874077ed2f945edd2d65fc1ec
==============================================
Status : NOK
Failure reason : dialog-1.1-20111020
Architecture : sh2a
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 13:13:54
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=933ebedd200088600809a1149bb1670c58e25c62
End of log : http://autobuild.buildroot.net/results/1828eba39b0918a874077ed2f945edd2d65fc1ec/build-end.log
Complete log : http://autobuild.buildroot.net/results/1828eba39b0918a874077ed2f945edd2d65fc1ec/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/1828eba39b0918a874077ed2f945edd2d65fc1ec/config
Defconfig : http://autobuild.buildroot.net/results/1828eba39b0918a874077ed2f945edd2d65fc1ec/defconfig
Build 8958aec994ae2eb7daa58f439ea4255fc68368f8
==============================================
Status : NOK
Failure reason : host-python-2.7.3
Architecture : mips64el
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 13:47:09
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=933ebedd200088600809a1149bb1670c58e25c62
End of log : http://autobuild.buildroot.net/results/8958aec994ae2eb7daa58f439ea4255fc68368f8/build-end.log
Complete log : http://autobuild.buildroot.net/results/8958aec994ae2eb7daa58f439ea4255fc68368f8/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/8958aec994ae2eb7daa58f439ea4255fc68368f8/config
Defconfig : http://autobuild.buildroot.net/results/8958aec994ae2eb7daa58f439ea4255fc68368f8/defconfig
Build a0ff0bbb4c3f4a957301d928e665dcef8c48d914
==============================================
Status : NOK
Failure reason : libffi-3.0.11
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 13:48:27
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=933ebedd200088600809a1149bb1670c58e25c62
End of log : http://autobuild.buildroot.net/results/a0ff0bbb4c3f4a957301d928e665dcef8c48d914/build-end.log
Complete log : http://autobuild.buildroot.net/results/a0ff0bbb4c3f4a957301d928e665dcef8c48d914/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/a0ff0bbb4c3f4a957301d928e665dcef8c48d914/config
Defconfig : http://autobuild.buildroot.net/results/a0ff0bbb4c3f4a957301d928e665dcef8c48d914/defconfig
Build e3a2a81327877f9482341daff9623d759d1b2900
==============================================
Status : NOK
Failure reason : gd-2.0.35
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-12-14 14:11:30
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=933ebedd200088600809a1149bb1670c58e25c62
End of log : http://autobuild.buildroot.net/results/e3a2a81327877f9482341daff9623d759d1b2900/build-end.log
Complete log : http://autobuild.buildroot.net/results/e3a2a81327877f9482341daff9623d759d1b2900/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/e3a2a81327877f9482341daff9623d759d1b2900/config
Defconfig : http://autobuild.buildroot.net/results/e3a2a81327877f9482341daff9623d759d1b2900/defconfig
Build 4404bd88ab3de7c6022750f5e1a6cee9f6328822
==============================================
Status : NOK
Failure reason : webkit-1.2.7
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-12-14 14:18:07
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=933ebedd200088600809a1149bb1670c58e25c62
End of log : http://autobuild.buildroot.net/results/4404bd88ab3de7c6022750f5e1a6cee9f6328822/build-end.log
Complete log : http://autobuild.buildroot.net/results/4404bd88ab3de7c6022750f5e1a6cee9f6328822/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/4404bd88ab3de7c6022750f5e1a6cee9f6328822/config
Defconfig : http://autobuild.buildroot.net/results/4404bd88ab3de7c6022750f5e1a6cee9f6328822/defconfig
Build c3fc226d088a5156bf6fdbf9a1bbf50e659cd02e
==============================================
Status : NOK
Failure reason : alsa-lib-1.0.26
Architecture : bfin
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 14:18:27
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/c3fc226d088a5156bf6fdbf9a1bbf50e659cd02e/build-end.log
Complete log : http://autobuild.buildroot.net/results/c3fc226d088a5156bf6fdbf9a1bbf50e659cd02e/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/c3fc226d088a5156bf6fdbf9a1bbf50e659cd02e/config
Defconfig : http://autobuild.buildroot.net/results/c3fc226d088a5156bf6fdbf9a1bbf50e659cd02e/defconfig
Build d19e32186d865eca61c4969df969b9fe0ac5d1ea
==============================================
Status : NOK
Failure reason : gettext-0.18.1.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 14:19:53
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/d19e32186d865eca61c4969df969b9fe0ac5d1ea/build-end.log
Complete log : http://autobuild.buildroot.net/results/d19e32186d865eca61c4969df969b9fe0ac5d1ea/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/d19e32186d865eca61c4969df969b9fe0ac5d1ea/config
Defconfig : http://autobuild.buildroot.net/results/d19e32186d865eca61c4969df969b9fe0ac5d1ea/defconfig
Build 0e0e9e9186a8d21a341a0b01fec4cf07e8d2c01f
==============================================
Status : NOK
Failure reason : gettext-0.18.1.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 14:22:14
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/0e0e9e9186a8d21a341a0b01fec4cf07e8d2c01f/build-end.log
Complete log : http://autobuild.buildroot.net/results/0e0e9e9186a8d21a341a0b01fec4cf07e8d2c01f/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/0e0e9e9186a8d21a341a0b01fec4cf07e8d2c01f/config
Defconfig : http://autobuild.buildroot.net/results/0e0e9e9186a8d21a341a0b01fec4cf07e8d2c01f/defconfig
Build 2b48e7dd588cc6d2e206ec7f33d6677084b3533b
==============================================
Status : NOK
Failure reason : gettext-0.18.1.1
Architecture : x86_64
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 14:25:34
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/2b48e7dd588cc6d2e206ec7f33d6677084b3533b/build-end.log
Complete log : http://autobuild.buildroot.net/results/2b48e7dd588cc6d2e206ec7f33d6677084b3533b/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/2b48e7dd588cc6d2e206ec7f33d6677084b3533b/config
Defconfig : http://autobuild.buildroot.net/results/2b48e7dd588cc6d2e206ec7f33d6677084b3533b/defconfig
Build 29d476defcbf2299269e7833dbdcc453dd990351
==============================================
Status : NOK
Failure reason : gd-2.0.35
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-12-14 14:52:58
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/29d476defcbf2299269e7833dbdcc453dd990351/build-end.log
Complete log : http://autobuild.buildroot.net/results/29d476defcbf2299269e7833dbdcc453dd990351/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/29d476defcbf2299269e7833dbdcc453dd990351/config
Defconfig : http://autobuild.buildroot.net/results/29d476defcbf2299269e7833dbdcc453dd990351/defconfig
Build d936ce33a8542e3221c32fafe77470d04e06bf97
==============================================
Status : NOK
Failure reason : libfuse-2.9.2
Architecture : aarch64
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 14:54:14
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/d936ce33a8542e3221c32fafe77470d04e06bf97/build-end.log
Complete log : http://autobuild.buildroot.net/results/d936ce33a8542e3221c32fafe77470d04e06bf97/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/d936ce33a8542e3221c32fafe77470d04e06bf97/config
Defconfig : http://autobuild.buildroot.net/results/d936ce33a8542e3221c32fafe77470d04e06bf97/defconfig
Build 4906a312db2e378effd06ffb0501897d1436d6a2
==============================================
Status : NOK
Failure reason : boost-1.52.0
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-12-14 15:04:25
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/4906a312db2e378effd06ffb0501897d1436d6a2/build-end.log
Complete log : http://autobuild.buildroot.net/results/4906a312db2e378effd06ffb0501897d1436d6a2/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/4906a312db2e378effd06ffb0501897d1436d6a2/config
Defconfig : http://autobuild.buildroot.net/results/4906a312db2e378effd06ffb0501897d1436d6a2/defconfig
Build 802c8539032120a8381d5bd06ebadbf86e951fe0
==============================================
Status : NOK
Failure reason : gettext-0.18.1.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 15:53:20
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/802c8539032120a8381d5bd06ebadbf86e951fe0/build-end.log
Complete log : http://autobuild.buildroot.net/results/802c8539032120a8381d5bd06ebadbf86e951fe0/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/802c8539032120a8381d5bd06ebadbf86e951fe0/config
Defconfig : http://autobuild.buildroot.net/results/802c8539032120a8381d5bd06ebadbf86e951fe0/defconfig
Build 7bc69e673f953b68a83b0363da98f593fa9290cc
==============================================
Status : NOK
Failure reason : gettext-0.18.1.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 15:54:04
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/7bc69e673f953b68a83b0363da98f593fa9290cc/build-end.log
Complete log : http://autobuild.buildroot.net/results/7bc69e673f953b68a83b0363da98f593fa9290cc/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/7bc69e673f953b68a83b0363da98f593fa9290cc/config
Defconfig : http://autobuild.buildroot.net/results/7bc69e673f953b68a83b0363da98f593fa9290cc/defconfig
Build 607f150932d175c83724c337a7ee41d18470bba9
==============================================
Status : NOK
Failure reason : gettext-0.18.1.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 15:59:17
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/607f150932d175c83724c337a7ee41d18470bba9/build-end.log
Complete log : http://autobuild.buildroot.net/results/607f150932d175c83724c337a7ee41d18470bba9/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/607f150932d175c83724c337a7ee41d18470bba9/config
Defconfig : http://autobuild.buildroot.net/results/607f150932d175c83724c337a7ee41d18470bba9/defconfig
Build 21ef3a58ae2e6d8156ee78ea936383894b92d6b0
==============================================
Status : NOK
Failure reason : libaio-0.3.109
Architecture : sh4a
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 16:00:14
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/21ef3a58ae2e6d8156ee78ea936383894b92d6b0/build-end.log
Complete log : http://autobuild.buildroot.net/results/21ef3a58ae2e6d8156ee78ea936383894b92d6b0/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/21ef3a58ae2e6d8156ee78ea936383894b92d6b0/config
Defconfig : http://autobuild.buildroot.net/results/21ef3a58ae2e6d8156ee78ea936383894b92d6b0/defconfig
Build 9d4fe00dc1c864434e330933ad97f71c2a516465
==============================================
Status : NOK
Failure reason : gettext-0.18.1.1
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 16:01:24
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/9d4fe00dc1c864434e330933ad97f71c2a516465/build-end.log
Complete log : http://autobuild.buildroot.net/results/9d4fe00dc1c864434e330933ad97f71c2a516465/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/9d4fe00dc1c864434e330933ad97f71c2a516465/config
Defconfig : http://autobuild.buildroot.net/results/9d4fe00dc1c864434e330933ad97f71c2a516465/defconfig
Build 1dcd0252a324e1103104e318bcebec52aa746bed
==============================================
Status : NOK
Failure reason : gettext-0.18.1.1
Architecture : x86_64
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 16:08:03
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/1dcd0252a324e1103104e318bcebec52aa746bed/build-end.log
Complete log : http://autobuild.buildroot.net/results/1dcd0252a324e1103104e318bcebec52aa746bed/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/1dcd0252a324e1103104e318bcebec52aa746bed/config
Defconfig : http://autobuild.buildroot.net/results/1dcd0252a324e1103104e318bcebec52aa746bed/defconfig
Build c89742ea4ec6c761047293cbe0ebbacca2d7ec09
==============================================
Status : NOK
Failure reason : boost-1.52.0
Architecture : mips
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 16:43:04
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/c89742ea4ec6c761047293cbe0ebbacca2d7ec09/build-end.log
Complete log : http://autobuild.buildroot.net/results/c89742ea4ec6c761047293cbe0ebbacca2d7ec09/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/c89742ea4ec6c761047293cbe0ebbacca2d7ec09/config
Defconfig : http://autobuild.buildroot.net/results/c89742ea4ec6c761047293cbe0ebbacca2d7ec09/defconfig
Build e1b978ce5ca321263e5ecb8791e8e03746b28ef5
==============================================
Status : NOK
Failure reason : gd-2.0.35
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-12-14 17:06:47
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/e1b978ce5ca321263e5ecb8791e8e03746b28ef5/build-end.log
Complete log : http://autobuild.buildroot.net/results/e1b978ce5ca321263e5ecb8791e8e03746b28ef5/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/e1b978ce5ca321263e5ecb8791e8e03746b28ef5/config
Defconfig : http://autobuild.buildroot.net/results/e1b978ce5ca321263e5ecb8791e8e03746b28ef5/defconfig
Build 50790c89d84aea1ea6ac0df8d354ae44b6a4ec0e
==============================================
Status : NOK
Failure reason : libnl-3.2.16
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 17:27:01
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/50790c89d84aea1ea6ac0df8d354ae44b6a4ec0e/build-end.log
Complete log : http://autobuild.buildroot.net/results/50790c89d84aea1ea6ac0df8d354ae44b6a4ec0e/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/50790c89d84aea1ea6ac0df8d354ae44b6a4ec0e/config
Defconfig : http://autobuild.buildroot.net/results/50790c89d84aea1ea6ac0df8d354ae44b6a4ec0e/defconfig
Build a0ed2c7c0bb00b1b52bffd6f0851aa01507bb219
==============================================
Status : NOK
Failure reason : webkit-1.2.7
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 17:40:14
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/a0ed2c7c0bb00b1b52bffd6f0851aa01507bb219/build-end.log
Complete log : http://autobuild.buildroot.net/results/a0ed2c7c0bb00b1b52bffd6f0851aa01507bb219/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/a0ed2c7c0bb00b1b52bffd6f0851aa01507bb219/config
Defconfig : http://autobuild.buildroot.net/results/a0ed2c7c0bb00b1b52bffd6f0851aa01507bb219/defconfig
Build 2c60f4218b56f40037c03305b412e33fc7809da0
==============================================
Status : NOK
Failure reason : gd-2.0.35
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-12-14 17:42:35
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/2c60f4218b56f40037c03305b412e33fc7809da0/build-end.log
Complete log : http://autobuild.buildroot.net/results/2c60f4218b56f40037c03305b412e33fc7809da0/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/2c60f4218b56f40037c03305b412e33fc7809da0/config
Defconfig : http://autobuild.buildroot.net/results/2c60f4218b56f40037c03305b412e33fc7809da0/defconfig
Build a26ff443fa4628f48c0924ffd8eb1b3b1814c5d4
==============================================
Status : NOK
Failure reason : gd-2.0.35
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-12-14 17:48:27
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/a26ff443fa4628f48c0924ffd8eb1b3b1814c5d4/build-end.log
Complete log : http://autobuild.buildroot.net/results/a26ff443fa4628f48c0924ffd8eb1b3b1814c5d4/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/a26ff443fa4628f48c0924ffd8eb1b3b1814c5d4/config
Defconfig : http://autobuild.buildroot.net/results/a26ff443fa4628f48c0924ffd8eb1b3b1814c5d4/defconfig
Build 7505bf0ae090909fbe3d5a09a10d9a80ff28632a
==============================================
Status : NOK
Failure reason : mtd-1.5.0
Architecture : mips
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 17:51:21
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/7505bf0ae090909fbe3d5a09a10d9a80ff28632a/build-end.log
Complete log : http://autobuild.buildroot.net/results/7505bf0ae090909fbe3d5a09a10d9a80ff28632a/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/7505bf0ae090909fbe3d5a09a10d9a80ff28632a/config
Defconfig : http://autobuild.buildroot.net/results/7505bf0ae090909fbe3d5a09a10d9a80ff28632a/defconfig
Build 82e2a7339062e0067f34389d3241658b64fc63ef
==============================================
Status : NOK
Failure reason : gettext-0.18.1.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 18:21:37
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/82e2a7339062e0067f34389d3241658b64fc63ef/build-end.log
Complete log : http://autobuild.buildroot.net/results/82e2a7339062e0067f34389d3241658b64fc63ef/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/82e2a7339062e0067f34389d3241658b64fc63ef/config
Defconfig : http://autobuild.buildroot.net/results/82e2a7339062e0067f34389d3241658b64fc63ef/defconfig
Build 6798ed66c8009facfac999d1273b7db69a6dd7b6
==============================================
Status : NOK
Failure reason : libnl-3.2.16
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 18:25:35
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/6798ed66c8009facfac999d1273b7db69a6dd7b6/build-end.log
Complete log : http://autobuild.buildroot.net/results/6798ed66c8009facfac999d1273b7db69a6dd7b6/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/6798ed66c8009facfac999d1273b7db69a6dd7b6/config
Defconfig : http://autobuild.buildroot.net/results/6798ed66c8009facfac999d1273b7db69a6dd7b6/defconfig
Build cf8bc6c550332bba88b555cae3eefcbbd9ebfb8f
==============================================
Status : NOK
Failure reason : gettext-0.18.1.1
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 18:43:54
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/cf8bc6c550332bba88b555cae3eefcbbd9ebfb8f/build-end.log
Complete log : http://autobuild.buildroot.net/results/cf8bc6c550332bba88b555cae3eefcbbd9ebfb8f/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/cf8bc6c550332bba88b555cae3eefcbbd9ebfb8f/config
Defconfig : http://autobuild.buildroot.net/results/cf8bc6c550332bba88b555cae3eefcbbd9ebfb8f/defconfig
Build 57a038bfdeb5dab3d4c7880e5ac1d59ebfda2c61
==============================================
Status : NOK
Failure reason : gettext-0.18.1.1
Architecture : xtensa
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 18:52:02
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/57a038bfdeb5dab3d4c7880e5ac1d59ebfda2c61/build-end.log
Complete log : http://autobuild.buildroot.net/results/57a038bfdeb5dab3d4c7880e5ac1d59ebfda2c61/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/57a038bfdeb5dab3d4c7880e5ac1d59ebfda2c61/config
Defconfig : http://autobuild.buildroot.net/results/57a038bfdeb5dab3d4c7880e5ac1d59ebfda2c61/defconfig
Build 7f81b96cfc542456a8ae69755faf06b71bd0e28a
==============================================
Status : NOK
Failure reason : gettext-0.18.1.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 18:58:29
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/7f81b96cfc542456a8ae69755faf06b71bd0e28a/build-end.log
Complete log : http://autobuild.buildroot.net/results/7f81b96cfc542456a8ae69755faf06b71bd0e28a/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/7f81b96cfc542456a8ae69755faf06b71bd0e28a/config
Defconfig : http://autobuild.buildroot.net/results/7f81b96cfc542456a8ae69755faf06b71bd0e28a/defconfig
Build 41b63bb53a51b0b81be77074e06dcf0642f7c430
==============================================
Status : NOK
Failure reason : gd-2.0.35
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-12-14 19:40:09
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/41b63bb53a51b0b81be77074e06dcf0642f7c430/build-end.log
Complete log : http://autobuild.buildroot.net/results/41b63bb53a51b0b81be77074e06dcf0642f7c430/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/41b63bb53a51b0b81be77074e06dcf0642f7c430/config
Defconfig : http://autobuild.buildroot.net/results/41b63bb53a51b0b81be77074e06dcf0642f7c430/defconfig
Build 0c7f5e6a5fdb43ce15d82e8e3fc3fb7404899e61
==============================================
Status : NOK
Failure reason : gettext-0.18.1.1
Architecture : x86_64
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 19:40:58
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/0c7f5e6a5fdb43ce15d82e8e3fc3fb7404899e61/build-end.log
Complete log : http://autobuild.buildroot.net/results/0c7f5e6a5fdb43ce15d82e8e3fc3fb7404899e61/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/0c7f5e6a5fdb43ce15d82e8e3fc3fb7404899e61/config
Defconfig : http://autobuild.buildroot.net/results/0c7f5e6a5fdb43ce15d82e8e3fc3fb7404899e61/defconfig
Build 714cb2e7e0502d9af4ea51461152670940e6a904
==============================================
Status : NOK
Failure reason : gettext-0.18.1.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 19:42:12
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/714cb2e7e0502d9af4ea51461152670940e6a904/build-end.log
Complete log : http://autobuild.buildroot.net/results/714cb2e7e0502d9af4ea51461152670940e6a904/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/714cb2e7e0502d9af4ea51461152670940e6a904/config
Defconfig : http://autobuild.buildroot.net/results/714cb2e7e0502d9af4ea51461152670940e6a904/defconfig
Build f7be89d2733ee5a2af2cfb22d076348a648bc484
==============================================
Status : NOK
Failure reason : libffi-3.0.11
Architecture : xtensa
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 19:44:44
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/f7be89d2733ee5a2af2cfb22d076348a648bc484/build-end.log
Complete log : http://autobuild.buildroot.net/results/f7be89d2733ee5a2af2cfb22d076348a648bc484/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/f7be89d2733ee5a2af2cfb22d076348a648bc484/config
Defconfig : http://autobuild.buildroot.net/results/f7be89d2733ee5a2af2cfb22d076348a648bc484/defconfig
Build ab168c5e84742ffb52cf39137abe9b9abd22576c
==============================================
Status : NOK
Failure reason : gpsd-3.7
Architecture : x86_64
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 19:54:21
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/ab168c5e84742ffb52cf39137abe9b9abd22576c/build-end.log
Complete log : http://autobuild.buildroot.net/results/ab168c5e84742ffb52cf39137abe9b9abd22576c/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/ab168c5e84742ffb52cf39137abe9b9abd22576c/config
Defconfig : http://autobuild.buildroot.net/results/ab168c5e84742ffb52cf39137abe9b9abd22576c/defconfig
Build 402b3e81dc5e95c4af1d767de377184c8b4f07e3
==============================================
Status : NOK
Failure reason : gettext-0.18.1.1
Architecture : mipsel
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 19:56:32
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/402b3e81dc5e95c4af1d767de377184c8b4f07e3/build-end.log
Complete log : http://autobuild.buildroot.net/results/402b3e81dc5e95c4af1d767de377184c8b4f07e3/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/402b3e81dc5e95c4af1d767de377184c8b4f07e3/config
Defconfig : http://autobuild.buildroot.net/results/402b3e81dc5e95c4af1d767de377184c8b4f07e3/defconfig
Build 717b180c382543cf160a4af8d60be50b08af32d9
==============================================
Status : NOK
Failure reason : gd-2.0.35
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-12-14 20:15:03
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/717b180c382543cf160a4af8d60be50b08af32d9/build-end.log
Complete log : http://autobuild.buildroot.net/results/717b180c382543cf160a4af8d60be50b08af32d9/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/717b180c382543cf160a4af8d60be50b08af32d9/config
Defconfig : http://autobuild.buildroot.net/results/717b180c382543cf160a4af8d60be50b08af32d9/defconfig
Build 9151f348b0c71e9d9a7253e799da701148cfd3e8
==============================================
Status : NOK
Failure reason : gettext-0.18.1.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 20:33:57
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/9151f348b0c71e9d9a7253e799da701148cfd3e8/build-end.log
Complete log : http://autobuild.buildroot.net/results/9151f348b0c71e9d9a7253e799da701148cfd3e8/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/9151f348b0c71e9d9a7253e799da701148cfd3e8/config
Defconfig : http://autobuild.buildroot.net/results/9151f348b0c71e9d9a7253e799da701148cfd3e8/defconfig
Build 07529960a2ccc83a2b379723515f8f21c57da4b8
==============================================
Status : NOK
Failure reason : gettext-0.18.1.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 20:38:17
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/07529960a2ccc83a2b379723515f8f21c57da4b8/build-end.log
Complete log : http://autobuild.buildroot.net/results/07529960a2ccc83a2b379723515f8f21c57da4b8/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/07529960a2ccc83a2b379723515f8f21c57da4b8/config
Defconfig : http://autobuild.buildroot.net/results/07529960a2ccc83a2b379723515f8f21c57da4b8/defconfig
Build 5e7168f381a81c52147d3424bcecac148a93d6b7
==============================================
Status : NOK
Failure reason : gd-2.0.35
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-12-14 20:41:07
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/5e7168f381a81c52147d3424bcecac148a93d6b7/build-end.log
Complete log : http://autobuild.buildroot.net/results/5e7168f381a81c52147d3424bcecac148a93d6b7/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/5e7168f381a81c52147d3424bcecac148a93d6b7/config
Defconfig : http://autobuild.buildroot.net/results/5e7168f381a81c52147d3424bcecac148a93d6b7/defconfig
Build 2460e60ccf8c67e30d7f19c573107f8c401cc6d7
==============================================
Status : NOK
Failure reason : boost-1.52.0
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 20:42:26
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/2460e60ccf8c67e30d7f19c573107f8c401cc6d7/build-end.log
Complete log : http://autobuild.buildroot.net/results/2460e60ccf8c67e30d7f19c573107f8c401cc6d7/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/2460e60ccf8c67e30d7f19c573107f8c401cc6d7/config
Defconfig : http://autobuild.buildroot.net/results/2460e60ccf8c67e30d7f19c573107f8c401cc6d7/defconfig
Build ab3baa3fda2dea59491aad36de0b6e239964e1c1
==============================================
Status : NOK
Failure reason : alsa-lib-1.0.26
Architecture : bfin
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 20:42:53
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/ab3baa3fda2dea59491aad36de0b6e239964e1c1/build-end.log
Complete log : http://autobuild.buildroot.net/results/ab3baa3fda2dea59491aad36de0b6e239964e1c1/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/ab3baa3fda2dea59491aad36de0b6e239964e1c1/config
Defconfig : http://autobuild.buildroot.net/results/ab3baa3fda2dea59491aad36de0b6e239964e1c1/defconfig
Build f96d0571e4e6a3ce88e837ab092fb99efedc92e6
==============================================
Status : NOK
Failure reason : cairo-1.10.2
Architecture : bfin
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 20:44:40
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/f96d0571e4e6a3ce88e837ab092fb99efedc92e6/build-end.log
Complete log : http://autobuild.buildroot.net/results/f96d0571e4e6a3ce88e837ab092fb99efedc92e6/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/f96d0571e4e6a3ce88e837ab092fb99efedc92e6/config
Defconfig : http://autobuild.buildroot.net/results/f96d0571e4e6a3ce88e837ab092fb99efedc92e6/defconfig
Build 5c95e12821157f898b81ac9ea1bd3e01a4725234
==============================================
Status : NOK
Failure reason : gettext-0.18.1.1
Architecture : i686
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 20:45:24
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/5c95e12821157f898b81ac9ea1bd3e01a4725234/build-end.log
Complete log : http://autobuild.buildroot.net/results/5c95e12821157f898b81ac9ea1bd3e01a4725234/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/5c95e12821157f898b81ac9ea1bd3e01a4725234/config
Defconfig : http://autobuild.buildroot.net/results/5c95e12821157f898b81ac9ea1bd3e01a4725234/defconfig
Build 69c6e5d989c457a2b010c3c650aaecf764faed04
==============================================
Status : NOK
Failure reason : gettext-0.18.1.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 20:57:08
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/69c6e5d989c457a2b010c3c650aaecf764faed04/build-end.log
Complete log : http://autobuild.buildroot.net/results/69c6e5d989c457a2b010c3c650aaecf764faed04/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/69c6e5d989c457a2b010c3c650aaecf764faed04/config
Defconfig : http://autobuild.buildroot.net/results/69c6e5d989c457a2b010c3c650aaecf764faed04/defconfig
Build 50dad28536409ebc708298304cd619a070a1e1aa
==============================================
Status : NOK
Failure reason : ltp-testsuite-20101031
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 21:05:15
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/50dad28536409ebc708298304cd619a070a1e1aa/build-end.log
Complete log : http://autobuild.buildroot.net/results/50dad28536409ebc708298304cd619a070a1e1aa/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/50dad28536409ebc708298304cd619a070a1e1aa/config
Defconfig : http://autobuild.buildroot.net/results/50dad28536409ebc708298304cd619a070a1e1aa/defconfig
Build 51ab4cfb558d9be46d40106c51dfd186b7c4b73a
==============================================
Status : NOK
Failure reason : gettext-0.18.1.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 21:07:29
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/51ab4cfb558d9be46d40106c51dfd186b7c4b73a/build-end.log
Complete log : http://autobuild.buildroot.net/results/51ab4cfb558d9be46d40106c51dfd186b7c4b73a/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/51ab4cfb558d9be46d40106c51dfd186b7c4b73a/config
Defconfig : http://autobuild.buildroot.net/results/51ab4cfb558d9be46d40106c51dfd186b7c4b73a/defconfig
Build 86b7dd3b43a48987ababec61c5c28cfd58192e2a
==============================================
Status : NOK
Failure reason : libnl-3.2.16
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 21:09:10
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/86b7dd3b43a48987ababec61c5c28cfd58192e2a/build-end.log
Complete log : http://autobuild.buildroot.net/results/86b7dd3b43a48987ababec61c5c28cfd58192e2a/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/86b7dd3b43a48987ababec61c5c28cfd58192e2a/config
Defconfig : http://autobuild.buildroot.net/results/86b7dd3b43a48987ababec61c5c28cfd58192e2a/defconfig
Build 48e033522b0438c1e5a5ce84ee7731a1fd77c696
==============================================
Status : NOK
Failure reason : alsa-lib-1.0.26
Architecture : bfin
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 21:09:41
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/48e033522b0438c1e5a5ce84ee7731a1fd77c696/build-end.log
Complete log : http://autobuild.buildroot.net/results/48e033522b0438c1e5a5ce84ee7731a1fd77c696/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/48e033522b0438c1e5a5ce84ee7731a1fd77c696/config
Defconfig : http://autobuild.buildroot.net/results/48e033522b0438c1e5a5ce84ee7731a1fd77c696/defconfig
Build 482c8587e86a382bb9d14f9dc8cb3b337598d095
==============================================
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-14 21:11:11
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/482c8587e86a382bb9d14f9dc8cb3b337598d095/build-end.log
Complete log : http://autobuild.buildroot.net/results/482c8587e86a382bb9d14f9dc8cb3b337598d095/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/482c8587e86a382bb9d14f9dc8cb3b337598d095/config
Defconfig : http://autobuild.buildroot.net/results/482c8587e86a382bb9d14f9dc8cb3b337598d095/defconfig
Build e13ab6590afe38b4368e552a147928d578d49565
==============================================
Status : NOK
Failure reason : libffi-3.0.11
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 21:12:42
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/e13ab6590afe38b4368e552a147928d578d49565/build-end.log
Complete log : http://autobuild.buildroot.net/results/e13ab6590afe38b4368e552a147928d578d49565/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/e13ab6590afe38b4368e552a147928d578d49565/config
Defconfig : http://autobuild.buildroot.net/results/e13ab6590afe38b4368e552a147928d578d49565/defconfig
Build 6502af439bc392b67345e6e02d71ff46e348aceb
==============================================
Status : NOK
Failure reason : alsa-lib-1.0.26
Architecture : bfin
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 21:29:26
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/6502af439bc392b67345e6e02d71ff46e348aceb/build-end.log
Complete log : http://autobuild.buildroot.net/results/6502af439bc392b67345e6e02d71ff46e348aceb/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/6502af439bc392b67345e6e02d71ff46e348aceb/config
Defconfig : http://autobuild.buildroot.net/results/6502af439bc392b67345e6e02d71ff46e348aceb/defconfig
Build 2319a70390efd05b521b110e7e9f488ae0ff5090
==============================================
Status : NOK
Failure reason : libnl-3.2.16
Architecture : mips
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 21:51:00
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/2319a70390efd05b521b110e7e9f488ae0ff5090/build-end.log
Complete log : http://autobuild.buildroot.net/results/2319a70390efd05b521b110e7e9f488ae0ff5090/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/2319a70390efd05b521b110e7e9f488ae0ff5090/config
Defconfig : http://autobuild.buildroot.net/results/2319a70390efd05b521b110e7e9f488ae0ff5090/defconfig
Build 2712feef22b57acdd5160eaf1b67b2460346da8e
==============================================
Status : NOK
Failure reason : gettext-0.18.1.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 21:57:54
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/2712feef22b57acdd5160eaf1b67b2460346da8e/build-end.log
Complete log : http://autobuild.buildroot.net/results/2712feef22b57acdd5160eaf1b67b2460346da8e/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/2712feef22b57acdd5160eaf1b67b2460346da8e/config
Defconfig : http://autobuild.buildroot.net/results/2712feef22b57acdd5160eaf1b67b2460346da8e/defconfig
Build 50cb45ca1495e0323eb12a7bfe771ce503c542fd
==============================================
Status : NOK
Failure reason : gd-2.0.35
Architecture : i686
Submitted by : Peter Korsgaard (gcc110)
Submitted at : 2012-12-14 21:58:34
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/50cb45ca1495e0323eb12a7bfe771ce503c542fd/build-end.log
Complete log : http://autobuild.buildroot.net/results/50cb45ca1495e0323eb12a7bfe771ce503c542fd/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/50cb45ca1495e0323eb12a7bfe771ce503c542fd/config
Defconfig : http://autobuild.buildroot.net/results/50cb45ca1495e0323eb12a7bfe771ce503c542fd/defconfig
Build f8f99059245aca89455451d317b58e314b9fbee7
==============================================
Status : NOK
Failure reason : gettext-0.18.1.1
Architecture : sh4
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 22:02:30
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/f8f99059245aca89455451d317b58e314b9fbee7/build-end.log
Complete log : http://autobuild.buildroot.net/results/f8f99059245aca89455451d317b58e314b9fbee7/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/f8f99059245aca89455451d317b58e314b9fbee7/config
Defconfig : http://autobuild.buildroot.net/results/f8f99059245aca89455451d317b58e314b9fbee7/defconfig
Build ac367a770c05c1056781b7edde875e16d5379b54
==============================================
Status : NOK
Failure reason : gpsd-3.7
Architecture : x86_64
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 22:10:31
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/ac367a770c05c1056781b7edde875e16d5379b54/build-end.log
Complete log : http://autobuild.buildroot.net/results/ac367a770c05c1056781b7edde875e16d5379b54/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/ac367a770c05c1056781b7edde875e16d5379b54/config
Defconfig : http://autobuild.buildroot.net/results/ac367a770c05c1056781b7edde875e16d5379b54/defconfig
Build 5059451c7fb689b58c76f280651578ffd49c4abc
==============================================
Status : NOK
Failure reason : gettext-0.18.1.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 22:12:03
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/5059451c7fb689b58c76f280651578ffd49c4abc/build-end.log
Complete log : http://autobuild.buildroot.net/results/5059451c7fb689b58c76f280651578ffd49c4abc/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/5059451c7fb689b58c76f280651578ffd49c4abc/config
Defconfig : http://autobuild.buildroot.net/results/5059451c7fb689b58c76f280651578ffd49c4abc/defconfig
Build 9f16dc4e80345d3f522cb6b471399b4b333d3ef9
==============================================
Status : NOK
Failure reason : boost-1.52.0
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-12-14 22:31:52
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=599b97203012dbdc4a6663be717d6f1162ff26d9
End of log : http://autobuild.buildroot.net/results/9f16dc4e80345d3f522cb6b471399b4b333d3ef9/build-end.log
Complete log : http://autobuild.buildroot.net/results/9f16dc4e80345d3f522cb6b471399b4b333d3ef9/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/9f16dc4e80345d3f522cb6b471399b4b333d3ef9/config
Defconfig : http://autobuild.buildroot.net/results/9f16dc4e80345d3f522cb6b471399b4b333d3ef9/defconfig
Build 31f43d6920783e005106de06d162a83cb9d61672
==============================================
Status : NOK
Failure reason : make: *** [/home/test/test/output1/stamps/ct-ng-toolchain-built] Error 2
Architecture : mipsel
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 23:40:06
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7b6d368960f2e200a3ca4050d6ed1e7b481bb3f5
End of log : http://autobuild.buildroot.net/results/31f43d6920783e005106de06d162a83cb9d61672/build-end.log
Complete log : http://autobuild.buildroot.net/results/31f43d6920783e005106de06d162a83cb9d61672/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/31f43d6920783e005106de06d162a83cb9d61672/config
Defconfig : http://autobuild.buildroot.net/results/31f43d6920783e005106de06d162a83cb9d61672/defconfig
Build a0c17e41556ed34aff1ba56cd66076177061051d
==============================================
Status : NOK
Failure reason : libtirpc-0.2.2
Architecture : microblaze
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 23:43:20
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7b6d368960f2e200a3ca4050d6ed1e7b481bb3f5
End of log : http://autobuild.buildroot.net/results/a0c17e41556ed34aff1ba56cd66076177061051d/build-end.log
Complete log : http://autobuild.buildroot.net/results/a0c17e41556ed34aff1ba56cd66076177061051d/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/a0c17e41556ed34aff1ba56cd66076177061051d/config
Defconfig : http://autobuild.buildroot.net/results/a0c17e41556ed34aff1ba56cd66076177061051d/defconfig
Build d37195d93890fcf14076d4157eaba7d53003f155
==============================================
Status : NOK
Failure reason : libcap-ng-0.6.6
Architecture : avr32
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-14 23:48:12
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=7b6d368960f2e200a3ca4050d6ed1e7b481bb3f5
End of log : http://autobuild.buildroot.net/results/d37195d93890fcf14076d4157eaba7d53003f155/build-end.log
Complete log : http://autobuild.buildroot.net/results/d37195d93890fcf14076d4157eaba7d53003f155/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/d37195d93890fcf14076d4157eaba7d53003f155/config
Defconfig : http://autobuild.buildroot.net/results/d37195d93890fcf14076d4157eaba7d53003f155/defconfig
--
http://autobuild.buildroot.net
^ permalink raw reply
* [Buildroot] [git commit] package: add flashbench
From: Peter Korsgaard @ 2012-12-14 23:58 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=018a49a507fb9354b10ff7afd39e9fe2603cab4e
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
package/Config.in | 1 +
package/flashbench/Config.in | 14 ++++++++++++++
package/flashbench/flashbench.mk | 22 ++++++++++++++++++++++
3 files changed, 37 insertions(+), 0 deletions(-)
diff --git a/package/Config.in b/package/Config.in
index dbb6704..7607e97 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -182,6 +182,7 @@ source "package/cifs-utils/Config.in"
source "package/cramfs/Config.in"
source "package/dosfstools/Config.in"
source "package/e2fsprogs/Config.in"
+source "package/flashbench/Config.in"
source "package/genext2fs/Config.in"
source "package/genromfs/Config.in"
source "package/makedevs/Config.in"
diff --git a/package/flashbench/Config.in b/package/flashbench/Config.in
new file mode 100644
index 0000000..39cdb1d
--- /dev/null
+++ b/package/flashbench/Config.in
@@ -0,0 +1,14 @@
+config BR2_PACKAGE_FLASHBENCH
+ bool "flashbench"
+ depends on BR2_LARGEFILE
+ help
+ Flashbench - Identify characteristics of flash media.
+
+ This is the tool used to identify the properties of
+ SD cards and other media for the Linaro flash memory
+ survey.
+
+ https://wiki.linaro.org/WorkingGroups/KernelConsolidation/Projects/FlashCardSurvey
+
+comment "flashbench requires a toolchain with LARGEFILE support"
+ depends on !BR2_LARGEFILE
diff --git a/package/flashbench/flashbench.mk b/package/flashbench/flashbench.mk
new file mode 100644
index 0000000..ead1346
--- /dev/null
+++ b/package/flashbench/flashbench.mk
@@ -0,0 +1,22 @@
+#############################################################
+#
+# flashbench
+#
+#############################################################
+
+FLASHBENCH_VERSION = 2e30b1968a66147412f21002ea844122a0d5e2f0
+FLASHBENCH_SITE = git://git.linaro.org/people/arnd/flashbench.git
+FLASHBENCH_LICENSE = GPLv2
+FLASHBENCH_LICENSE_FILES = COPYING
+
+define FLASHBENCH_BUILD_CMDS
+ $(MAKE) -C $(@D) $(TARGET_CONFIGURE_OPTS) \
+ LDFLAGS="$(TARGET_LDFLAGS) -lrt"
+endef
+
+define FLASHBENCH_INSTALL_TARGET_CMDS
+ $(INSTALL) -m 755 -D $(@D)/flashbench $(TARGET_DIR)/usr/bin/flashbench
+ $(INSTALL) -m 755 -D $(@D)/erase $(TARGET_DIR)/usr/bin/erase
+endef
+
+$(eval $(generic-package))
^ permalink raw reply related
* [Buildroot] buildroot 2012.11 and crosstooln-ng
From: FLX @ 2012-12-14 23:24 UTC (permalink / raw)
To: buildroot
Hello,
I have noticed a bug in 2012.11.
If you use crosstool-ng toolchain (i used eglibc) then libc is not copied
to target.
2012.08 is ok.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20121215/81ef855e/attachment.html>
^ permalink raw reply
* [Buildroot] [git commit] opus-tools: bump version
From: Peter Korsgaard @ 2012-12-14 23:07 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=ee094dd16f78e27d1c53094b3267fd0d3e6d54d9
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
.../opus-tools-fix-compilation-on-non-win.patch | 53 --------------------
package/opus-tools/opus-tools-largefile.patch | 37 ++++++++++++++
package/opus-tools/opus-tools.mk | 2 +-
3 files changed, 38 insertions(+), 54 deletions(-)
diff --git a/package/opus-tools/opus-tools-fix-compilation-on-non-win.patch b/package/opus-tools/opus-tools-fix-compilation-on-non-win.patch
deleted file mode 100644
index c8cb6a2..0000000
--- a/package/opus-tools/opus-tools-fix-compilation-on-non-win.patch
+++ /dev/null
@@ -1,53 +0,0 @@
-From 7734f55bc535c6d3d0fbb27c55e38f52ba6b7764 Mon Sep 17 00:00:00 2001
-From: Andreas Schlick <schlick@lavabit.com>
-Date: Thu, 13 Sep 2012 19:44:50 +0200
-Subject: [PATCH] Fix compilation on non-Windows x86-32 w/ -msse.
-
-cpusupport.h used __cpuid() from the Windows specific header file intrin.h
-which is not available under gcc. But we can use __get_cpuid() from cpuid.h
-instead.
-
-Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
-
----
- src/cpusupport.h | 18 +++++++++++++++++-
- 1 files changed, 17 insertions(+), 1 deletions(-)
-
-diff --git a/src/cpusupport.h b/src/cpusupport.h
-index 1986d31..5e42337 100644
---- a/src/cpusupport.h
-+++ b/src/cpusupport.h
-@@ -32,7 +32,9 @@
- # if !defined(__SSE__) || defined(_M_X64) || defined(__amd64__)
- # define query_cpu_support() 0
- #else
--# include <intrin.h>
-+
-+#if defined WIN32 || defined _WIN32
-+#include <intrin.h>
- static inline int query_cpu_support(void)
- {
- int buffer[4];
-@@ -43,5 +45,19 @@ static inline int query_cpu_support(void)
- # endif
- ;
- }
-+#else
-+#include <cpuid.h>
-+static inline int query_cpu_support(void)
-+{
-+ unsigned int eax, ebx, ecx, edx=0;
-+ __get_cpuid(1, &eax, &ebx, &ecx, &edx);
-+ return ((edx & 1<<25) == 0) /*SSE*/
-+#ifdef __SSE2__
-+ + ((edx & 1<<26) == 0) /*SSE2*/
-+#endif
-+ ;
-+}
-+#endif
-+
- # endif
- #endif
---
-1.7.2.5
-
diff --git a/package/opus-tools/opus-tools-largefile.patch b/package/opus-tools/opus-tools-largefile.patch
new file mode 100644
index 0000000..a10fcbc
--- /dev/null
+++ b/package/opus-tools/opus-tools-largefile.patch
@@ -0,0 +1,37 @@
+From f1d9376b383f4ee7ec2d7c5a1728d38cdb692df6 Mon Sep 17 00:00:00 2001
+From: Peter Korsgaard <jacmet@sunsite.dk>
+Date: Sat, 15 Dec 2012 00:05:41 +0100
+Subject: [PATCH] audio-in.c: Don't force largefile support
+
+Buildroot ensures the correct defines are enabled depending on toolchain
+configuration, so don't hard code largefile support here.
+
+Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
+---
+ src/audio-in.c | 10 ----------
+ 1 file changed, 10 deletions(-)
+
+diff --git a/src/audio-in.c b/src/audio-in.c
+index 9bf4f6f..e404629 100644
+--- a/src/audio-in.c
++++ b/src/audio-in.c
+@@ -32,16 +32,6 @@
+ # include <config.h>
+ #endif
+
+-#if !defined(_LARGEFILE_SOURCE)
+-# define _LARGEFILE_SOURCE
+-#endif
+-#if !defined(_LARGEFILE64_SOURCE)
+-# define _LARGEFILE64_SOURCE
+-#endif
+-#if !defined(_FILE_OFFSET_BITS)
+-# define _FILE_OFFSET_BITS 64
+-#endif
+-
+ #include <stdlib.h>
+ #include <stdio.h>
+ #include <string.h>
+--
+1.7.10.4
+
diff --git a/package/opus-tools/opus-tools.mk b/package/opus-tools/opus-tools.mk
index 2b649dc..7ee708f 100644
--- a/package/opus-tools/opus-tools.mk
+++ b/package/opus-tools/opus-tools.mk
@@ -4,7 +4,7 @@
#
#############################################################
-OPUS_TOOLS_VERSION = 0.1.5
+OPUS_TOOLS_VERSION = 0.1.6
OPUS_TOOLS_SITE = http://downloads.xiph.org/releases/opus
OPUS_TOOLS_CONF_OPT = --disable-oggtest --disable-opustest
OPUS_TOOLS_DEPENDENCIES = opus libogg host-pkgconf
^ permalink raw reply related
* [Buildroot] [git commit] opus: bump version
From: Peter Korsgaard @ 2012-12-14 22:55 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=df6e849d4ed3bfcac50cf2bd9c94fabd7545fb68
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
package/opus/opus.mk | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/package/opus/opus.mk b/package/opus/opus.mk
index 177adfb..adaebfb 100644
--- a/package/opus/opus.mk
+++ b/package/opus/opus.mk
@@ -4,7 +4,7 @@
#
#############################################################
-OPUS_VERSION = 1.0.1
+OPUS_VERSION = 1.0.2
OPUS_SITE = http://downloads.xiph.org/releases/opus
OPUS_INSTALL_STAGING = YES
OPUS_CONF_OPT = --disable-doc
^ permalink raw reply related
* [Buildroot] [PATCH 03/20] package/usbredir: new package
From: Peter Korsgaard @ 2012-12-14 21:47 UTC (permalink / raw)
To: buildroot
In-Reply-To: <201212142245.53802.yann.morin.1998@free.fr>
>>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:
>> I would prefer you select libusb.
Yann> Grudgingly done. ;-)
Thanks ;)
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [PATCH 03/20] package/usbredir: new package
From: Yann E. MORIN @ 2012-12-14 21:45 UTC (permalink / raw)
To: buildroot
In-Reply-To: <87ip84isg2.fsf@dell.be.48ers.dk>
Peter, All,
On Friday 14 December 2012 Peter Korsgaard wrote:
> >>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:
>
> Yann> +comment "usbredir requires libusb"
> Yann> + depends on !BR2_PACKAGE_LIBUSB
> Yann> +
> >>
> >> We normally use select for libraries. Any reason to not use it here?
>
> Yann> libusb depends on threads, and I do not want to play the game of
> Yann> inheriting the dependencies of my own dependencies, and reproduce
> Yann> the libffi mess.
>
> Yann> libusb has a dependency I can not select, so I just depend on it.
[--SNIP--]
> I would prefer you select libusb.
Grudgingly done. ;-)
Regards,
Yann E. MORIN.
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply
* [Buildroot] [PATCH] gettext: fix build failure with locale and uclibc
From: Peter Korsgaard @ 2012-12-14 21:24 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1355512517-24342-1-git-send-email-gustavo@zacarias.com.ar>
>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:
Gustavo> As reported by Johan Sagaert in the mailing list, if it's
Gustavo> building with a uClibc toolchain with locale enabled the build
Gustavo> fails since the new gettext does a locale hack for glibc which
Gustavo> isn't needed nor supported.
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [git commit] gettext: fix build failure with locale and uclibc
From: Peter Korsgaard @ 2012-12-14 21:24 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=7b6d368960f2e200a3ca4050d6ed1e7b481bb3f5
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
As reported by Johan Sagaert in the mailing list, if it's building with
a uClibc toolchain with locale enabled the build fails since the new
gettext does a locale hack for glibc which isn't needed nor supported.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
package/gettext/gettext-uclibc-compat.patch | 27 +++++++++++++++++++++++++++
1 files changed, 27 insertions(+), 0 deletions(-)
diff --git a/package/gettext/gettext-uclibc-compat.patch b/package/gettext/gettext-uclibc-compat.patch
new file mode 100644
index 0000000..5e52665
--- /dev/null
+++ b/package/gettext/gettext-uclibc-compat.patch
@@ -0,0 +1,27 @@
+The glibc fix/hack isn't valid for uClibc.
+Patch taken from OpenWRT.
+
+Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
+
+--- a/gettext-runtime/intl/localename.c
++++ b/gettext-runtime/intl/localename.c
+@@ -2607,7 +2607,7 @@ gl_locale_name_thread_unsafe (int catego
+ locale_t thread_locale = uselocale (NULL);
+ if (thread_locale != LC_GLOBAL_LOCALE)
+ {
+-# if __GLIBC__ >= 2
++# if __GLIBC__ >= 2 && !defined __UCLIBC__
+ /* Work around an incorrect definition of the _NL_LOCALE_NAME macro in
+ glibc < 2.12.
+ See <http://sourceware.org/bugzilla/show_bug.cgi?id=10968>. */
+--- a/gettext-tools/gnulib-lib/localename.c
++++ b/gettext-tools/gnulib-lib/localename.c
+@@ -2607,7 +2607,7 @@ gl_locale_name_thread_unsafe (int catego
+ locale_t thread_locale = uselocale (NULL);
+ if (thread_locale != LC_GLOBAL_LOCALE)
+ {
+-# if __GLIBC__ >= 2
++# if __GLIBC__ >= 2 && !defined __UCLIBC__
+ /* Work around an incorrect definition of the _NL_LOCALE_NAME macro in
+ glibc < 2.12.
+ See <http://sourceware.org/bugzilla/show_bug.cgi?id=10968>. */
^ permalink raw reply related
* [Buildroot] [PATCH 01/20] package/vde2: new package
From: Yann E. MORIN @ 2012-12-14 21:12 UTC (permalink / raw)
To: buildroot
In-Reply-To: <87vcc4j0h7.fsf@dell.be.48ers.dk>
Peter, All,
On Friday 14 December 2012 Peter Korsgaard wrote:
> Yann> diff --git a/package/vde2/Config.in b/package/vde2/Config.in
> Yann> new file mode 100644
> Yann> index 0000000..f344d67
> Yann> --- /dev/null
> Yann> +++ b/package/vde2/Config.in
> Yann> @@ -0,0 +1,10 @@
> Yann> +config BR2_PACKAGE_VDE2
> Yann> + bool "vde2"
> Yann> + help
> Yann> + VDE is an ethernet compliant virtual network that can be
> Yann> + spawned over a set of physical computers over the Internet.
> Yann> + VDE is part of the virtualsquare project.
> Yann> +
> Yann> + http://vde.sourceforge.net/
> Yann> +
> Yann> + Note: only the libraries are installed.
>
> Wouldn't it then make more sense to put it under Libraries ->
> Networking?
Nope, we also install the executable to drive the VDE switches. I'll remove
that sentenc from the help text, and leave vde2 in "Network Applications".
> A quick test build seems to show that it needs C++ support:
>
> checking whether the C++ compiler works... no
> configure: error: in `/home/peko/source/buildroot/vdetest/build/vde2-2.3.2':
> configure: error: C++ compiler cannot create executables
> See `config.log' for more details
>
> I don't see any C++ source files though, so it's probably better to drop
> AC_PROG_CXX from configure.ac
Yup, fixed.
Thank you!
Regards,
Yann E. MORIN.
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply
* [Buildroot] [PATCH] gettext: bump to version 0.18.1.1
From: Stefan Fröberg @ 2012-12-14 21:05 UTC (permalink / raw)
To: buildroot
In-Reply-To: <50CB93AD.20303@petroprogram.com>
Oh sorry, it seems that Gustavo was faster than I providing patch for this
:)
14.12.2012 23:01, Stefan Fr?berg kirjoitti:
> Hello Johan
>
> 14.12.2012 20:08, Sagaert Johan kirjoitti:
>> Hi
>>
>> After pulling the latest commits :
>>
>> libtool: compile: /home/buildroot12git/output/host/usr/bin/arm-buildroot-linux-uclibcgnueabi-gcc -c
>> -DLOCALEDIR=\"/usr/share/locale\" -DLOCALE_ALIAS_PATH=\"/usr/share/locale\" -DLIBDIR=\"/usr/lib\" -DBUILDING_LIBINTL -DBUILDING_DLL
>> -DIN_LIBINTL -DENABLE_RELOCATABLE=1 -DIN_LIBRARY -DINSTALLDIR=\"/usr/lib\" -DNO_XMALLOC
>> -Dset_relocation_prefix=libintl_set_relocation_prefix -Drelocate=libintl_relocate -DDEPENDS_ON_LIBICONV=1 -DHAVE_CONFIG_H -I. -I.
>> -I.. -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE
>> -D_FILE_OFFSET_BITS=64 -pipe -Os -fvisibility=hidden ./printf.c -o printf.o >/dev/null 2>&1
>> ./localename.c: In function '_nl_locale_name_thread_unsafe':
>> ./localename.c:2619:31: error: dereferencing pointer to incomplete type
>> make[4]: *** [localename.lo] Error 1
>> make[4]: *** Waiting for unfinished jobs....
>>
>> Using uClibc 0.9.33.1 (NTPL)
>>
>> Regards , Johan
>>
> Hmmm...
> That sounds familiar. If I remember correctly I hit exactly into same
> problem in my own Linux distro
> some time ago.
>
> Could you please try the following lil patch ?
> (I will include it as an separete attachment here also)
>
> diff --git a/gettext-runtime/intl/localename.c
> b/gettext-runtime/intl/localename.c
> index 89a9692..5e86bc4 100644
> --- a/gettext-runtime/intl/localename.c
> +++ b/gettext-runtime/intl/localename.c
> @@ -2607,7 +2607,7 @@ gl_locale_name_thread_unsafe (int category, const
> char *categoryname)
> locale_t thread_locale = uselocale (NULL);
> if (thread_locale != LC_GLOBAL_LOCALE)
> {
> -# if __GLIBC__ >= 2
> +# if __GLIBC__ >= 2 && !defined __UCLIBC__
> /* Work around an incorrect definition of the _NL_LOCALE_NAME
> macro in
> glibc < 2.12.
> See <http://sourceware.org/bugzilla/show_bug.cgi?id=10968>. */
> diff --git a/gettext-tools/gnulib-lib/localename.c
> b/gettext-tools/gnulib-lib/localename.c
> index dab5e5b..85149ac 100644
> --- a/gettext-tools/gnulib-lib/localename.c
> +++ b/gettext-tools/gnulib-lib/localename.c
> @@ -2607,7 +2607,7 @@ gl_locale_name_thread_unsafe (int category, const
> char *categoryname)
> locale_t thread_locale = uselocale (NULL);
> if (thread_locale != LC_GLOBAL_LOCALE)
> {
> -# if __GLIBC__ >= 2
> +# if __GLIBC__ >= 2 && !defined __UCLIBC__
> /* Work around an incorrect definition of the _NL_LOCALE_NAME
> macro in
> glibc < 2.12.
> See <http://sourceware.org/bugzilla/show_bug.cgi?id=10968>. */
>
> Regards
> Stefan
>
>
>> -----Oorspronkelijk bericht-----
>> Van: buildroot-bounces at busybox.net [mailto:buildroot-bounces at busybox.net] Namens Peter Korsgaard
>> Verzonden: vrijdag 14 december 2012 12:03
>> Aan: Gustavo Zacarias
>> CC: buildroot at busybox.net
>> Onderwerp: Re: [Buildroot] [PATCH] gettext: bump to version 0.18.1.1
>>
>>>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:
>> Gustavo> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
>>
>> Committed, thanks.
>>
>> --
>> Bye, Peter Korsgaard
>> _______________________________________________
>> buildroot mailing list
>> buildroot at busybox.net
>> http://lists.busybox.net/mailman/listinfo/buildroot
>>
>> _______________________________________________
>> buildroot mailing list
>> buildroot at busybox.net
>> http://lists.busybox.net/mailman/listinfo/buildroot
>
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20121214/16325071/attachment.html>
^ permalink raw reply
* [Buildroot] [PATCH] gettext: bump to version 0.18.1.1
From: Stefan Fröberg @ 2012-12-14 21:01 UTC (permalink / raw)
To: buildroot
In-Reply-To: <A30A1B4688B14FF0A9174D8D473754CD@JohanW7>
Hello Johan
14.12.2012 20:08, Sagaert Johan kirjoitti:
> Hi
>
> After pulling the latest commits :
>
> libtool: compile: /home/buildroot12git/output/host/usr/bin/arm-buildroot-linux-uclibcgnueabi-gcc -c
> -DLOCALEDIR=\"/usr/share/locale\" -DLOCALE_ALIAS_PATH=\"/usr/share/locale\" -DLIBDIR=\"/usr/lib\" -DBUILDING_LIBINTL -DBUILDING_DLL
> -DIN_LIBINTL -DENABLE_RELOCATABLE=1 -DIN_LIBRARY -DINSTALLDIR=\"/usr/lib\" -DNO_XMALLOC
> -Dset_relocation_prefix=libintl_set_relocation_prefix -Drelocate=libintl_relocate -DDEPENDS_ON_LIBICONV=1 -DHAVE_CONFIG_H -I. -I.
> -I.. -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE
> -D_FILE_OFFSET_BITS=64 -pipe -Os -fvisibility=hidden ./printf.c -o printf.o >/dev/null 2>&1
> ./localename.c: In function '_nl_locale_name_thread_unsafe':
> ./localename.c:2619:31: error: dereferencing pointer to incomplete type
> make[4]: *** [localename.lo] Error 1
> make[4]: *** Waiting for unfinished jobs....
>
> Using uClibc 0.9.33.1 (NTPL)
>
> Regards , Johan
>
Hmmm...
That sounds familiar. If I remember correctly I hit exactly into same
problem in my own Linux distro
some time ago.
Could you please try the following lil patch ?
(I will include it as an separete attachment here also)
diff --git a/gettext-runtime/intl/localename.c
b/gettext-runtime/intl/localename.c
index 89a9692..5e86bc4 100644
--- a/gettext-runtime/intl/localename.c
+++ b/gettext-runtime/intl/localename.c
@@ -2607,7 +2607,7 @@ gl_locale_name_thread_unsafe (int category, const
char *categoryname)
locale_t thread_locale = uselocale (NULL);
if (thread_locale != LC_GLOBAL_LOCALE)
{
-# if __GLIBC__ >= 2
+# if __GLIBC__ >= 2 && !defined __UCLIBC__
/* Work around an incorrect definition of the _NL_LOCALE_NAME
macro in
glibc < 2.12.
See <http://sourceware.org/bugzilla/show_bug.cgi?id=10968>. */
diff --git a/gettext-tools/gnulib-lib/localename.c
b/gettext-tools/gnulib-lib/localename.c
index dab5e5b..85149ac 100644
--- a/gettext-tools/gnulib-lib/localename.c
+++ b/gettext-tools/gnulib-lib/localename.c
@@ -2607,7 +2607,7 @@ gl_locale_name_thread_unsafe (int category, const
char *categoryname)
locale_t thread_locale = uselocale (NULL);
if (thread_locale != LC_GLOBAL_LOCALE)
{
-# if __GLIBC__ >= 2
+# if __GLIBC__ >= 2 && !defined __UCLIBC__
/* Work around an incorrect definition of the _NL_LOCALE_NAME
macro in
glibc < 2.12.
See <http://sourceware.org/bugzilla/show_bug.cgi?id=10968>. */
Regards
Stefan
>
> -----Oorspronkelijk bericht-----
> Van: buildroot-bounces at busybox.net [mailto:buildroot-bounces at busybox.net] Namens Peter Korsgaard
> Verzonden: vrijdag 14 december 2012 12:03
> Aan: Gustavo Zacarias
> CC: buildroot at busybox.net
> Onderwerp: Re: [Buildroot] [PATCH] gettext: bump to version 0.18.1.1
>
>>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:
> Gustavo> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
>
> Committed, thanks.
>
> --
> Bye, Peter Korsgaard
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
-------------- next part --------------
diff --git a/gettext-runtime/intl/localename.c b/gettext-runtime/intl/localename.c
index 89a9692..5e86bc4 100644
--- a/gettext-runtime/intl/localename.c
+++ b/gettext-runtime/intl/localename.c
@@ -2607,7 +2607,7 @@ gl_locale_name_thread_unsafe (int category, const char *categoryname)
locale_t thread_locale = uselocale (NULL);
if (thread_locale != LC_GLOBAL_LOCALE)
{
-# if __GLIBC__ >= 2
+# if __GLIBC__ >= 2 && !defined __UCLIBC__
/* Work around an incorrect definition of the _NL_LOCALE_NAME macro in
glibc < 2.12.
See <http://sourceware.org/bugzilla/show_bug.cgi?id=10968>. */
diff --git a/gettext-tools/gnulib-lib/localename.c b/gettext-tools/gnulib-lib/localename.c
index dab5e5b..85149ac 100644
--- a/gettext-tools/gnulib-lib/localename.c
+++ b/gettext-tools/gnulib-lib/localename.c
@@ -2607,7 +2607,7 @@ gl_locale_name_thread_unsafe (int category, const char *categoryname)
locale_t thread_locale = uselocale (NULL);
if (thread_locale != LC_GLOBAL_LOCALE)
{
-# if __GLIBC__ >= 2
+# if __GLIBC__ >= 2 && !defined __UCLIBC__
/* Work around an incorrect definition of the _NL_LOCALE_NAME macro in
glibc < 2.12.
See <http://sourceware.org/bugzilla/show_bug.cgi?id=10968>. */
^ permalink raw reply related
* [Buildroot] [PATCH] gettext: bump to version 0.18.1.1
From: Gustavo Zacarias @ 2012-12-14 19:16 UTC (permalink / raw)
To: buildroot
In-Reply-To: <E47E6E48A97345C3A1DB1002FEE1CBB6@JohanW7>
On 12/14/2012 03:27 PM, Sagaert Johan wrote:
> Hi
>
> Oops it is uClibc 0.9.33.2 that I use.
> Here my buildroot .config and my uClibc config file:
Hi.
Patch sent to the list, thanks for the headsup!
Regards.
^ permalink raw reply
* [Buildroot] [PATCH] gettext: fix build failure with locale and uclibc
From: Gustavo Zacarias @ 2012-12-14 19:15 UTC (permalink / raw)
To: buildroot
As reported by Johan Sagaert in the mailing list, if it's building with
a uClibc toolchain with locale enabled the build fails since the new
gettext does a locale hack for glibc which isn't needed nor supported.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
package/gettext/gettext-uclibc-compat.patch | 27 +++++++++++++++++++++++++++
1 files changed, 27 insertions(+), 0 deletions(-)
create mode 100644 package/gettext/gettext-uclibc-compat.patch
diff --git a/package/gettext/gettext-uclibc-compat.patch b/package/gettext/gettext-uclibc-compat.patch
new file mode 100644
index 0000000..5e52665
--- /dev/null
+++ b/package/gettext/gettext-uclibc-compat.patch
@@ -0,0 +1,27 @@
+The glibc fix/hack isn't valid for uClibc.
+Patch taken from OpenWRT.
+
+Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
+
+--- a/gettext-runtime/intl/localename.c
++++ b/gettext-runtime/intl/localename.c
+@@ -2607,7 +2607,7 @@ gl_locale_name_thread_unsafe (int catego
+ locale_t thread_locale = uselocale (NULL);
+ if (thread_locale != LC_GLOBAL_LOCALE)
+ {
+-# if __GLIBC__ >= 2
++# if __GLIBC__ >= 2 && !defined __UCLIBC__
+ /* Work around an incorrect definition of the _NL_LOCALE_NAME macro in
+ glibc < 2.12.
+ See <http://sourceware.org/bugzilla/show_bug.cgi?id=10968>. */
+--- a/gettext-tools/gnulib-lib/localename.c
++++ b/gettext-tools/gnulib-lib/localename.c
+@@ -2607,7 +2607,7 @@ gl_locale_name_thread_unsafe (int catego
+ locale_t thread_locale = uselocale (NULL);
+ if (thread_locale != LC_GLOBAL_LOCALE)
+ {
+-# if __GLIBC__ >= 2
++# if __GLIBC__ >= 2 && !defined __UCLIBC__
+ /* Work around an incorrect definition of the _NL_LOCALE_NAME macro in
+ glibc < 2.12.
+ See <http://sourceware.org/bugzilla/show_bug.cgi?id=10968>. */
--
1.7.8.6
^ permalink raw reply related
* [Buildroot] [PATCH 4/4] package/qemu: bump version
From: Yann E. MORIN @ 2012-12-14 18:28 UTC (permalink / raw)
To: buildroot
In-Reply-To: <CAB0FRsv7=iuBTxoeUe_7a5Zh_zCRovj9JZ_k_Qku-xmMGgOUeQ@mail.gmail.com>
Fran?ois, All,
On Friday 14 December 2012 Fran?ois Perrad wrote:
> 2012/12/13 Yann E. MORIN <yann.morin.1998@free.fr>:
> > Bump QEMU to 1.2.1.
> >
> > Note: 1.3.0 is out now, but ./configure has changed a bit, and there are
> > new dependencies, so the bump to 1.3.0 is postponed for a litle while...
> >
>
> a version 1.2.2 is also available.
Ah, 1.2.2 has just been released two days ago, indeed.
Thanks for the heads up.
> with version 1.3.0, host-qemu depends on host-pixman.
Yep, upgrading to 1.3.0 is on my todo-list, as it adds a few bits I'm
interested in.
Upgrading to 1.3.0 now would make it more complex to review the whole
series, and it is not even easy right now.
So, that will have to wait for after the current series has been upstreamed.
Regards,
Yann E. MORIN.
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply
* [Buildroot] [PATCH] gettext: bump to version 0.18.1.1
From: Gustavo Zacarias @ 2012-12-14 18:12 UTC (permalink / raw)
To: buildroot
In-Reply-To: <A30A1B4688B14FF0A9174D8D473754CD@JohanW7>
On 12/14/2012 03:08 PM, Sagaert Johan wrote:
> Hi
>
> After pulling the latest commits :
>
> libtool: compile: /home/buildroot12git/output/host/usr/bin/arm-buildroot-linux-uclibcgnueabi-gcc -c
> -DLOCALEDIR=\"/usr/share/locale\" -DLOCALE_ALIAS_PATH=\"/usr/share/locale\" -DLIBDIR=\"/usr/lib\" -DBUILDING_LIBINTL -DBUILDING_DLL
> -DIN_LIBINTL -DENABLE_RELOCATABLE=1 -DIN_LIBRARY -DINSTALLDIR=\"/usr/lib\" -DNO_XMALLOC
> -Dset_relocation_prefix=libintl_set_relocation_prefix -Drelocate=libintl_relocate -DDEPENDS_ON_LIBICONV=1 -DHAVE_CONFIG_H -I. -I.
> -I.. -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE
> -D_FILE_OFFSET_BITS=64 -pipe -Os -fvisibility=hidden ./printf.c -o printf.o >/dev/null 2>&1
> ./localename.c: In function '_nl_locale_name_thread_unsafe':
> ./localename.c:2619:31: error: dereferencing pointer to incomplete type
> make[4]: *** [localename.lo] Error 1
> make[4]: *** Waiting for unfinished jobs....
>
> Using uClibc 0.9.33.1 (NTPL)
>
> Regards , Johan
.config please
And 0.9.33.1? That's not current.
Regards.
^ permalink raw reply
* [Buildroot] [PATCH] gettext: bump to version 0.18.1.1
From: Sagaert Johan @ 2012-12-14 18:08 UTC (permalink / raw)
To: buildroot
In-Reply-To: <871ueskiar.fsf@dell.be.48ers.dk>
Hi
After pulling the latest commits :
libtool: compile: /home/buildroot12git/output/host/usr/bin/arm-buildroot-linux-uclibcgnueabi-gcc -c
-DLOCALEDIR=\"/usr/share/locale\" -DLOCALE_ALIAS_PATH=\"/usr/share/locale\" -DLIBDIR=\"/usr/lib\" -DBUILDING_LIBINTL -DBUILDING_DLL
-DIN_LIBINTL -DENABLE_RELOCATABLE=1 -DIN_LIBRARY -DINSTALLDIR=\"/usr/lib\" -DNO_XMALLOC
-Dset_relocation_prefix=libintl_set_relocation_prefix -Drelocate=libintl_relocate -DDEPENDS_ON_LIBICONV=1 -DHAVE_CONFIG_H -I. -I.
-I.. -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE
-D_FILE_OFFSET_BITS=64 -pipe -Os -fvisibility=hidden ./printf.c -o printf.o >/dev/null 2>&1
./localename.c: In function '_nl_locale_name_thread_unsafe':
./localename.c:2619:31: error: dereferencing pointer to incomplete type
make[4]: *** [localename.lo] Error 1
make[4]: *** Waiting for unfinished jobs....
Using uClibc 0.9.33.1 (NTPL)
Regards , Johan
-----Oorspronkelijk bericht-----
Van: buildroot-bounces at busybox.net [mailto:buildroot-bounces at busybox.net] Namens Peter Korsgaard
Verzonden: vrijdag 14 december 2012 12:03
Aan: Gustavo Zacarias
CC: buildroot at busybox.net
Onderwerp: Re: [Buildroot] [PATCH] gettext: bump to version 0.18.1.1
>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:
Gustavo> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Committed, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot at busybox.net
http://lists.busybox.net/mailman/listinfo/buildroot
^ permalink raw reply
* [Buildroot] [PATCH 4/4] package/qemu: bump version
From: François Perrad @ 2012-12-14 15:40 UTC (permalink / raw)
To: buildroot
In-Reply-To: <b868ae7c3562ef5dd3b7027f28dc7f0ebba3b440.1355434710.git.yann.morin.1998@free.fr>
2012/12/13 Yann E. MORIN <yann.morin.1998@free.fr>:
> Bump QEMU to 1.2.1.
>
> Note: 1.3.0 is out now, but ./configure has changed a bit, and there are
> new dependencies, so the bump to 1.3.0 is postponed for a litle while...
>
a version 1.2.2 is also available.
with version 1.3.0, host-qemu depends on host-pixman.
Fran?ois
> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
> Cc: Francois Perrad <fperrad@gmail.com>
> ---
> package/qemu/qemu.mk | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/package/qemu/qemu.mk b/package/qemu/qemu.mk
> index 91d0eb8..241a392 100644
> --- a/package/qemu/qemu.mk
> +++ b/package/qemu/qemu.mk
> @@ -4,7 +4,7 @@
> #
> #############################################################
>
> -QEMU_VERSION = 1.2.0
> +QEMU_VERSION = 1.2.1
> 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
> --
> 1.7.2.5
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
^ permalink raw reply
* [Buildroot] [PATCH] qemu: bump to version 1.3.0
From: Francois Perrad @ 2012-12-14 15:40 UTC (permalink / raw)
To: buildroot
Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
---
package/qemu/qemu.mk | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/package/qemu/qemu.mk b/package/qemu/qemu.mk
index 8d07807..7d1d252 100644
--- a/package/qemu/qemu.mk
+++ b/package/qemu/qemu.mk
@@ -4,7 +4,7 @@
#
#############################################################
-QEMU_VERSION = 1.2.1
+QEMU_VERSION = 1.3.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
@@ -16,7 +16,7 @@ QEMU_LICENSE_FILES = COPYING COPYING.LIB
#-------------------------------------------------------------
# Host-qemu
-HOST_QEMU_DEPENDENCIES = host-pkgconf host-zlib host-libglib2
+HOST_QEMU_DEPENDENCIES = host-pkgconf host-zlib host-libglib2 host-pixman
# BR ARCH qemu
# ------- ----
--
1.7.9.5
^ permalink raw reply related
* [Buildroot] [PATCH 03/20] package/usbredir: new package
From: Peter Korsgaard @ 2012-12-14 15:06 UTC (permalink / raw)
To: buildroot
In-Reply-To: <201212141401.11951.yann.morin.1998@free.fr>
>>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:
Yann> +comment "usbredir requires libusb"
Yann> + depends on !BR2_PACKAGE_LIBUSB
Yann> +
>>
>> We normally use select for libraries. Any reason to not use it here?
Yann> libusb depends on threads, and I do not want to play the game of
Yann> inheriting the dependencies of my own dependencies, and reproduce
Yann> the libffi mess.
Yann> libusb has a dependency I can not select, so I just depend on it.
Ok, but that just moves the trouble higher up the stack. E.G. you want
to enable qemu, but it tells you that it needs usbredir so you go
hunting around for it only to discover that it needs libusb and finally
you see that you need threads support in your toolchain.
In other words, selects are more user friendly than depends
on. Most likely we have more users than developers, so we should
optimize for making things nice for users rather than devs.
I would prefer you select libusb.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [PATCH] oprofile: bump to version 0.9.8
From: Jérémy Rosen @ 2012-12-14 14:24 UTC (permalink / raw)
To: buildroot
Signed-off-by: J?r?my Rosen <jeremy.rosen@openwide.fr>
---
package/oprofile/oprofile.mk | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/package/oprofile/oprofile.mk b/package/oprofile/oprofile.mk
index 75f8407..f3ea23f 100644
--- a/package/oprofile/oprofile.mk
+++ b/package/oprofile/oprofile.mk
@@ -4,13 +4,14 @@
#
#############################################################
-OPROFILE_VERSION = 0.9.7
+OPROFILE_VERSION = 0.9.8
OPROFILE_SITE = http://downloads.sourceforge.net/project/oprofile/oprofile/oprofile-$(OPROFILE_VERSION)
OPROFILE_LICENSE = GPLv2+
OPROFILE_LICENSE_FILES = COPYING
OPROFILE_CONF_OPT = --localstatedir=/var --with-kernel-support
OPROFILE_BINARIES = utils/ophelp pp/opannotate pp/oparchive pp/opgprof
OPROFILE_BINARIES += pp/opreport opjitconv/opjitconv daemon/oprofiled
+OPROFILE_BINARIES += utils/op-check-perfevents pe_profiling/operf libabi/opimport
ifeq ($(BR2_i386),y)
OPROFILE_ARCH = i386
@@ -33,6 +34,7 @@ OPROFILE_DEPENDENCIES = popt binutils
define OPROFILE_INSTALL_TARGET_CMDS
$(INSTALL) -d -m 755 $(TARGET_DIR)/usr/bin
$(INSTALL) -d -m 755 $(TARGET_DIR)/usr/share/oprofile
+ $(INSTALL) -d -m 755 $(TARGET_DIR)/usr/lib/oprofile
if [ -d $(@D)/events/$(OPROFILE_ARCH) ]; then \
cp -dpfr $(@D)/events/$(OPROFILE_ARCH) \
$(TARGET_DIR)/usr/share/oprofile; \
@@ -40,12 +42,14 @@ define OPROFILE_INSTALL_TARGET_CMDS
$(INSTALL) -m 644 $(@D)/libregex/stl.pat $(TARGET_DIR)/usr/share/oprofile
$(INSTALL) -m 755 $(@D)/utils/opcontrol $(TARGET_DIR)/usr/bin
$(INSTALL) -m 755 $(addprefix $(@D)/, $(OPROFILE_BINARIES)) $(TARGET_DIR)/usr/bin
+ $(INSTALL) -m 755 $(@D)/libopagent/.libs/*.so* $(TARGET_DIR)/usr/lib/oprofile
endef
define OPROFILE_UNINSTALL_TARGET_CMDS
rm -f $(addprefix $(TARGET_DIR)/usr/bin/, $(notdir $(OPROFILE_BINARIES)))
rm -f $(TARGET_DIR)/usr/bin/opcontrol
rm -rf $(TARGET_DIR)/usr/share/oprofile
+ rm -rf $(TARGET_DIR)/usr/lib/oprofile
endef
$(eval $(autotools-package))
--
1.7.10.4
^ permalink raw reply related
* [Buildroot] [PATCH] pkg-infra: limit -reconfigure and -rebuild actions
From: Arnout Vandecappelle @ 2012-12-14 13:49 UTC (permalink / raw)
To: buildroot
In-Reply-To: <CA+wH294311rh_e5HP8itswfG149Or1bOoKQ_GzAymRhVPRW9eA@mail.gmail.com>
On 22/07/12 20:27, Alex Bradbury wrote:
> On 21 July 2012 17:14, Samuel Martin<s.martin49@gmail.com> wrote:
>> Hi all,
>>
>> Here, I'll try to sum up what we talked few days ago on the IRC
>> channel, plus give my opinion about this.
>>
>> To be honest, the first time i tried these -reconfigure and -rebuild
>> targets, I was surprised they didn't behave as I would expect from
>> targets named like that, rebuilding not only the package but the
>> images too. So, I keep doing things by hands... though I understand
>> why things were implemented like this.
>
> I'm a newcomer to buildroot and was surprised by the effect of
> -reconfigure and -rebuild. I'd read about them in the slides from one
> of Tom's talks, and given their description I had assumed they would
> rebuild only the package. Reading the responses here, I can see why it
> is useful to have a target that rebuilds a single package and also
> makes the image (though really, it seems not that hard for the user to
> do another make command to build the image in that case). I would love
> to see a build target with the proposed semantics.
A colleague of mine (again) made this remark to me today... So, will we
accept this change or not?
Clearly it changes the behaviour, but I don't expect people will use
-rebuild or -reconfigure in scripts so it shouldn't hurt.
Regards,
Arnout
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286540
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F
^ permalink raw reply
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox