From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
To: buildroot@busybox.net
Subject: [Buildroot] Analysis of build failures
Date: Wed, 28 Aug 2013 09:08:12 +0200 [thread overview]
Message-ID: <20130828090812.43a7f849@skate> (raw)
In-Reply-To: <20130828063005.74A7952C1BE@lolut.humanoidz.org>
Hello,
We don't have that many build failures today, so let's have a look
together at each of them and see what we can do about them.
> x86_64 | alsa-lib-1.0.26 | NOK | http://autobuild.buildroot.net/results/dafc9f0c237e98b9280e813ed8100ab913e629be/
/home/test/test/3/output/host/usr/x86_64-buildroot-linux-uclibc/sysroot/usr/lib/../lib64/libc.a(vfork.os):
In function `__GI_vfork': (.text+0x0): multiple definition of `__vfork'
/home/test/test/3/output/host/usr/x86_64-buildroot-linux-uclibc/sysroot/usr/lib/../lib64/libpthread.a(pt-vfork.os):(.text+0x0):
first defined here collect2: ld returned 1 exit status
Is this some bug in uClibc ?
The toolchain is some old toolchain I've built quite some time ago with
Crosstool-NG. Maybe I should update it.
> bfin | alsa-lib-1.0.26 | NOK | http://autobuild.buildroot.net/results/1d587ef565425b574aeb85e6e2bebd2322634868/
> bfin | alsa-lib-1.0.26 | NOK | http://autobuild.buildroot.net/results/a771c47b8d818245f8b66f128ea49db208fdfe52/
That's the same problem: some parts of alsa-lib require dlopen()
functionality, but it isn't available for the FLAT-only bfin toolchain,
since it doesn't support shared library.
Should we mark all packages that use dlopen()
as !BR2_PREFER_STATIC_LIB ?
(Note: in the specific case of alsa-lib, maybe not the entire package
needs to be marked this way, but one of its suboptions).
> i686 | bash-4.2 | NOK | http://autobuild.buildroot.net/results/b85caa22ddc13bdaaac25b9016fe902ade5027de/
./mksyntax -o syntax.c
make[1]: execvp: ./mksyntax: Permission denied
./mksignames lsignames.h
Strange. Missing executable permissions on this program? Why does it
happen only rarely?
> arm | busybox-1.21.1 | NOK | http://autobuild.buildroot.net/results/7673109f00d51a6072c23104ac82106962903e54/
/home/test/test/1/output/host/opt/ext-toolchain/bin/../lib/gcc/arm-unknown-linux-uclibcgnueabi/4.6.4/../../../../arm-unknown-linux-uclibcgnueabi/bin/ld: error: busybox_unstripped uses VFP register arguments, libpwdgrp/lib.a(uidgid_get.o) does not
/home/test/test/1/output/host/opt/ext-toolchain/bin/../lib/gcc/arm-unknown-linux-uclibcgnueabi/4.6.4/../../../../arm-unknown-linux-uclibcgnueabi/bin/ld: failed to merge target specific data of file libpwdgrp/lib.a(uidgid_get.o)
Not sure what's going on here. We're mixing hardfp with softfp for
sure, but not sure why. The toolchain is also an old toolchain
generated a while ago with Crosstool-NG. I should probably update it
before looking into this.
> aarch64 | cups-1.3.11 | NOK | http://autobuild.buildroot.net/results/6c179dca4455e4cb651f9b6bce1b2604366431f4/
{standard input}: Assembler messages:
{standard input}:7522: Error: immediate value out of range 0 to 255 at operand 2 -- `movi v14.8b,-1'
Seems like a deeply AArch64 problem, should be reported to the AArch64 people at Linaro.
> mips64el | directfb-1.6.3 | NOK | http://autobuild.buildroot.net/results/fab819eee4002a9c392c48c1ebaca5c5b6555567/
(cd .libs/libdirectfb_dummy.a.tmp && /home/test/test/2/output/host/usr/bin/mips64el-unknown-linux-gnu-ar x ../../.libs/libdirectfb_dummy.a)
/home/test/test/2/output/host/usr/bin/mips64el-unknown-linux-gnu-ld -o libdirectfb_dummy.o -r .libs/libdirectfb_dummy.a.tmp/*.o
/home/test/test/2/output/host/usr/bin/mips64el-unknown-linux-gnu-ld: .libs/libdirectfb_dummy.a.tmp/dummy.o: ABI is incompatible with that of the selected emulation
/home/test/test/2/output/host/usr/bin/mips64el-unknown-linux-gnu-ld: failed to merge target specific data of file .libs/libdirectfb_dummy.a.tmp/dummy.o
/home/test/test/2/output/host/usr/bin/mips64el-unknown-linux-gnu-ld: Attempt to do relocatable link with elf64-tradlittlemips input and elf32-ntradlittlemips output
/home/test/test/2/output/host/usr/bin/mips64el-unknown-linux-gnu-ld: final link failed: File in wrong format
Still the same problem of mixing MIPS ABIs, because DirectFB is calling
"ld" directly and not "gcc" to do the link.
I had proposed a solution in
http://lists.busybox.net/pipermail/buildroot/2013-June/073399.html and
http://lists.busybox.net/pipermail/buildroot/2013-June/073400.html, but
Markos Chandras said that the upstream package should rather be fixed
to use gcc instead of ld for linking. So I guess we should fix DirectFB here.
> microblaze | e2fsprogs-1.42.8 | NOK | http://autobuild.buildroot.net/results/94661d9cb3e27579a09e4518f55dd8406d1cc502/
../lib/libext2fs.so: undefined reference to `fallocate64'
collect2: ld returned 1 exit status
No largefile support in this toolchain? Something else?
> x86_64 | gpsd-3.9 | NOK | http://autobuild.buildroot.net/results/d58be37b9b18b37eab4acec9a6bbe28863ef4d22/
scons: *** [gpsd] Implicit dependency `/home/test/test/2/output/host/usr/x86_64-buildroot-linux-gnu/sysroot/usr/lib/libm.so' not found, needed by target `gpsd'.
Not sure what's happening here. Surely if -lm was missing, we would be
seeing more build failures of gpsd, no?
> mips64el | libglib2-2.36.3 | NOK | http://autobuild.buildroot.net/results/8159d3a5e7ea17ef4c3ee732fb21941a017429db/
/home/test/test/1/output/host/usr/mips64el-buildroot-linux-gnu/sysroot/usr/lib/libc.a(vfprintf.o): In function `_i18n_number_rewrite':
printf-parse.h:(.text.unlikely+0x338): relocation truncated to fit: R_MIPS_TLS_GOTTPREL against `_nl_current_LC_CTYPE'
No idea.
> microblaze | libglib2-2.36.3 | NOK | http://autobuild.buildroot.net/results/519219ec8e4c4aa06baf3353cd2e37bf4fef9362/
./.libs/libglib-2.0.so: undefined reference to `__sync_fetch_and_or_4'
./.libs/libglib-2.0.so: undefined reference to `__sync_fetch_and_sub_4'
./.libs/libglib-2.0.so: undefined reference to `__sync_fetch_and_xor_4'
./.libs/libglib-2.0.so: undefined reference to `__sync_fetch_and_add_4'
./.libs/libglib-2.0.so: undefined reference to `fallocate64'
./.libs/libglib-2.0.so: undefined reference to `__sync_bool_compare_and_swap_4'
./.libs/libglib-2.0.so: undefined reference to `__sync_fetch_and_and_4'
Too old gcc?
> mips64el | libglib2-2.36.3 | NOK | http://autobuild.buildroot.net/results/0a19073440d22b36df05a54c9104c139cc6d376b/
Same as the one above (relocation truncated to fit).
> bfin | libglib2-2.36.3 | NOK | http://autobuild.buildroot.net/results/c3084342085371618f961c00cc866ae37b5e9453/
libglib uses fork(). I did post
http://patchwork.ozlabs.org/patch/226374/ a while ago.
> arm | libtirpc-0.2.2 | NOK | http://autobuild.buildroot.net/results/1f51c9fce5d3e2758ccea8176406289a1bc069b5/
auth_none.c:46:21: fatal error: pthread.h: No such file or directory
libtirpc needs thread support. Originally, I was against adding the
BR2_TOOLCHAIN_HAS_THREADS dependency and thought we should fix libtirpc
instead. But I've changed my mind, I think we shouldn't diverge too
much from upstream (we already have large patches on libtirpc).
So I believe we should apply a refresh of
http://patchwork.ozlabs.org/patch/244409/, with some adjustments.
> bfin | lua-5.1.5 | NOK | http://autobuild.buildroot.net/results/760bfa75559ec1fe2a7060e9e6792c9789410f2c/
loadlib.c:61:19: error: dlfcn.h: No such file or directory
Uses dlopen() functionality. Should we mark !BR2_PREFER_STATIC_LIB ?
> powerpc | media-ctl-ac40b79f002a2315f... | NOK | http://autobuild.buildroot.net/results/7bcab9b94a81b89789dc1cabe9f6940ed4f5ea51/
Too old kernel headers in toolchain. Options:
1/ Add an exception in the autobuilder script.
2/ Modify media-ctl to integrate the necessary kernel headers and use
them when not available from the toolchain.
I'm inclined to favor 1/.
> i686 | ncftp-3.2.5 | NOK | http://autobuild.buildroot.net/results/e2090822a32da8b70f0928644a03873a712f3c97/
/usr/bin/install: cannot stat `/home/test/test/3/output/build/ncftp-3.2.5/bin/ncftpbookmarks': No such file or directory
make: *** [/home/test/test/3/output/build/ncftp-3.2.5/.stamp_target_installed] Error 1
Some binary is not generated as our .mk file expects. Should be trivial
to fix.
> microblaze | nettle-2.7.1 | NOK | http://autobuild.buildroot.net/results/b95477576f1d3a84951c70ddd158b75e9f19efbd/
sha512-compress.c: In function '_nettle_sha512_compress':
sha512-compress.c:180:1: internal compiler error: in reload, at reload1.c:1059
Please submit a full bug report,
with preprocessed source if appropriate.
See <http://gcc.gnu.org/bugs.html> for instructions.
Oops. Not much we can do here.
Should we add an exception in the autobuilder scripts? Or an exception
directly within Buildroot between this package and the particular
Microblaze toolchain causing the issue?
> powerpc | pciutils-3.2.0 | NOK | http://autobuild.buildroot.net/results/9daf0f46642020591731e20d3bf9041ff6259846/
/home/test/test/3/output/host/usr/bin/powerpc-linux-gnu-gcc example.o lib/libpci.so.3.2.0 -o example
/home/test/test/3/output/host/usr/powerpc-buildroot-linux-gnu/sysroot/usr/lib/libkmod.so: undefined reference to `_Static_assert'
No idea, I haven't investigated.
> arm | pulseaudio-4.0 | NOK | http://autobuild.buildroot.net/results/d859068bc4a7f2b406ca83b8e19fe8b60391c0ba/
/home/test/test/1/output/host/opt/ext-toolchain/bin/../lib/gcc/arm-buildroot-linux-uclibcgnueabi/4.7.3/include/arm_neon.h:32:2: error: #error You must enable NEON instructions (e.g. -mfloat-abi=softfp -mfpu=neon) to use arm_neon.h
Should be fixed by the recently committed
http://git.buildroot.net/buildroot/commit/?id=f09636710b14f1493de7c8cd24aaf3a5d1322389.
> arm | qt-4.8.5 | NOK | http://autobuild.buildroot.net/results/b970d41df5fa8f63b7ee90e99e7a91846f6715e1/
The EGL functionality test failed!
EGL is required for OpenGL ES to manage contexts & surfaces.
You might need to modify the include and library search paths by editing
QMAKE_INCDIR_EGL, QMAKE_LIBDIR_EGL and QMAKE_LIBS_EGL in
/scratch/peko/build/qt-4.8.5/mkspecs/qws/linux-arm-g++.
make: *** [/scratch/peko/build/qt-4.8.5/.stamp_configured] Error 1
The OpenGL implementation being selected is BR2_PACKAGE_RPI_USERLAND.
Not sure why it doesn't find it. Needs investigation.
> arm | qt5base-5.0.2 | NOK | http://autobuild.buildroot.net/results/3577a7221d429658b459507cd2430fc275be8564/
DirectFB disabled.
DirectFB support cannot be enabled due to functionality tests!
Turn on verbose messaging (-v) to ./configure to see the final report.
If you believe this message is in error you may use the continue
switch (-continue) to ./configure to continue.
make: *** [/scratch/peko/build/qt5base-5.0.2/.stamp_configured] Error 101
To be reproduced/investigated.
> arm | qt5base-5.0.2 | NOK | http://autobuild.buildroot.net/results/d268003b0a3402dde930a72ab467ee393b2ebe64/
OpenGL ES 2.x disabled.
The OpenGL ES 2.0 functionality test failed!
You might need to modify the include and library search paths by editing
QMAKE_INCDIR_OPENGL_ES2, QMAKE_LIBDIR_OPENGL_ES2 and QMAKE_LIBS_OPENGL_ES2 in
/home/test/test/1/output/build/qt5base-5.0.2/mkspecs/devices/linux-buildroot-g++.
make: *** [/home/test/test/1/output/build/qt5base-5.0.2/.stamp_configured] Error 1
As I pointed to Peter, this should be fixed by
http://patchwork.ozlabs.org/patch/269662/.
> i686 | qt5webkit-5.0.2 | NOK | http://autobuild.buildroot.net/results/4532e7835c0bc047266d74fa5144d1e67a367ae0/
cp -dpfr /home/test/test/2/output/host/usr/i686-buildroot-linux-uclibc/sysroot/usr/qml/QtWebKit /home/test/test/2/output/target/usr/qml/
cp: cannot stat `/home/test/test/2/output/host/usr/i686-buildroot-linux-uclibc/sysroot/usr/qml/QtWebKit': No such file or directory
make: *** [/home/test/test/2/output/build/qt5webkit-5.0.2/.stamp_target_installed] Error 1
This has been reported several times by users. Apparently, we can build
webkit without QML support, but this isn't correctly taken into account
in our qt5webkit.mk.
> arm | qt5webkit-5.0.2 | NOK | http://autobuild.buildroot.net/results/439ce2c3c33a92966808071d4fc7231d50453c79/
Project ERROR: Unknown module(s) in QT: gui
qt5webkit would need gui support in qt5base, which sounds logical.
> mipsel | rt-tests-0.83 | NOK | http://autobuild.buildroot.net/results/41534b06b9bdf1a373f3fe4f4717c3bc8c9d7e1d/
src/cyclictest/cyclictest.c: In function 'timerthread':
src/cyclictest/cyclictest.c:638:9: error: 'union <anonymous>' has no member named '_tid'
Toolchain is a MIPS toolchain built with Buildroot 2013.05, so not old.
> x86_64 | strongswan-5.0.4 | NOK | http://autobuild.buildroot.net/results/a637f916962b6136dd6dd4f4b9ff4e1cab568ef3/
utils/backtrace.c:23:23: fatal error: execinfo.h: No such file or directory
uClibc doesn't have execinfo.h by default. Proper testing should be
added in strongswan code. J?r?me, can you have a look at this?
> mips | stunnel-4.55 | NOK | http://autobuild.buildroot.net/results/28527d8ec87d7c0e9d380682216a33ea192eee42/
/home/test/test/2/output/host/opt/ext-toolchain/bin/../lib/gcc/mips-linux-gnu/4.7.3/../../../../mips-linux-gnu/bin/ld: note: 'pthread_setcancelstate@@GLIBC_2.0' is defined in DSO /home/test/test/2/output/host/usr/mips-buildroot-linux-gnu/sysroot/soft-float/lib/libc.so.6 so try adding it to the linker command line
/home/test/test/2/output/host/usr/mips-buildroot-linux-gnu/sysroot/soft-float/lib/libc.so.6: could not read symbols: Invalid operation
> mips | stunnel-4.55 | NOK | http://autobuild.buildroot.net/results/876ea074ef53e020d7e72bc508aca834d2dda341/
Same problem.
> powerpc | sysklogd-1.5 | NOK | http://autobuild.buildroot.net/results/f037bf84f58ae293d5b26d5260e3a47a0ed36749/
syslogd.c: In function 'main':
syslogd.c:1237:1: error: unrecognizable insn:
(insn 66 65 67 4 (set (subreg:SI (reg:V2SI 502) 0)
(lo_sum:SI (reg:SI 503)
(symbol_ref/f:SI ("*.LC98") [flags 0x82] <var_decl 0x55e10ae0 *.LC98>))) syslogd.c:885 -1
(nil))
syslogd.c:1237:1: internal compiler error: in extract_insn, at recog.c:2109
Please submit a full bug report,
Ooh. That's an old toolchain built with Crosstool-NG. I should maybe
rebuild it with a more recent compiler.
> mips64el | tvheadend-5956233 | NOK | http://autobuild.buildroot.net/results/a24bcf23cfc4e5d69ee29ef11397679eb8198468/
src/v4l.c: In function 'v4l_adapter_check':
src/v4l.c:468:5: error: format '%llx' expects argument of type 'long long unsigned int', but argument 9 has type 'v4l2_std_id' [-Werror=format]
src/v4l.c:504:5: error: format '%llx' expects argument of type 'long long unsigned int', but argument 13 has type 'v4l2_std_id' [-Werror=format]
cc1: all warnings being treated as errors
tvheadend is built with -Werror, this is not good. Yann, can you change
this?
> powerpc | w_scan-20130331 | NOK | http://autobuild.buildroot.net/results/f3a1c2245eab30a512fddda620c42b1cab1725bf/
checking for linux/dvb/frontend.h usability (DVB-T2, DVB API >= v5.3)... no
*******************************************************
*** ERROR: w_scan requires linux DVB API v5.3 or higher.
*** Please update your linux dvb headers,
*** (usually /usr/include/linux/dvb).
*** EXITING!
*******************************************************
make: *** [/home/test/test/1/output/build/w_scan-20130331/.stamp_configured] Error 1
Does this means the kernel headers of the toolchain are too old? What
are the solutions to this?
Thomas
--
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com
next prev parent reply other threads:[~2013-08-28 7:08 UTC|newest]
Thread overview: 417+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-08-28 6:30 [Buildroot] [autobuild.buildroot.net] Build results for 2013-08-27 Thomas Petazzoni
2013-08-28 6:37 ` Thomas Petazzoni
2013-08-28 7:08 ` Thomas Petazzoni [this message]
2013-08-28 7:17 ` [Buildroot] Analysis of build failures Will Newton
2013-08-28 11:19 ` Thomas Petazzoni
2013-08-28 11:00 ` Gustavo Zacarias
2013-08-28 11:30 ` Thomas Petazzoni
2013-08-28 11:34 ` Gustavo Zacarias
2013-08-28 11:49 ` Thomas Petazzoni
2013-08-28 11:55 ` Gustavo Zacarias
2013-08-28 11:31 ` Thomas De Schampheleire
2013-08-28 11:55 ` Thomas Petazzoni
2013-08-28 13:13 ` Thomas De Schampheleire
2013-08-28 13:21 ` Thomas Petazzoni
2013-08-28 11:45 ` Markos Chandras
2013-08-28 12:07 ` Thomas Petazzoni
2013-08-28 21:09 ` Arnout Vandecappelle
2013-08-28 21:29 ` Arnout Vandecappelle
2013-08-29 13:17 ` Jérôme Pouiller
2013-08-29 15:12 ` Thomas De Schampheleire
2013-08-30 9:26 ` Jérôme Pouiller
2013-08-30 11:08 ` Thomas Petazzoni
-- strict thread matches above, loose matches on Subject: below --
2013-11-09 7:30 [Buildroot] [autobuild.buildroot.net] Build results for 2013-11-08 Thomas Petazzoni
2013-11-09 18:15 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2013-11-09 20:46 ` Gustavo Zacarias
2013-11-10 6:25 ` Baruch Siach
2013-11-10 8:43 ` Thomas Petazzoni
2013-11-10 10:32 ` Baruch Siach
2013-11-10 15:21 ` Thomas Petazzoni
2013-11-10 10:32 ` Simon Dawson
2013-11-10 10:46 ` Thomas Petazzoni
2013-11-10 11:21 ` Simon Dawson
2013-11-10 11:36 ` Thomas Petazzoni
2013-11-10 22:56 ` Peter Korsgaard
2013-11-10 10:57 ` Gustavo Zacarias
2013-11-10 11:07 ` Thomas Petazzoni
2013-11-11 5:33 ` Chris Zankel
2013-11-11 9:58 ` Thomas Petazzoni
2013-11-11 10:10 ` Baruch Siach
2013-11-11 10:15 ` Thomas Petazzoni
2013-11-11 10:20 ` Baruch Siach
2013-11-11 10:39 ` Thomas Petazzoni
2013-11-11 9:14 ` Fatih Aşıcı
2013-11-11 10:09 ` Thomas Petazzoni
2013-11-11 12:26 ` Fatih Aşıcı
2013-11-11 9:30 ` Gustavo Zacarias
[not found] ` <5280A0D3.1080605@imgtec.com>
2013-11-11 9:21 ` Markos Chandras
2013-11-11 9:46 ` Peter Korsgaard
2013-11-11 9:49 ` Markos Chandras
2013-11-11 10:01 ` Will Newton
2013-11-11 10:17 ` Thomas Petazzoni
2013-11-11 10:25 ` Will Newton
2013-11-11 10:43 ` Thomas Petazzoni
2013-11-11 11:25 ` Ezequiel García
2013-11-11 11:27 ` Peter Korsgaard
2013-11-11 11:45 ` Thomas Petazzoni
2013-11-22 7:30 [Buildroot] [autobuild.buildroot.net] Build results for 2013-11-21 Thomas Petazzoni
2013-11-22 8:14 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2013-11-22 9:15 ` Fabio Porcedda
2013-11-29 10:25 ` Fabio Porcedda
2013-11-22 10:42 ` Thomas De Schampheleire
2013-11-22 12:59 ` Thomas De Schampheleire
2013-11-22 16:01 ` Arnout Vandecappelle
2013-11-22 16:03 ` Thomas De Schampheleire
2013-11-22 11:56 ` Thomas Petazzoni
2013-11-22 11:58 ` Fatih Aşıcı
2013-11-22 12:13 ` Thomas Petazzoni
2013-11-23 23:07 ` Arnout Vandecappelle
2013-11-22 15:20 ` Peter Korsgaard
2013-11-29 7:30 [Buildroot] [autobuild.buildroot.net] Build results for 2013-11-28 Thomas Petazzoni
2013-11-29 8:51 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2013-11-29 9:00 ` Peter Korsgaard
2013-11-29 10:04 ` Gustavo Zacarias
2014-02-07 7:30 [Buildroot] [autobuild.buildroot.net] Build results for 2014-02-06 Thomas Petazzoni
2014-02-07 12:53 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2014-02-07 13:01 ` Thomas De Schampheleire
2014-02-07 13:33 ` Thomas Petazzoni
2014-02-07 18:40 ` Yann E. MORIN
2014-02-07 13:25 ` Gustavo Zacarias
2014-02-07 19:18 ` Arnout Vandecappelle
2014-02-08 21:43 ` Peter Korsgaard
2014-02-07 14:00 ` Anton Kolesov
2014-02-07 14:53 ` Ezequiel García
2014-02-07 14:55 ` Thomas Petazzoni
2014-02-07 15:07 ` Ezequiel García
2014-02-07 15:14 ` Thomas Petazzoni
2014-02-07 15:19 ` Ezequiel García
2014-02-07 15:18 ` Peter Korsgaard
2014-02-07 18:53 ` Yann E. MORIN
2014-02-07 19:03 ` Spenser Gilliland
2014-02-08 11:40 ` Romain Naour
2014-02-17 15:40 ` Vicente Olivert Riera
2014-02-17 15:44 ` Markos Chandras
2014-02-17 15:45 ` Vicente Olivert Riera
2014-02-17 16:09 ` Thomas Petazzoni
2014-02-11 7:30 [Buildroot] [autobuild.buildroot.net] Build results for 2014-02-10 Thomas Petazzoni
2014-02-11 9:10 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2014-02-11 17:37 ` Baruch Siach
2014-02-12 8:05 ` Thomas Petazzoni
2014-02-12 8:11 ` Baruch Siach
2014-02-11 18:01 ` Yann E. MORIN
2014-02-12 8:06 ` Thomas Petazzoni
2014-02-12 20:58 ` Romain Naour
2014-02-13 11:29 ` Thomas Petazzoni
2014-02-13 18:54 ` Thomas Petazzoni
2014-02-13 21:17 ` Romain Naour
2014-02-13 21:59 ` Thomas Petazzoni
2014-02-12 7:30 [Buildroot] [autobuild.buildroot.net] Build results for 2014-02-11 Thomas Petazzoni
2014-02-12 8:32 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2014-02-12 9:21 ` Peter Korsgaard
2014-02-12 9:29 ` Thomas Petazzoni
2014-02-12 9:39 ` Peter Korsgaard
2014-02-12 9:45 ` Thomas Petazzoni
2014-02-12 9:52 ` Peter Korsgaard
2014-02-12 10:15 ` Thomas Petazzoni
2014-02-12 9:41 ` Thomas De Schampheleire
2014-02-12 9:47 ` Thomas Petazzoni
2014-02-12 9:50 ` Thomas De Schampheleire
2014-02-12 11:39 ` Thomas De Schampheleire
2014-02-12 12:29 ` Thomas De Schampheleire
2014-02-12 12:31 ` Thomas Petazzoni
2014-02-12 12:44 ` Thomas De Schampheleire
2014-02-12 12:47 ` Thomas Petazzoni
2014-02-12 11:25 ` Samuel Martin
2014-02-12 17:52 ` Yann E. MORIN
2014-02-14 7:30 [Buildroot] [autobuild.buildroot.net] Build results for 2014-02-13 Thomas Petazzoni
2014-02-14 9:12 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2014-02-14 10:23 ` Anton Kolesov
2014-02-14 14:13 ` Thomas Petazzoni
2014-02-14 14:42 ` Peter Korsgaard
2014-02-14 15:19 ` Thomas Petazzoni
2014-02-14 17:05 ` Anton Kolesov
2014-02-14 17:42 ` Thomas Petazzoni
2014-02-14 11:29 ` Peter Korsgaard
2014-02-14 13:15 ` Ezequiel García
2014-02-15 7:27 ` Frank Bergmann
2014-02-15 17:29 ` Frank Bergmann
2014-02-15 21:31 ` Baruch Siach
2014-02-16 0:00 ` Romain Naour
2014-02-21 7:30 [Buildroot] [autobuild.buildroot.net] Build results for 2014-02-20 Thomas Petazzoni
2014-02-21 9:08 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2014-02-21 9:24 ` Peter Korsgaard
2014-02-21 9:46 ` Frank Bergmann
2014-02-21 9:49 ` Anton Kolesov
2014-02-21 9:50 ` Thomas De Schampheleire
2014-02-21 13:54 ` Vicente Olivert Riera
2014-02-22 21:54 ` Ryan Barnett
2014-02-24 9:47 ` Vicente Olivert Riera
2014-02-26 11:06 ` Vicente Olivert Riera
2014-02-23 7:30 [Buildroot] [autobuild.buildroot.net] Build results for 2014-02-22 Thomas Petazzoni
2014-02-23 10:00 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2014-02-23 10:16 ` Thomas De Schampheleire
2014-02-23 10:56 ` Thomas Petazzoni
2014-02-23 15:45 ` Peter Korsgaard
2014-02-23 23:46 ` Ezequiel García
2014-02-24 21:16 ` Thomas Petazzoni
2014-02-24 21:18 ` Ezequiel García
2014-02-26 21:10 ` Thomas Petazzoni
2014-02-24 10:12 ` Vicente Olivert Riera
2014-02-24 10:30 ` Vicente Olivert Riera
2014-02-25 21:08 ` Samuel Martin
2014-03-02 7:30 [Buildroot] [autobuild.buildroot.net] Build results for 2014-03-01 Thomas Petazzoni
2014-03-02 8:57 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2014-03-02 9:50 ` Samuel Martin
2014-03-02 10:08 ` Thomas Petazzoni
2014-03-04 23:18 ` Arnout Vandecappelle
2014-03-05 9:04 ` Thomas Petazzoni
2014-03-05 10:10 ` Arnout Vandecappelle
2014-03-05 12:40 ` Thomas Petazzoni
2014-03-03 7:30 [Buildroot] [autobuild.buildroot.net] Build results for 2014-03-02 Thomas Petazzoni
2014-03-03 8:02 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2014-03-03 9:10 ` Baruch Siach
2014-03-03 9:38 ` Samuel Martin
2014-03-03 10:05 ` Thomas Petazzoni
2014-03-03 10:19 ` Samuel Martin
2014-03-03 10:27 ` Thomas Petazzoni
2014-03-03 11:17 ` Gustavo Zacarias
2014-03-03 11:31 ` Romain Naour
2014-03-03 12:48 ` Thomas Petazzoni
2014-03-07 0:44 ` Romain Naour
2014-03-07 8:30 ` Thomas Petazzoni
2014-03-10 21:27 ` Romain Naour
2014-03-05 7:30 [Buildroot] [autobuild.buildroot.net] Build results for 2014-03-04 Thomas Petazzoni
2014-03-05 10:27 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2014-03-05 10:29 ` Alvaro Gamez
2014-03-05 14:37 ` Alvaro Gamez
2014-03-05 14:42 ` Thomas Petazzoni
2014-03-05 15:01 ` Samuel Martin
2014-05-07 6:30 [Buildroot] [autobuild.buildroot.net] Build results for 2014-05-06 Thomas Petazzoni
2014-05-07 7:31 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2014-05-07 8:04 ` Will Newton
2014-05-07 8:58 ` Thomas Petazzoni
2014-05-07 9:04 ` Peter Seiderer
2014-05-07 9:06 ` Thomas Petazzoni
2014-05-07 9:23 ` Thomas De Schampheleire
2014-05-07 9:26 ` Thomas Petazzoni
2014-05-07 13:04 ` Peter Korsgaard
2014-05-08 23:24 ` Arnout Vandecappelle
2014-05-09 13:34 ` Ezequiel Garcia
2014-05-09 19:06 ` Frank Bergmann
2014-06-13 6:30 [Buildroot] [autobuild.buildroot.net] Build results for 2014-06-12 Thomas Petazzoni
2014-06-13 9:12 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2014-06-13 14:55 ` Eric Le Bihan
2014-06-13 15:07 ` Thomas Petazzoni
2014-06-13 15:50 ` Eric Le Bihan
2014-06-13 15:59 ` Thomas Petazzoni
2014-06-15 6:30 [Buildroot] [autobuild.buildroot.net] Build results for 2014-06-14 Thomas Petazzoni
2014-06-15 10:20 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2014-06-15 10:36 ` Thomas De Schampheleire
2014-06-15 10:42 ` Thomas Petazzoni
2014-06-15 14:11 ` Thomas De Schampheleire
2014-08-13 6:30 [Buildroot] [autobuild.buildroot.net] Build results for 2014-08-12 Thomas Petazzoni
2014-08-13 8:15 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2014-08-13 8:26 ` Nathaniel Roach
2014-08-13 9:05 ` Luca Ceresoli
2014-08-13 9:06 ` Thomas Petazzoni
2014-08-13 10:31 ` Peter Korsgaard
2014-08-13 8:33 ` yuvaraj.patil at wipro.com
2014-08-26 6:30 [Buildroot] [autobuild.buildroot.net] Build results for 2014-08-25 Thomas Petazzoni
2014-08-26 7:29 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2014-08-26 7:37 ` Jörg Krause
2014-08-26 11:18 ` Gustavo Zacarias
2014-08-26 11:29 ` Vicente Olivert Riera
2014-08-26 11:46 ` Gustavo Zacarias
2014-08-26 11:48 ` Vicente Olivert Riera
2014-08-26 12:13 ` Gustavo Zacarias
2014-08-29 6:30 [Buildroot] [autobuild.buildroot.net] Build results for 2014-08-28 Thomas Petazzoni
2014-08-29 7:30 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2014-09-06 6:30 [Buildroot] [autobuild.buildroot.net] Build results for 2014-09-05 Thomas Petazzoni
2014-09-06 18:36 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2014-09-06 20:25 ` Peter Korsgaard
2014-09-07 7:21 ` Thomas Petazzoni
2014-09-07 12:17 ` Thomas De Schampheleire
2014-09-07 12:26 ` Thomas Petazzoni
2014-09-07 15:34 ` Nathaniel Roach
2014-09-07 15:44 ` Yann E. MORIN
2014-09-07 18:18 ` Peter Korsgaard
2014-09-07 3:49 ` Nathaniel Roach
2014-09-07 7:41 ` Thomas Petazzoni
2014-09-07 6:30 [Buildroot] [autobuild.buildroot.net] Build results for 2014-09-06 Thomas Petazzoni
2014-09-07 8:09 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2014-09-07 12:56 ` Gustavo Zacarias
2014-09-07 13:06 ` Thomas Petazzoni
2014-09-07 13:07 ` Gustavo Zacarias
2014-09-08 8:32 ` Vicente Olivert Riera
2014-09-08 8:34 ` Thomas Petazzoni
2014-09-08 8:37 ` Vicente Olivert Riera
2014-09-08 9:17 ` Thomas Petazzoni
2014-09-08 12:20 ` Vicente Olivert Riera
2014-09-08 12:29 ` Thomas Petazzoni
2014-09-08 12:59 ` Vicente Olivert Riera
2014-09-08 13:18 ` Thomas Petazzoni
2014-09-12 6:30 [Buildroot] [autobuild.buildroot.net] Build results for 2014-09-11 Thomas Petazzoni
2014-09-12 8:11 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2014-09-12 8:20 ` Nathaniel Roach
2014-09-12 8:53 ` Vicente Olivert Riera
2014-09-12 8:57 ` Thomas Petazzoni
2014-09-12 9:00 ` Vicente Olivert Riera
2014-09-12 9:01 ` Jörg Krause
2014-09-12 9:45 ` Anton Kolesov
2014-09-12 9:50 ` Thomas Petazzoni
2014-09-20 12:10 ` Bernd Kuhls
2014-09-14 6:30 [Buildroot] [autobuild.buildroot.net] Build results for 2014-09-13 Thomas Petazzoni
2014-09-14 10:19 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2014-09-15 2:52 ` Matthew Weber
[not found] ` <CA+-urNSSKAn3=oXPM2553CO6+8XQB=4hKjzNR4mSg61aAY_LgQ@mail.gmail.com>
2014-09-15 13:59 ` Thomas Petazzoni
2014-09-15 14:48 ` Frank Hunleth
2014-09-28 10:47 ` Bernd Kuhls
2014-12-29 7:30 [Buildroot] [autobuild.buildroot.net] Build results for 2014-12-28 Thomas Petazzoni
2014-12-29 8:30 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2015-05-02 6:30 [Buildroot] [autobuild.buildroot.net] Build results for 2015-05-01 Thomas Petazzoni
2015-05-03 8:50 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2015-05-03 10:39 ` Romain Naour
2015-05-03 11:23 ` Peter Korsgaard
2015-05-04 6:50 ` Richard Genoud
2015-05-04 13:52 ` Peter Korsgaard
2015-05-04 14:57 ` Richard Genoud
2015-05-04 21:30 ` Thomas Petazzoni
2015-05-05 11:00 ` Richard Genoud
2015-05-03 11:53 ` Baruch Siach
2015-05-04 10:28 ` Jörg Krause
2015-05-05 6:30 [Buildroot] [autobuild.buildroot.net] Build results for 2015-05-04 Thomas Petazzoni
2015-05-05 7:59 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2015-05-05 13:44 ` Gustavo Zacarias
2015-05-05 13:47 ` Thomas Petazzoni
[not found] ` <5548C487.90604@gmail.com>
2015-05-05 13:48 ` Thomas Petazzoni
2015-05-06 9:16 ` Pascal Huerst
2015-05-05 14:52 ` Max Filippov
2015-05-05 15:06 ` Thomas Petazzoni
2015-05-05 15:22 ` Peter Korsgaard
2015-05-05 15:26 ` Thomas Petazzoni
2015-05-05 15:50 ` Peter Korsgaard
2015-05-05 15:54 ` Thomas Petazzoni
2015-05-05 18:46 ` Peter Korsgaard
2015-05-06 7:34 ` Angelo Compagnucci
2015-05-06 7:44 ` Thomas Petazzoni
2015-05-06 6:30 [Buildroot] [autobuild.buildroot.net] Build results for 2015-05-05 Thomas Petazzoni
2015-05-06 7:42 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2015-05-06 8:07 ` gwenhael.goavec
2015-05-06 17:53 ` Waldemar Brodkorb
2015-05-06 20:58 ` Alexey Brodkin
2015-05-06 21:32 ` Peter Korsgaard
2015-05-06 21:42 ` Thomas Petazzoni
2015-05-06 22:01 ` Thomas Petazzoni
2015-05-07 6:51 ` Peter Korsgaard
2015-05-07 7:31 ` Thomas Petazzoni
2015-05-07 4:05 ` Waldemar Brodkorb
2015-05-07 7:33 ` Thomas Petazzoni
2015-05-07 7:42 ` Peter Korsgaard
2015-05-14 6:30 [Buildroot] [autobuild.buildroot.net] Build results for 2015-05-13 Thomas Petazzoni
2015-05-14 21:13 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2015-05-14 22:58 ` Peter Korsgaard
2015-05-15 16:02 ` Thomas Petazzoni
2015-05-15 14:06 ` Waldemar Brodkorb
2015-05-15 15:17 ` Thomas Petazzoni
2015-05-17 6:30 [Buildroot] [autobuild.buildroot.net] Build results for 2015-05-16 Thomas Petazzoni
2015-05-17 10:49 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2015-05-17 11:37 ` Yann E. MORIN
2015-05-17 12:08 ` Romain Naour
2015-05-17 13:52 ` Thomas Petazzoni
2015-05-17 14:19 ` Romain Naour
2015-05-19 6:30 [Buildroot] [autobuild.buildroot.net] Build results for 2015-05-18 Thomas Petazzoni
2015-05-19 8:00 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2015-05-19 8:12 ` Romain Naour
2015-05-21 13:28 ` Bartosz Golaszewski
2015-05-21 13:33 ` Thomas Petazzoni
2015-05-19 13:49 ` Alexey Brodkin
2015-05-19 15:48 ` Thomas Petazzoni
2015-05-25 11:08 ` Alexey Brodkin
2015-05-19 17:59 ` Peter Korsgaard
2015-05-20 17:49 ` Yann E. MORIN
2015-07-22 6:30 [Buildroot] [autobuild.buildroot.net] Build results for 2015-07-21 Thomas Petazzoni
2015-07-22 7:43 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2015-07-22 9:07 ` Yegor Yefremov
2015-07-22 9:19 ` Thomas Petazzoni
2015-07-22 9:34 ` Guillaume GARDET - Oliséo
2015-07-22 10:04 ` Nicolas Ménégale
2015-07-22 11:20 ` Thomas Petazzoni
2015-07-22 10:06 ` Romain Naour
2015-07-22 11:22 ` Thomas Petazzoni
2015-07-22 12:15 ` Romain Naour
2015-07-22 16:27 ` Waldemar Brodkorb
2015-07-22 17:53 ` Romain Naour
2015-07-30 10:46 ` Romain Naour
2015-08-01 8:25 ` Waldemar Brodkorb
2015-08-01 16:40 ` Romain Naour
2015-07-22 10:48 ` Brendan Heading
2015-07-22 11:24 ` Brendan Heading
2015-07-22 12:30 ` Gustavo Zacarias
2015-07-22 12:45 ` Thomas Petazzoni
2015-07-22 12:51 ` Gustavo Zacarias
2015-07-22 12:52 ` Thomas Petazzoni
2015-07-22 14:23 ` Brendan Heading
2015-07-22 14:54 ` Thomas Petazzoni
2015-07-22 15:27 ` Brendan Heading
2015-07-22 15:40 ` Gustavo Zacarias
2015-07-22 15:44 ` Brendan Heading
2015-07-22 20:06 ` Thomas Petazzoni
2015-07-22 20:40 ` Brendan Heading
2015-07-22 20:46 ` Thomas Petazzoni
2015-07-22 21:03 ` Brendan Heading
2015-07-23 18:15 ` Gustavo Zacarias
2015-07-23 19:03 ` Brendan Heading
2015-07-23 19:04 ` Gustavo Zacarias
2015-07-22 12:51 ` Gustavo Zacarias
2015-07-22 13:03 ` Thomas Petazzoni
2015-07-28 13:56 ` Gustavo Zacarias
2015-07-28 14:02 ` Thomas Petazzoni
2015-07-22 14:49 ` Clayton Shotwell
2015-07-22 14:56 ` Thomas Petazzoni
2015-07-22 15:06 ` Alexey Brodkin
2015-07-22 15:14 ` Thomas Petazzoni
2015-07-22 15:26 ` Alexey Brodkin
2015-07-22 15:33 ` Thomas Petazzoni
2015-07-22 16:15 ` Waldemar Brodkorb
2015-07-22 17:04 ` Max Filippov
2015-07-23 6:27 ` Angelo Compagnucci
2015-07-29 6:30 [Buildroot] [autobuild.buildroot.net] Build results for 2015-07-28 Thomas Petazzoni
2015-07-29 8:03 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2015-07-29 9:30 ` Jérôme Pouiller
2015-07-29 19:55 ` Bernd Kuhls
2015-08-04 13:45 ` Angelo Compagnucci
2015-08-06 13:53 ` Guillaume GARDET - Oliséo
2015-08-06 13:58 ` Thomas Petazzoni
2015-08-06 14:07 ` Guillaume GARDET - Oliséo
2015-08-06 18:50 ` Thomas Petazzoni
2015-08-07 12:09 ` Guillaume GARDET - Oliséo
2016-01-16 7:30 [Buildroot] [autobuild.buildroot.net] Build results for 2016-01-15 Thomas Petazzoni
2016-01-16 23:11 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2016-01-17 1:42 ` Frank Hunleth
2016-01-17 11:23 ` Thomas Petazzoni
2016-01-17 16:33 ` Frank Hunleth
2016-01-23 1:05 ` Frank Hunleth
2016-01-23 8:01 ` Thomas Petazzoni
2016-01-25 9:06 ` Joris Lijssens
2016-01-25 9:09 ` Thomas Petazzoni
2016-01-25 9:10 ` Joris Lijssens
2016-01-25 9:30 ` Joris Lijssens
2016-01-17 15:06 ` Matthew Weber
2016-01-17 17:26 ` Thomas Petazzoni
2016-01-17 17:10 ` Maxime Hadjinlian
2016-01-18 22:10 ` Thomas Petazzoni
2016-01-17 17:36 ` Jörg Krause
2016-01-17 18:22 ` Rodrigo Rebello
2016-01-17 19:02 ` Gary Bisson
2016-01-17 19:06 ` Romain Naour
2016-01-18 7:06 ` Alexey Brodkin
2016-01-18 12:22 ` Gustavo Zacarias
2016-01-18 20:53 ` Peter Seiderer
2016-01-18 21:03 ` Thomas Petazzoni
2016-01-22 7:30 [Buildroot] [autobuild.buildroot.net] Build results for 2016-01-21 Thomas Petazzoni
2016-01-22 9:29 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2016-01-22 9:36 ` Thomas De Schampheleire
2016-01-22 11:26 ` Gustavo Zacarias
2016-01-22 18:38 ` Waldemar Brodkorb
2016-01-22 23:19 ` Romain Naour
2016-01-23 8:32 ` Thomas Petazzoni
2016-01-23 10:47 ` Romain Naour
2016-01-23 1:07 ` Frank Hunleth
2016-01-23 10:55 ` Samuel Martin
2016-01-26 12:02 ` Joao Pinto
2016-01-26 13:26 ` Thomas Petazzoni
2016-01-27 11:37 ` Joao Pinto
2016-01-27 12:16 ` Thomas Petazzoni
2016-01-27 14:25 ` Joao Pinto
2016-01-27 15:09 ` Thomas Petazzoni
2016-01-27 15:13 ` Joao Pinto
2016-01-26 21:06 ` Bernd Kuhls
2016-01-27 17:18 ` Peter Korsgaard
2016-02-03 9:37 ` Max Filippov
2016-01-23 12:33 Ricardo Martincoski
2016-01-23 12:55 ` Thomas Petazzoni
2016-01-23 13:03 ` Thomas De Schampheleire
2016-01-23 13:56 ` Ricardo Martincoski
2016-01-23 14:26 ` Thomas De Schampheleire
2016-01-23 14:42 ` Thomas Petazzoni
2016-01-23 15:16 ` Ricardo Martincoski
2016-01-23 15:58 ` Thomas Petazzoni
2016-01-23 16:07 ` Thomas De Schampheleire
2016-01-23 17:14 ` Ricardo Martincoski
2016-01-23 20:48 ` Thomas Petazzoni
2016-02-12 7:30 [Buildroot] [autobuild.buildroot.net] Build results for 2016-02-11 Thomas Petazzoni
2016-02-12 9:45 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2016-02-12 11:54 ` Martin Bark
2016-02-15 13:15 ` Martin Bark
2016-02-12 18:01 ` Bernd Kuhls
2016-02-12 18:29 ` Bernd Kuhls
2016-02-12 19:26 ` Romain Naour
2016-02-12 20:35 ` Thomas Petazzoni
2016-02-12 20:52 ` Romain Naour
[not found] <mailman.19.1455278403.3863.buildroot@busybox.net>
2016-02-13 1:04 ` Ricardo Martincoski
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20130828090812.43a7f849@skate \
--to=thomas.petazzoni@free-electrons.com \
--cc=buildroot@busybox.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.