aboutsummaryrefslogtreecommitdiff
path: root/libs/boost
Commit message (Collapse)AuthorAge
* boost: Updates package to version 1.84.0Carlos Miguel Ferreira2023-12-24
| | | | | | | | | | | | | | | | | | This commit updates boost to version 1.84.0 New available libraries: * *Cobalt:* Basic algorithms and types for C++20 coroutines, from Klemens Morgenstern. [2] * *Redis:* Redis async client library built on top of Boost.Asio, from Marcelo Zimbres Silva. [3] More info about Boost 1.84.0 can be found at the usual place [1]. [1]: https://www.boost.org/users/history/version_1_84_0.html [2]: https://www.boost.org/libs/cobalt/ [3]: https://www.boost.org/libs/redis/ Signed-off-by: Carlos Miguel Ferreira <carlosmf.pt@gmail.com>
* boost: Updates package to version 1.83.0Carlos Miguel Ferreira2023-08-14
| | | | | | | | | | | | | | | This commit updates boost to version 1.83.0 A new header-only library is available: - Compat: A repository of C++11 implementations of standard components added in later C++ standards, from Peter Dimov and contributors. [1] More info about Boost 1.83.0 can be found at the usual place [2]. [1]: https://www.boost.org/doc/libs/1_83_0/libs/compat/doc/html/compat.html [2]: https://www.boost.org/users/history/version_1_83_0.html Signed-off-by: Carlos Miguel Ferreira <carlosmf.pt@gmail.com>
* boost: Updates package to version 1.82.0Carlos Miguel Ferreira2023-04-17
| | | | | | | | | | | | | | | This commit updates boost to version 1.82.0 A new header-only library is available: - MySql: a C++11 client for the MySQL database server, based on Boost.Asio, from Ruben Perez. [1] More info about Boost 1.82.0 can be found at the usual place [2]. [1]: https://www.boost.org/doc/libs/1_82_0/libs/mysql/doc/html/index.html [2]: https://www.boost.org/users/history/version_1_82_0.html Signed-off-by: Carlos Miguel Ferreira <carlosmf.pt@gmail.com>
* treewide: refactor to use PKG_BUILD_FLAGS:=ltoAndre Heider2023-04-08
| | | | | | | | | | See commit 07730ff3 "treewide: add support for "lto" in PKG_BUILD_FLAGS" on the main repository. Note: Some packages only added `-flto` to CFLAGS and not LDFLAGS. This fixes it and properly enables LTO. Signed-off-by: Andre Heider <a.heider@gmail.com>
* treewide: refactor to use PKG_BUILD_FLAGS:=gc-sectionsAndre Heider2023-04-08
| | | | | | | | | | | | See commit da370098 "treewide: add support for "gc-sections" in PKG_BUILD_FLAGS" on the main repository. Note: This only touches packages which use all three parts (-ffunction-sections, -fdata-sections and -Wl,--gc-sections) enabled by this build flag. Some packages only use a subset, and these are left unchanged for now. Signed-off-by: Andre Heider <a.heider@gmail.com>
* treewide: refactor to use PKG_BUILD_FLAGS:=no-mips16Andre Heider2023-04-08
| | | | | | | See commit 5c545bdb "treewide: replace PKG_USE_MIPS16:=0 with PKG_BUILD_FLAGS:=no-mips16" on the main repository. Signed-off-by: Andre Heider <a.heider@gmail.com>
* boost: refresh GCC options in MakefileTony Butler2022-12-22
| | | | | | | | | | | | | | | | | | | | | this Makefile still used `CONFIG_GCC_USE_VERSION_*` to select various compilation options, for GCC versions that are antiquated convert to parsing the major from the `CONFIG_GCC_VERSION` which will always exist and can also be used with range logic intent seemed to be: * `-std=gnu++20` for "=10" (and newer, probably) * `-std=gnu++14` for "=5" * `-std=gnu++17` for "not =10 and not =5" GCC 11 or 12 would likely revert to the default (6 through 9) option with those, because 10 was the newest at the time, and 11 and 12 are "not =10 and not =5" probably the GCC 5 support could be removed, not sure about 9 and 10 Signed-off-by: Tony Butler <spudz76@gmail.com>
* boost: Reset Package Release versionCarlos Miguel Ferreira2022-12-18
| | | | Signed-off-by: Carlos Miguel Ferreira <carlosmf.pt@gmail.com>
* boost: Updates package to version 1.81.0Carlos Miguel Ferreira2022-12-18
| | | | | | | | | | | | | | | | | This commit updates boost to version 1.81.0 A new library is available: - URL [1]: A library for parsing, modifying, and printing URLs using only C++11, from Vinnie Falco and Alan de Freitas. Features include fast compilation, strong invariants, and strict compliance using a memory-friendly approach. More info about Boost 1.81.0 can be found at the usual place [2]. [1]: https://www.boost.org/doc/libs/1_81_0/libs/url/doc/html/index.html [2]: https://www.boost.org/users/history/version_1_81_0.html Signed-off-by: Carlos Miguel Ferreira <carlosmf.pt@gmail.com>
* boost: restores patch for libboost_context for mips64Carlos Miguel Ferreira2022-08-23
| | | | | | | This commit restores the patch for libboost_context for mips64 given that the upstream update added in 1.80.0 does not fully fixes the issue. Signed-off-by: Carlos Miguel Ferreira <carlosmf.pt@gmail.com>
* boost: bump to version 1.80.0Carlos Miguel Ferreira2022-08-18
| | | | | | | | | | | | | | | | | | This commit updates boost to version 1.80.0 There are no new libraries in this version The following patches were removed due to upstream update: * 010-mips1.patch [1] * 910-json-array-erase-relocate.patch [2] More info about Boost 1.80.0 can be found at the usual place [3]. [1]: https://github.com/boostorg/config/pull/390 [2]: https://github.com/boostorg/json/pull/695 [3]: https://www.boost.org/users/history/version_1_80_0.html Signed-off-by: Carlos Miguel Ferreira <carlosmf.pt@gmail.com>
* boost: Updates package to version 1.79.0Carlos Miguel Ferreira2022-04-30
| | | | | | | | | | | | | | | | | | | | | | This commit updates boost to version 1.79.0 There are no new libraries in this version The following patches were removed due to upstream update: * 010-fix-b2-install.patch [1] * 020-fix-musl-build.patch [2] More info about Boost 1.79.0 can be found at the usual place [3]. Note: This package update includes a fix merged to Boost.JSON in [4] which did not make into this version. [1]: https://github.com/boostorg/build/commit/78fd284a42caabe8815cb0870b46e5567872e75b [2]: https://github.com/boostorg/interprocess/pull/162 [3]: https://www.boost.org/users/history/version_1_79_0.html [4]: https://github.com/boostorg/json/issues/692 Signed-off-by: Carlos Miguel Ferreira <carlosmf.pt@gmail.com>
* Revert "boost: Updates package to version 1.79.0"Rosen Penev2022-04-29
| | | | This reverts commit 70b7dc87d408e5a69a96bf0879f3b1f2192f7460.
* boost: Updates package to version 1.79.0Carlos Miguel Ferreira2022-04-27
| | | | | | | | | | | | | | | | This commit updates boost to version 1.79.0 There are no new libraries in this version More info about Boost 1.79.0 can be found at the usual place [1]. Note: This package update includes a fix merged to Boost.JSON in [2] which did not make into this version. [1]: https://www.boost.org/users/history/version_1_79_0.html [2]: https://github.com/boostorg/json/issues/692 Signed-off-by: Carlos Miguel Ferreira <carlosmf.pt@gmail.com>
* boost: fix libboost_context for mips64Rosen Penev2022-01-08
| | | | | | There was an upstream patch that changes mips1 to mips. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* boost: Bump to version 1.78.0Carlos Miguel Ferreira2021-12-29
| | | | | | | | | | | This commit updates boost to version 1.78.0 More info about Boost 1.78.0 can be found at the usual place [1]. No new libraries have been added. [1]: https://www.boost.org/users/history/version_1_78_0.html Signed-off-by: Carlos Miguel Ferreira <carlosmf.pt@gmail.com>
* boost: Fixes Boost.Math build for arm_xscaleCarlos Miguel Ferreira2021-09-08
| | | | | | | | | This commit adds a new patch which fixes build issue with Boost.Math. Issue is described in upstream PR boostorg/math#684 [1] [1]: https://github.com/boostorg/math/pull/684 Signed-off-by: Carlos Miguel Ferreira <carlosmf.pt@gmail.com>
* boost: Bump to version 1.77.0Carlos Miguel Ferreira2021-09-02
| | | | | | | | | | | | | | | | | | | | This commit updates boost to version 1.77.0 More info about Boost 1.77.0 can be found at the usual place [1]. There are two new libraries in this version: * Describe [2]: A C++14 reflection library, from Peter Dimov. Provides macros for describing enumerators and struct/class members, and primitives for querying this information. * Lambda2 [3]: A C++14, dependency-free, single header lambda library, from Peter Dimov. Allows simple function objects to be constructed via expressions such as: _1 + 5, _1 % 2 == 0, _1 > _2, or _1 == ' ' || _1 == '\t'. [1]: https://www.boost.org/users/history/version_1_77_0.html [2]: https://www.boost.org/libs/describe/ [3]: https://www.boost.org/libs/lambda2/ Signed-off-by: Carlos Miguel Ferreira <carlosmf.pt@gmail.com>
* boost: fix compilation error under SPARCRosen Penev2021-07-14
| | | | | | Missing braces. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* boost: Fixes Boost.regex header-only (v5) includeCarlos Miguel Ferreira2021-06-03
| | | | | | | | | | | | In v1.76.0 Boost.Regex became a header-only library. With this update, there are now two different versions: - v4 for C++03 (deprecated) - v5 header-only This commit fixes an issue which was preventing Boost.Regex from being built for old ArmV5 targets Signed-off-by: Carlos Miguel Ferreira <carlosmf.pt@gmail.com>
* boost: Bump to version 1.76.0Carlos Miguel Ferreira2021-04-20
| | | | | | | | | | | | | | | | | | This commit updates boost to version 1.76.0 There are no new libraries in this version More info about Boost 1.76.0 can be found at the usual place [1]. Note: This package update includes a fix merged to Boost.Fiber in [2] which did not make into this version but it will be present in the next one. For now, the patch is needed, but it will be removed in version 1.77.0 [1]: https://www.boost.org/users/history/version_1_76_0.html [2]: https://github.com/boostorg/fiber/pull/276 Signed-off-by: Carlos Miguel Ferreira <carlosmf.pt@gmail.com>
* boost: fixup mips64 fiber patchRosen Penev2021-03-26
| | | | | | | | | | | | | | | | | | It turns out that this is also broken on mips64el. Further testing reveals that -mips32r2 -mtune=mips32r2 -mabi=32 compiles the PAUSE instruction just fine whereas -mips64r2 -mtune=mips64r2 -mabi=64 does not. The PAUSE instruction was introduced in version 2.6 of the MIPS ISA and GCC for some reason does not allow usage of it with MIPS64. Modify the macro to fix the situation instead of just matching on octeon, which is not quite correct. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* boost: build context for mips64Rosen Penev2021-02-13
| | | | | | | | | | | | | It turns out there's upstream support for it. A small patch is needed to fix softfloat support. Also added patch to fix boost-fiber on octeon+. Failure happens because the platform is based on an old MIPSr2 standard that lacks the pause instruction. It also turns out that MIPS64 builds are done with the wrong ABI. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* boost: Adds json libraryCarlos Miguel Ferreira2020-12-14
| | | | | | | json library can work as header-only, but adding for the cases where it is necessary. Signed-off-by: Carlos Miguel Ferreira <carlosmf.pt@gmail.com>
* boost: Removes unecessary patchCarlos Miguel Ferreira2020-12-14
| | | | | | Fixed in upstream Signed-off-by: Carlos Miguel Ferreira <carlosmf.pt@gmail.com>
* boost: Updates package to version 1.75Carlos Miguel Ferreira2020-12-13
| | | | | | | | | | | | | | | | | | | | | This commit updates boost to version 1.75 This release brings three new packages * JSON parsing, serialization, and DOM in C++11, from Vinnie Falco and Krystian Stasiowski. [1] * LEAF: A lightweight error-handling library for C++11, from Emil Dotchevski. [2] * PFR: Basic reflection without macro or boilerplate code for user defined types, from Antony Polukhin. [3] More info about Boost 1.75.0 can be found at the usual place [4]. [1]: https://www.boost.org/libs/json/ [2]: https://www.boost.org/libs/leaf/ [3]: https://www.boost.org/libs/pfr/ [4]: https://www.boost.org/users/history/version_1_75_0.html Signed-off-by: Carlos Miguel Ferreira <carlosmf.pt@gmail.com>
* boost: fix boost-regex compiling failure on targets of uClibcVan Waholtz2020-10-24
| | | | Signed-off-by: Van Waholtz <vanwaholtz@gmail.com>
* boost: fix the LDFLAGS and reduce the package sizeVan Waholtz2020-10-17
| | | | | | | | | 1. Add -lstdc++ to LDFLAGS. 2. Add "-Wl,--gc-sections,--as-needed" to LDFLAGS and "-ffunction-sections -fdata-sections -flto" to CFLAGS which will reduce the size by 10% ~ 13%. 3. Only a virtual package will be created if only static libs are built, which will avoid compiliation failures. 4. Other improvements Signed-off-by: Van Waholtz <vanwaholtz@gmail.com>
* boost: refine the dependencesVan Waholtz2020-10-12
| | | | Signed-off-by: Van Waholtz <vanwaholtz@gmail.com>
* boost: replace zstd dependency with libzstdRosen Penev2020-09-18
| | | | | | libzstd is the correct one. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* boost: Package Revision - Remove unneded patchesCarlos Miguel Ferreira2020-08-19
| | | | | | This commit removes patches which are no longer needed Signed-off-by: Carlos Miguel Ferreira <carlosmf.pt@gmail.com>
* boost: Package Revision - Fix C++ standard flagCarlos Miguel Ferreira2020-08-18
| | | | | | | This commit fixes the use of the C++20 standard when GCC 10.x is used. Signed-off-by: Carlos Miguel Ferreira <carlosmf.pt@gmail.com>
* boost: Package Version Update (1.74.0)Carlos Miguel Ferreira2020-08-18
| | | | | | | | | | | | | | | | | | This commit updates Boost to version 1.74.0 In this release, there is one new libraries - STLInterfaces [2]: A library of CRTP bases to ease the writing of STL views, iterators, and sequence containers, from Zach Laine. This update also provides support to build boost with C++20 when using GCC 10.x More info about Boost 1.74.0 can be found at the usual place [1]. [1]: https://www.boost.org/users/history/version_1_74_0.html [2]: https://www.boost.org/libs/stl_interfaces/ Signed-off-by: Carlos Miguel Ferreira <carlosmf.pt@gmail.com>
* boost: Package Version Update (1.73.0)Carlos Miguel Ferreira2020-05-03
| | | | | | | | | | | | | | | | | | This commit updates Boost to version 1.73.0 In this release, there are two new libraries - Nowide [2] - Standard library functions with UTF-8 API on Windows, from Artyom Beilis. - Static String [3] - A dynamically resizable string of characters with compile-time fixed capacity and contiguous embedded storage, from Vinnie Falco and Krystian Stasiowski. More info about Boost 1.73.0 can be found at the usual place [1]. [1]: https://www.boost.org/users/history/version_1_73_0.html [2]: https://www.boost.org/libs/nowide/ [3]: https://www.boost.org/libs/static_string/ Signed-off-by: Carlos Miguel Ferreira <carlosmf.pt@gmail.com>
* boost: Remove Python 2 library packageJeffery To2020-04-01
| | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* boost: Fix embarassing ARC typoRosen Penev2019-12-21
| | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* boost: Package Version Update (1.72.0)Carlos Miguel Ferreira2019-12-21
| | | | | | | | | | | | | | | This commit updates Boost to version 1.72.0 There are no new libraries in this release. Note: - This commit also adds a post-release patch to fix an issue with Boost.Coroutine More info about Boost 1.72.0 can be found at the usual place [1]. [1]: https://www.boost.org/users/history/version_1_72_0.html Signed-off-by: Carlos Miguel Ferreira <carlosmf.pt@gmail.com>
* boost: Fix fiber compilation for mipsRosen Penev2019-11-15
| | | | | | | | | | | | | | | | | | | | The issue was that the pause instruction was emitted through an asm directive which was not correct for some mips platforms. Simplified boost-fiber-exclude as a result. Removed uClibc-ng math patch. It was not correct as it broke float and long double support (std variants use function overloads). A different solution was applied upstream. As it's quite annoying to backport, just wait until a new release comes with that change. ARC as a platform is barely supported anyways. Swapped asio patch for the upstream submission, which is unfortunately, in limbo. Refreshed remaining patch. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* boost: Remove thread dependency from contextRosen Penev2019-10-07
| | | | | | | thread is only used when the C++ mutex header is missing. AFAIK, this is the case on Windows and not on Linux. Certainly not in OpenWrt. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* boost: Remove several host librariesRosen Penev2019-10-07
| | | | | | | The facebook people have been working on removing Boost dependencies from their projects. This is the current state. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* boost: Switch to blacklist of targets for contextRosen Penev2019-09-25
| | | | | | Works around a buildbot bug. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* boost: Update host librariesRosen Penev2019-09-23
| | | | | | | | It seems newer versions of fbthrift require more libraries. Also added AR7, RB532, and Lantiq ASE to fiber exclusion. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* treewide: add PKG_CPE_ID for better cvescanner coverageJan Pavlinec2019-09-17
| | | | Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
* boost: Package Version Update (1.71.0) + bugfixesCarlos Miguel Ferreira2019-09-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | This commit updates Boost to version 1.71.0 and disables Boost.Context for arc and mips64 architectures, since either jump_fcontext or getcontext are undefined for those architectures. It also fixes a bug were Boost.Fiber was not properly disabled for mips32 and mips64 architectures. Boost.Coroutine2 option was removed since it was redundant. By selecting the Coroutine package, Coroutine2 is also installed. Boost.Fiber has been disabled for target brcm47xx_generic and brcm47xx_legacy due to misssing opcode support from instruction set. Boost 1.71.0 brings a new header-only library - Boost.Variant2 [1] -> A never-valueless, strong guarantee implementation of std::variant, from Peter Dimov. More info about Boost 1.71.0 can be found at the usual place [2]. [1]: https://www.boost.org/doc/libs/1_71_0/libs/variant2/doc/html/variant2.html [2]: https://www.boost.org/users/history/version_1_71_0.html Signed-off-by: Carlos Miguel Ferreira <carlosmf.pt@gmail.com>
* boost: fix raw kconfig syntaxJo-Philipp Wich2019-06-22
| | | | | Signed-off-by: Jo-Philipp Wich <jo@mein.io> Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
* boost: Makefile polishingJosef Schlehofer2019-06-22
| | | | | | | | | Corrected License according to SPDX in PKG_LICENSE Added PKG_LICENSE_FILES HTTPS in their website Reordered some stuff Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
* boost: Install HOST libraries to HOSTPKGRosen Penev2019-06-17
| | | | | | | | | | | | After talking to @jow on IRC, we found two problems. STAGING_DIR_HOST is designed for tools, not host packages. Changing this to HOSTPKG allows CMake and pkgconfig to work properly with fbthrift. The host-libraries should not be modular like this for host packages. Changed to eliminate them and to only build the needed ones. This can be changed as conditions change. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* boost: refresh patchesStijn Tintel2019-06-05
| | | | Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
* boost: ignore site config during host buildStijn Tintel2019-06-05
| | | | | | | | | | Without this, the host build picks up the site config in /usr/share/boost-build/site-config.jam which causes a build failure on Gentoo where a custom optimization value "none" is used. Fixes #9152. Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
* boost: add host library build for boostAmol Bhave2019-05-10
| | | | | | | | | | | | | | | | | Summary: Currently, boost host build doesn't actually compile boost libraries for the host arch. If there are host tools that would want to link against boost, it can't right now. This diff adds support for compiling host boost library as well. Any packages that need to depend on a host boost library can depend on CONFIG_boost-host-build-<lib>. Test Plan: Compiled fbthrift and verified that it works. used openwrt master using nbg6817 Maintainer: @ClaymorePT Signed-off-by: Amol Bhave <ambhave@fb.com>