diff options
author | Adam Duskett <aduskett@gmail.com> | 2017-10-24 11:15:05 -0400 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-10-29 15:40:36 +0100 |
commit | a43ddc79fe2100ffde0a653085aecfdb468de74b (patch) | |
tree | f13aee519387a21add125bdf11f11dff8b673e1c | |
parent | 765453a278a01fe703f21b11b35e1cb787bb22e9 (diff) | |
download | buildroot-a43ddc79fe2100ffde0a653085aecfdb468de74b.tar.gz buildroot-a43ddc79fe2100ffde0a653085aecfdb468de74b.zip |
boost: add option for the stacktrace library
stacktrace requires dynamic library support, which was causing the
following build errors:
http://autobuild.buildroot.net/results/692ffad93a7bd867ecc7ccbfc8c6280735d29435/
http://autobuild.buildroot.net/results/6058ece804889abaaab0a29258e1de2904162d26/
http://autobuild.buildroot.net/results/12df9b345a90a4e011b8bb4cb1d1ef1c2c7040c0/
http://autobuild.buildroot.net/results/7473c433e93b3e785e44d9868fec517437f59847/
Adding an option for it allows to have it disabled by default, and
make sure it only gets enabled when shared library support is
available.
Signed-off-by: Adam Duskett <aduskett@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/boost/Config.in | 9 | ||||
-rw-r--r-- | package/boost/boost.mk | 1 |
2 files changed, 10 insertions, 0 deletions
diff --git a/package/boost/Config.in b/package/boost/Config.in index 37a7e7339f..e69e6c64af 100644 --- a/package/boost/Config.in +++ b/package/boost/Config.in @@ -158,6 +158,15 @@ config BR2_PACKAGE_BOOST_SERIALIZATION config BR2_PACKAGE_BOOST_SIGNALS bool "boost-signals" +config BR2_PACKAGE_BOOST_STACKTRACE + bool "boost-stacktrace" + depends on !BR2_STATIC_LIBS + help + Gather, store, copy and print backtraces. + +comment "boost-stacktrace needs a toolchain w/ dynamic library" + depends on BR2_STATIC_LIBS + config BR2_PACKAGE_BOOST_SYSTEM bool "boost-system" diff --git a/package/boost/boost.mk b/package/boost/boost.mk index 0fd6c4d0de..750b40f7d2 100644 --- a/package/boost/boost.mk +++ b/package/boost/boost.mk @@ -42,6 +42,7 @@ BOOST_WITHOUT_FLAGS += $(if $(BR2_PACKAGE_BOOST_RANDOM),,random) BOOST_WITHOUT_FLAGS += $(if $(BR2_PACKAGE_BOOST_REGEX),,regex) BOOST_WITHOUT_FLAGS += $(if $(BR2_PACKAGE_BOOST_SERIALIZATION),,serialization) BOOST_WITHOUT_FLAGS += $(if $(BR2_PACKAGE_BOOST_SIGNALS),,signals) +BOOST_WITHOUT_FLAGS += $(if $(BR2_PACKAGE_BOOST_STACKTRACE),,stacktrace) BOOST_WITHOUT_FLAGS += $(if $(BR2_PACKAGE_BOOST_SYSTEM),,system) BOOST_WITHOUT_FLAGS += $(if $(BR2_PACKAGE_BOOST_TEST),,test) BOOST_WITHOUT_FLAGS += $(if $(BR2_PACKAGE_BOOST_THREAD),,thread) |