summaryrefslogtreecommitdiffstats
path: root/package/boost
Commit message (Collapse)AuthorAgeFilesLines
* boost: Limit architectures which can build boost context libraryWill Newton2013-05-231-0/+2
| | | | | | | | The boost context library needs porting to each new architecture and only a limited number of ports are currently available. Signed-off-by: Will Newton <will.newton@linaro.org> 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-142-2/+8
| | | | | | | | | 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-152-11/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* boost: bump to version 1.52.0Victor Hiairrassary2012-12-122-4/+5
| | | | | | | | | [Peter: merge largefile comment with C++ one] Signed-off-by: Victor Hiairrassary <victor.hiairrassary.ml@gmail.com> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Tested-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> (x86_64 Sourcery toolchain) Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* remove rest of the BR2_SOURCEFORGE_MIRROR referencesStefan Fröberg2012-08-281-1/+1
| | | | | Signed-off-by: Stefan Fröberg <stefan.froberg@petroprogram.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* all packages: rename XXXTARGETS to xxx-packageArnout Vandecappelle (Essensium/Mind)2012-07-171-1/+1
| | | | | | | | | | | | | Also remove the redundant $(call ...). This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* boost: change uses of BR2_JLEVEL to PARALLEL_JOBSNathan Lynch2012-06-241-2/+2
| | | | | Signed-off-by: Nathan Lynch <ntl@pobox.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* boost: add an option to run cmds in parallelYegor Yefremov2012-05-011-2/+2
| | | | | | | Add the same -jN parameter as used for make. Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* boost: pass -dumpversion to user-config.jamYegor Yefremov2012-04-161-1/+1
| | | | | | | | | Short version avoids compiling problems with toolchains containing long version string like Linaro toolchain. [Peter: drop head/sed as -dumpversion returns version directly] Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* boost: cleanupPeter Korsgaard2012-04-161-14/+6
| | | | | | Move common staging/target bjam arguments into BOOST_OPT. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* boost: fix build with uClibc, add locale/timer modules optionsPeter Korsgaard2012-04-162-5/+24
| | | | | | | | | | | | Boost 1.49 added two new modules, locale and timer - So add sub options to control compilation of those. The locale module by default compiles the posix backend under Linux, but this needs monetary.h which isn't provided by uClibc, so work around that. While we're at it, hide the icu option as that is just an internal configuration option used by E.G. the locale module. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* boost: bump to 1.49.0Yegor Yefremov2012-04-141-1/+1
| | | | | Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* boost: Add comment when C++ is missingStephan Thamm2012-03-161-0/+3
| | | | | | | [Peter: move above boost option so sub options gets indented] Signed-off-by: Stephan Thamm <thammi@chaossource.net> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* boost: fix build with ccachePeter Korsgaard2012-01-301-1/+1
| | | | | | | | Drop quotes around TARGET_CXX as the boost buildsystem does handle spaces in the compiler command name, but treats it as a single command (and errors out) if quotes are used and ccache enabled. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* boost: New package added. Version 1.47Yegor Yefremov2012-01-302-0/+162
[Peter: Config.in tweaks] Signed-off-by: Allan W. Nielsen <a@awn.dk> Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>