summaryrefslogtreecommitdiffstats
path: root/package/boost/boost.mk
Commit message (Collapse)AuthorAgeFilesLines
* boost: remove empty host dependencies definitionJulien Floret2016-07-031-2/+0
| | | | | Signed-off-by: Julien Floret <julien.floret@6wind.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/boost: add boot-type_erasure supportRomain Naour2016-07-021-1/+3
| | | | | | | | | | | Until now this library wasn't handled by the Buildroot packaging, so add a new config option to disable it when requested. Also disable boost-type_erasure for the host variant to keep it as minimal as possible. Signed-off-by: Romain Naour <romain.naour@smile.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/boost: Add Kconfig option for new module metaparseBernd Kuhls2016-06-081-0/+1
| | | | | | | | The module description can be found in the release notes of v1.61.0: http://www.boost.org/users/history/version_1_61_0.html Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/boost: bump version to 1.61.0Bernd Kuhls2016-06-081-1/+1
| | | | | | | removed patches applied upstream, renumbered remaining patches. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/boost: bump to version 1.60.0Jörg Krause2015-12-261-1/+1
| | | | | Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/boost: add library coroutine2Jörg Krause2015-12-121-3/+4
| | | | | | | | | | | | | Coroutine2 is a new (C++14) library added in boost 1.59.0. We also add coroutine2 to the '--without-libraries' configuration flag for the host variant. Build successfully tested with Arago ARMv5 2011.09 - a gcc v4.5.3 toolchain. Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks> Reviewed-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Tested-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/boost: bump to version 1.59.0Jörg Krause2015-12-121-1/+1
| | | | | | | | | | | Also: * remove patch "gcc.jam compiler options fix" - merged upstream * renumber patch "fix uclibc eventfd". Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks> Reviewed-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Tested-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* boost: add target build stepPeter Korsgaard2015-12-051-0/+8
| | | | | | | | The build step for the target was missing, causing the compilation to happen during the staging install step. Add a dedicated build step like we do for the host build. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* boost: reorder build stepsPeter Korsgaard2015-12-051-15/+15
| | | | | | | | | The host and target build steps were mixed between eachother. Reorder them so we have the target steps before the host ones. No functional change, but helps readability. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* boost: make package less verbose when building with -sPeter Korsgaard2015-12-051-4/+8
| | | | | | | | | | The boost build is very verbose (11K+ lines even when no sub options are enabled). While this can be handy for debugging, make is less verbose when 'make -s' is used, similar to how we do it for autotools. With this, make -s boost outputs less than 100 lines. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* Merge branch 'next'Peter Korsgaard2015-12-011-0/+4
|\ | | | | | | Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
| * boost: specify architecture variant for sparcWaldemar Brodkorb2015-11-171-0/+4
| | | | | | | | | | | | | | | | | | | | Instead of using a patch to specify the architecture variant for sparc, use some Boost configure variables. [Thomas: reword commit log.] Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* | boost: fix sparc64 compile, set the correct instruction-setWaldemar Brodkorb2015-11-081-0/+4
|/ | | | | | | | | | The default for sparc is v7, which doesn't work for sparc64. Use ultrasparc for sparc64. Fixes following autobuild errors: http://autobuild.buildroot.net/results/0cad0a6eddc153098bb6d1501afd1cf4a57a82d1/ Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* boost: add option to build boost_coroutineEdson Siqueira2015-11-031-3/+1
| | | | | | | | | | | | | | | It was disabled by default by commit 611dfe6cb55ed72d7df3b7c102f4a723248a4037 because it caused some build failures on AArch64 and SuperH. However, the coroutine module needs the context module, which is only available on certain architectures. We can therefore allow enabling the coroutine module, but only if the context module is available. [Thomas: extend commit log with more details.] Signed-off-by: Edson Siqueira <edson.siqueira@datacom.ind.br> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* boost.mk: allow building both static and sharedJonathan Ben Avraham2015-10-261-3/+9
| | | | | | | | | | | | | | | | Use BR2_SHARED_STATIC_LIBS for building both static and shared boost libs. The static libs are copied to the staging directory. Only the shared libs are copied to the rootfs image. [Thomas: - remove empty else clause, and instead add a comment that explains why we're doing something only for the BR2_STATIC_LIBS=y and BR2_SHARED_LIBS=y. - remove trailing backslash at the end of the BOOST_CONF_OPTS definition.] Signed-off-by: Jonathan Ben Avraham <yba@tkos.co.il> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* boost.mk spelling error 'SEPERATED' -> 'SEPARATED'Jonathan Ben Avraham2015-10-251-2/+2
| | | | | Signed-off-by: Jonathan Ben Avraham <yba@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* boost: use backtick instead of $(shell ...) make functionArnout Vandecappelle2015-07-151-5/+2
| | | | | | | | Also remove the variables TARGET_CC_VERSION and HOST_CC_VERSION which lack the BOOST_ prefix and are used only once. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* Merge branch 'next'Peter Korsgaard2015-06-011-1/+1
|\ | | | | | | Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
| * package/boost: bump to version 1.58.0Jörg Krause2015-05-211-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add patch to fix build issues for mips and sh targets: error: unrecognized command line option '-m32' Fixes: http://autobuild.buildroot.org/results/66c/66c3a868816dfe4bd4d0ffafec6988fd87a2c058/ http://autobuild.buildroot.net/results/ccd/ccd5c83963032ba49b1627b1dff39e34a9486943/ Patch send upstream: https://github.com/boostorg/build/pull/76 Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks> Tested-by: Gergely Imreh <imrehg@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* | package/boost: stop on the first error during install to stagingRomain Naour2015-05-161-1/+1
|/ | | | | | | | | -q option is missing in BOOST_INSTALL_STAGING_CMDS, so the build doesn't stop on the first error. This help to see what happened. Signed-off-by: Romain Naour <romain.naour@openwide.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* Revert "package/boost: bump to version 1.58.0"Thomas Petazzoni2015-05-011-1/+1
| | | | | | | | | | | This reverts commit 25655021fb66f58afe4966face0afdda1e7be65a. Boost 1.58.0 breaks the build, trying to pass -m32 to compilers that do not support it: http://autobuild.buildroot.org/results/66c/66c3a868816dfe4bd4d0ffafec6988fd87a2c058/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/boost: bump to version 1.58.0Jörg Krause2015-05-011-1/+1
| | | | | Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* boost: add option to disable container libraryWill Wagner2015-04-201-0/+1
| | | | | Signed-off-by: Will Wagner <will_wagner@carallon.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/boost: enable building of boost_logYannick Kiekens2015-03-151-2/+2
| | | | | | | | Signed-off-by: Yannick Kiekens <yannickkiekens@gmail.com> [Thomas: tested on ARM uClibc, and AArch64 glibc, the latter being the case that used to fail building, and was the reason why boost log had been disabled.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* boost: enable boost-atomicNoé Rubinstein2015-03-131-2/+2
| | | | | | | | | | | It was disabled in february 2013 by commit e5434583badf1abf4a4620efa76452638ad9e177 because did not build correctly with ucLibc at the time. It now builds correctly with both uClibc v0.9.33 and uClibc-ng. Signed-off-by: Noé Rubinstein <nrubinstein@aldebaran.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* boost: bump to version 1.57.0Gustavo Zacarias2014-12-181-1/+1
| | | | | | | Also add hash file. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* Rename BR2_PREFER_STATIC_LIB to BR2_STATIC_LIBSThomas Petazzoni2014-12-111-2/+2
| | | | | | | | | | | | | | | | | | | | | | | Since a while, the semantic of BR2_PREFER_STATIC_LIB has been changed from "prefer static libraries when possible" to "use only static libraries". The former semantic didn't make much sense, since the user had absolutely no control/idea of which package would use static libraries, and which packages would not. Therefore, for quite some time, we have been starting to enforce that BR2_PREFER_STATIC_LIB should really build everything with static libraries. As a consequence, this patch renames BR2_PREFER_STATIC_LIB to BR2_STATIC_LIBS, and adjust the Config.in option accordingly. This also helps preparing the addition of other options to select shared, shared+static or just static. Note that we have verified that this commit can be reproduced by simply doing a global rename of BR2_PREFER_STATIC_LIB to BR2_STATIC_LIBS plus adding BR2_PREFER_STATIC_LIB to Config.in.legacy. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
* boost: ignore site configGustavo Zacarias2014-10-281-0/+4
| | | | | | | | | It can lead to build failures if you've got boost installed in the host, like this: http://stackoverflow.com/questions/23013433/how-to-install-modular-boost Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* packages: rename misc. occurrences of _OPT into _OPTSThomas De Schampheleire2014-10-041-7/+7
| | | | | | | | | To be consistent with the recent change of FOO_MAKE_OPT into FOO_MAKE_OPTS, change remaining occurrences of _OPT into _OPTS. Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* boost: force the target ABI for ARM architectureThomas Petazzoni2014-09-061-1/+9
| | | | | | | | | | | | | | | | | | Just like was done in commit b37641c95be79fcb76cbc7042c4cf21a2c64d0f6 ("boost: Force the target ABI for MIPS architecture") by Vicente for the MIPS architecture, this commit also forces the ABI passed to Boost build system to "aapcs" for the ARM architecture. Since we now have three cases to handle, an intermediate variable called BOOST_ABI is introduced. Fixes: http://autobuild.buildroot.org/results/5ae/5aeb3a9f067faf6687051643bf49a0b619cb4c3b/ Cc: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* boost: Force the target ABI for MIPS architectureVicente Olivert Riera2014-09-041-0/+1
| | | | | | | | | | | | | | | | The default ABI used in boost is 'sysv' which is not valid for MIPS. Given the boost build system doesn't detect the right ABI when we are cross-compiling, we fix this by passing the right ABI directly to the boost options for the target. Related: https://svn.boost.org/trac/boost/ticket/10442 Fixes: http://autobuild.buildroot.net/results/79f/79fe4caffb9a3b9f1b203498a589a5172bd0acea/ Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/boost: Bump version to 1.56.0Bernd Kuhls2014-08-181-1/+1
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* boost: make build with python an optionJohan Derycke2014-03-291-2/+18
| | | | | | | | Add an option to boost to build the Boost.Python library. http://www.boost.org/doc/libs/1_55_0/libs/python/doc/index.html Signed-off-by: Johan Derycke <johan.derycke@barco.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* Added support for configuration of boost binary names layoutUwe Kindler2014-03-151-3/+4
| | | | | | | | [Peter: fix trailing whitescape / too long lines] Signed-off-by: Uwe Kindler <uwe_kindler@web.de> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Reviewed-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package: unification of use $(subst [._-], [._-], $(<PKG>_VERSION)) macroJerzy Grzegorek2014-01-141-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently, there are five packages which use 'subst' macro to change their version. * Three of them (ebtables, icu, perl) use this macro "in place" : EBTABLES_SITE = http://downloads.sourceforge.net/project/ebtables/ebtables/ebtables-$(subst .,-,$(EBTABLES_VERSION)) ICU_SOURCE = icu4c-$(subst .,_,$(ICU_VERSION))-src.tgz PERL_CROSS_OLD_POD = perl$(subst .,,$(PERL_CROSS_BASE_VERSION))delta.pod PERL_CROSS_NEW_POD = perl$(subst .,,$(PERL_VERSION))delta.pod * Two of them (boost, libnss) use an additional variable : BOOST_FILE_VERSION = $(subst .,_,$(BOOST_VERSION)) BOOST_SOURCE = boost_$(BOOST_FILE_VERSION).tar.bz2 LIBNSS_SITE_VERSION = $(subst .,_,$(LIBNSS_VERSION)) LIBNSS_SITE = https://ftp.mozilla.org/pub/mozilla.org/security/nss/releases/NSS_$(LIBNSS_SITE_VERSION)_RTM/src * Additionally two packages (duma, rings) doesn't use it at all : DUMA_VERSION = 2_5_15 DUMA_SITE = http://downloads.sourceforge.net/project/duma/duma/2.5.15 RINGS_VERSION_MAJOR = 1.3.0 RINGS_SUBDIR = rings-v_1_3_0 This commit makes changes to use 'subst' macro "in place", in all of them. Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* boost: bump to version 1.55.0Bernd Kuhls2014-01-131-1/+1
| | | | | Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* boost: add licensing infoGustavo Zacarias2013-12-111-0/+2
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* boost: fixup host variant dependenciesGustavo Zacarias2013-12-111-3/+1
| | | | | | | | | | | | | | Define an empty HOST_BOOST_DEPENDENCIES to avoid inheriting BOOST_DEPENDENCIES. Also ditch redundant empty definitions for BOOST_DEPENDENCIES and BOOST_FLAGS. Fixes: http://autobuild.buildroot.net/results/9c6/9c64dd473a8096bb6343d746544997e333053e8b/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Reviewed-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* boost: add host variantGustavo Zacarias2013-12-081-0/+33
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* boost: fix build failures after version bumpGustavo Zacarias2013-10-141-1/+3
| | | | | | | | | | | | | | | | | | Fix build failures that happened after the version bump such as: http://autobuild.buildroot.net/results/570/570b091702763b29843d9207bc14dea67085fea0/ http://autobuild.buildroot.net/results/c26/c26498f1a4e6bcbc3a2dfce6a51fa7d21b72f21f/ and other failures by disabling the new (1.54+) coroutine and log libraries which weren't handled and hence enabled by default. These also made the target size bigger and build times longer unnecessarily. When/if they are needed for some future user this can be revisited and their proper conditions for enablement assesed. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Acked-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* boost: bump to version 1.54.0Jerzy Grzegorek2013-10-101-1/+1
| | | | | Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* Introduce BR2_TOOLCHAIN_USES_{UCLIBC, GLIBC}Thomas Petazzoni2013-07-041-1/+1
| | | | | | | | | | | | | | | | | Currently, when we need to do a conditional on the type of C library used, we need to take into account the three toolchain backends. As we are going to add eglibc support to the Buildroot toolchain backend, it would become even uglier, so this patch introduces two new hidden options: BR2_TOOLCHAIN_USES_UCLIBC and BR2_TOOLCHAIN_USES_GLIBC, that exist regardless of the toolchain backend. The entire Buildroot code base is converted to use those options. Note that we have intentionally created only one option (BR2_TOOLCHAIN_USES_GLIBC) for both glibc and eglibc, since they are essentially the same, as far as Buildroot is concerned. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* boost: only the iostreams library requires bzip2 and zlibWill Wagner2013-06-111-1/+5
| | | | | Signed-off-by: Will Wagner <will_wagner@carallon.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Normalize separator size to 80Alexandre Belloni2013-06-061-2/+2
| | | | | Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Convert headers to lower case when relevantAlexandre Belloni2013-06-061-1/+1
| | | | | Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* boost: fix build of context libraryPatrick Ziegler2013-04-151-1/+1
| | | | | Signed-off-by: Patrick Ziegler <patrick.ziegler@fh-kl.de> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* boost: bump version to 1.53.0Victor Hiairrassary2013-04-141-2/+5
| | | | | | | | | and re-enable boost context library since its compilation with uClibc is fixed. Disable new atomic library because it can not compile with uClibc (fixed in upstream version). Signed-off-by: Victor Hiairrassary <victor.hiairrassary.ml@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* boost: Pass staging dir to --with-icu option.Ignacy Gawedzki2013-02-091-1/+1
| | | | | | | | | | | | | | | | | When using the --with-icu option without specifying the directory, boost's bootstrap.sh script will look at "common" locations (lines 289-294): COMMON_ICU_PATHS="/usr /usr/local /sw" for p in $COMMON_ICU_PATHS; do if test -r $p/include/unicode/utypes.h; then ICU_ROOT=$p fi done With buildroot it may surely become problematic at some point. Signed-off-by: Ignacy Gawędzki <i@lri.fr> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* boost: slightly reduce the verbosity of the buildThomas Petazzoni2013-01-151-2/+2
| | | | | | | | | | | | | | | | | | | At the moment, the boost build is very verbose, it gives both the Jam-level command being executed, and the underlying system command being executed, with lots of newlines. Makes it hard to see where the failure is when there is one. So, we reduce the verbosity level to -d+1, which only gives the Jam-level command. So now, it looks like: common.copy /home/test/outputs/e/host/usr/aarch64-buildroot-linux-gnu/sysroot/usr/include/boost/geometry/multi/multi.hpp common.mkdir /home/test/outputs/e/host/usr/aarch64-buildroot-linux-gnu/sysroot/usr/include/boost/geometry/strategies gcc.compile.c++ bin.v2/libs/regex/build/gcc-4.7.3/release/threading-multi/icu.o gcc.compile.c++ bin.v2/libs/regex/build/gcc-4.7.3/release/threading-multi/regex_debug.o gcc.compile.c++ bin.v2/libs/regex/build/gcc-4.7.3/release/threading-multi/regex_raw_buffer.o Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* boost: fix build problem by always building a threaded versionThomas Petazzoni2013-01-151-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Boost normally allows to build a non-threaded variant by passing threading=single or a multi-threaded variant by passing threading=multi. Unfortunately, the build of threading=single doesn't seem to work any more, due to bizarre things in the build system. We get "duplicate target" errors, that according to http://lists.boost.org/boost-build/2012/11/26582.php should appear if we ask for both threading=single,multi. But it seems to happen even in the threading=single case. Since Boost is such a big C++ beast, it probably doesn't make much sense to try to support it on toolchains that don't have thread support. So, we make the boost package depend on thread support. If someone cares enough in getting Boost to work in a non-threaded environment, then we can always revert back. Note that the boost package has no reverse dependencies in Buildroot, so we don't need to propagate this new dependency anywhere. Fixes: http://autobuild.buildroot.org/results/439e72ac74c8058f30977e6abc39acd6379a17d3/build-end.log Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
OpenPOWER on IntegriCloud