blob: 4263e645de1cf5eef21292461c40ba3490476a7e [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001SUMMARY = "Free peer-reviewed portable C++ source libraries"
Andrew Geissler90fd73c2021-03-05 15:25:55 -06002DESCRIPTION = "Provides free peer-reviewed portable C++ source libraries. The emphasis is on libraries which work well with the C++ \
3Standard Library. One goal is to establish 'existing practice' and \
4provide reference implementations so that the Boost libraries are suitable for eventual standardization. Some of the libraries have already been proposed for inclusion in the C++ Standards Committee's \
5upcoming C++ Standard Library Technical Report."
Patrick Williamsc124f4f2015-09-15 14:41:29 -05006SECTION = "libs"
Andrew Geisslerf0343792020-11-18 10:42:21 -06007DEPENDS = "boost-build-native zlib bzip2"
Patrick Williamsc124f4f2015-09-15 14:41:29 -05008
Brad Bishop96ff1982019-08-19 13:50:42 -04009CVE_PRODUCT = "boost:boost"
10
Patrick Williams213cb262021-08-07 19:21:33 -050011ARM_INSTRUCTION_SET:armv4 = "arm"
12ARM_INSTRUCTION_SET:armv5 = "arm"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050013
Andrew Geisslerc3d88e42020-10-02 09:45:00 -050014B = "${WORKDIR}/build"
15do_configure[cleandirs] = "${B}"
16
Patrick Williamsc124f4f2015-09-15 14:41:29 -050017BOOST_LIBS = "\
18 atomic \
19 chrono \
Patrick Williamsc0f7c042017-02-23 20:41:17 -060020 container \
Andrew Geisslerf0343792020-11-18 10:42:21 -060021 context \
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080022 contract \
Andrew Geisslerf0343792020-11-18 10:42:21 -060023 coroutine \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050024 date_time \
Patrick Williamsc0f7c042017-02-23 20:41:17 -060025 exception \
Andrew Geisslerf0343792020-11-18 10:42:21 -060026 fiber \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050027 filesystem \
28 graph \
Andrew Geisslerf0343792020-11-18 10:42:21 -060029 headers \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050030 iostreams \
Andrew Geissler7e0e3c02022-02-25 20:34:39 +000031 json \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050032 log \
Patrick Williamsc0f7c042017-02-23 20:41:17 -060033 math \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050034 program_options \
35 random \
36 regex \
37 serialization \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050038 system \
39 test \
40 thread \
Andrew Geisslerf0343792020-11-18 10:42:21 -060041 timer \
42 type_erasure \
Patrick Williamsc0f7c042017-02-23 20:41:17 -060043 wave \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050044 "
45
Patrick Williamsc0f7c042017-02-23 20:41:17 -060046# optional libraries
Brad Bishopd7bf8c12018-02-25 22:55:05 -050047PACKAGECONFIG ??= "locale python"
Patrick Williamsc0f7c042017-02-23 20:41:17 -060048PACKAGECONFIG[locale] = ",,icu"
49PACKAGECONFIG[graph_parallel] = ",,,boost-mpi mpich"
50PACKAGECONFIG[mpi] = ",,mpich"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050051PACKAGECONFIG[python] = ",,python3"
Patrick Williamsc0f7c042017-02-23 20:41:17 -060052
53BOOST_LIBS += "\
Brad Bishop6e60e8b2018-02-01 10:27:11 -050054 ${@bb.utils.filter('PACKAGECONFIG', 'locale python', d)} \
Patrick Williamsc0f7c042017-02-23 20:41:17 -060055 ${@bb.utils.contains('PACKAGECONFIG', 'graph_parallel', 'graph_parallel mpi', \
Brad Bishop6e60e8b2018-02-01 10:27:11 -050056 bb.utils.filter('PACKAGECONFIG', 'mpi', d), d)} \
Patrick Williamsc0f7c042017-02-23 20:41:17 -060057"
58
Brad Bishop6e60e8b2018-02-01 10:27:11 -050059inherit python3-dir
Patrick Williamsc124f4f2015-09-15 14:41:29 -050060PYTHON_ROOT = "${STAGING_DIR_HOST}/${prefix}"
61
62# Make a package for each library, plus -dev
63PACKAGES = "${PN}-dbg ${BOOST_PACKAGES}"
64python __anonymous () {
65 packages = []
66 extras = []
Andrew Geisslerd1e89492021-02-12 15:35:20 -060067 pn = d.getVar("PN")
Andrew Geissler1e34c2d2020-05-29 16:02:59 -050068 mlprefix = d.getVar("MLPREFIX")
Brad Bishop6e60e8b2018-02-01 10:27:11 -050069 for lib in d.getVar('BOOST_LIBS').split():
70 extras.append("--with-%s" % lib)
Andrew Geissler1e34c2d2020-05-29 16:02:59 -050071 pkg = "boost-%s" % (lib.replace("_", "-"))
Andrew Geisslerd1e89492021-02-12 15:35:20 -060072 if "-native" in pn:
73 pkg = pkg + "-native"
Andrew Geissler1e34c2d2020-05-29 16:02:59 -050074 packages.append(mlprefix + pkg)
Patrick Williams213cb262021-08-07 19:21:33 -050075 if not d.getVar("FILES:%s" % pkg):
76 d.setVar("FILES:%s%s" % (mlprefix, pkg), "${libdir}/libboost_%s*.so.*" % lib)
Andrew Geissler1e34c2d2020-05-29 16:02:59 -050077 else:
Patrick Williams213cb262021-08-07 19:21:33 -050078 d.setVar("FILES:%s%s" % (mlprefix, pkg), d.getVar("FILES:%s" % pkg))
Andrew Geissler1e34c2d2020-05-29 16:02:59 -050079
Patrick Williamsc124f4f2015-09-15 14:41:29 -050080 d.setVar("BOOST_PACKAGES", " ".join(packages))
81 d.setVar("BJAM_EXTRA", " ".join(extras))
82}
83
84# Override the contents of specific packages
Patrick Williams213cb262021-08-07 19:21:33 -050085FILES:${PN}-graph_parallel = "${libdir}/libboost_graph_parallel.so.*"
86FILES:${PN}-locale = "${libdir}/libboost_locale.so.*"
87FILES:${PN}-mpi = "${libdir}/mpi.so ${libdir}/libboost_mpi*.so.*"
88FILES:boost-serialization = "${libdir}/libboost_serialization*.so.* \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050089 ${libdir}/libboost_wserialization*.so.*"
Patrick Williams213cb262021-08-07 19:21:33 -050090FILES:boost-test = "${libdir}/libboost_prg_exec_monitor*.so.* \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050091 ${libdir}/libboost_unit_test_framework*.so.*"
92
93# -dev last to pick up the remaining stuff
94PACKAGES += "${PN}-dev ${PN}-staticdev"
Patrick Williams213cb262021-08-07 19:21:33 -050095FILES:${PN}-dev = "${includedir} ${libdir}/libboost_*.so ${libdir}/cmake"
96FILES:${PN}-staticdev = "${libdir}/libboost_*.a"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050097
98# "boost" is a metapackage which pulls in all boost librabries
99PACKAGES += "${PN}"
Patrick Williams213cb262021-08-07 19:21:33 -0500100FILES:${PN} = ""
101ALLOW_EMPTY:${PN} = "1"
102RRECOMMENDS:${PN} += "${BOOST_PACKAGES}"
103RRECOMMENDS:${PN}:class-native = ""
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500104
105# to avoid GNU_HASH QA errors added LDFLAGS to ARCH; a little bit dirty but at least it works
106TARGET_CC_ARCH += "${LDFLAGS}"
107
108# Oh yippee, a new build system, it's sooo cooool I could eat my own
109# foot. inlining=on lets the compiler choose, I think. At least this
110# stuff is documented...
111# NOTE: if you leave <debug-symbols>on then in a debug build the build sys
112# objcopy will be invoked, and that won't work. Building debug apparently
113# requires hacking gcc-tools.jam
114#
115# Sometimes I wake up screaming. Famous figures are gathered in the nightmare,
116# Steve Bourne, Larry Wall, the whole of the ANSI C committee. They're just
117# standing there, waiting, but the truely terrifying thing is what they carry
118# in their hands. At first sight each seems to bear the same thing, but it is
119# not so for the forms in their grasp are ever so slightly different one from
120# the other. Each is twisted in some grotesque way from the other to make each
121# an unspeakable perversion impossible to perceive without the onset of madness.
122# True insanity awaits anyone who perceives all of these horrors together.
123#
124# Quotation marks, there might be an easier way to do this, but I can't find
125# it. The problem is that the user.hpp configuration file must receive a
126# pre-processor macro defined as the appropriate string - complete with "'s
127# around it. (<> is a possibility here but the danger to that is that the
128# failure case interprets the < and > as shell redirections, creating
129# random files in the source tree.)
130#
131#bjam: '-DBOOST_PLATFORM_CONFIG=\"config\"'
132#do_compile: '-sGCC=... '"'-DBOOST_PLATFORM_CONFIG=\"config\"'"
133SQD = '"'
134EQD = '\"'
135#boost.bb: "... '-sGCC=... '${SQD}'-DBOOST_PLATFORM_CONFIG=${EQD}config${EQD}'${SQD} ..."
136BJAM_CONF = "${SQD}'-DBOOST_PLATFORM_CONFIG=${EQD}boost/config/platform/${TARGET_OS}.hpp${EQD}'${SQD}"
137
138BJAM_TOOLS = "--ignore-site-config \
139 '-sTOOLS=gcc' \
140 '-sGCC=${CC} '${BJAM_CONF} \
141 '-sGXX=${CXX} '${BJAM_CONF} \
142 '-sGCC_INCLUDE_DIRECTORY=${STAGING_INCDIR}' \
143 '-sGCC_STDLIB_DIRECTORY=${STAGING_LIBDIR}' \
144 '-sBUILD=release <optimization>space <threading>multi <inlining>on <debug-symbols>off' \
145 '-sPYTHON_ROOT=${PYTHON_ROOT}' \
146 '--layout=system' \
147 "
148
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800149# use PARALLEL_MAKE to speed up the build
150BOOST_PARALLEL_MAKE = "${@oe.utils.parallel_make_argument(d, '-j%d')}"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500151BJAM_OPTS = '${BOOST_PARALLEL_MAKE} -d+2 -q \
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500152 ${BJAM_TOOLS} \
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600153 -sBOOST_BUILD_USER_CONFIG=${WORKDIR}/user-config.jam \
Andrew Geissler87f5cff2022-09-30 13:13:31 -0500154 -sICU_PATH=${STAGING_EXECPREFIXDIR} \
Andrew Geisslerc3d88e42020-10-02 09:45:00 -0500155 --build-dir=${B} \
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500156 --disable-icu \
157 ${BJAM_EXTRA}'
158
159# Native compilation of bzip2 isn't working
Patrick Williams213cb262021-08-07 19:21:33 -0500160BJAM_OPTS:append:class-native = ' -sNO_BZIP2=1'
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500161
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500162# Adjust the build for x32
Patrick Williams213cb262021-08-07 19:21:33 -0500163BJAM_OPTS:append:x86-x32 = " abi=x32 address-model=64"
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500164
Vernon Mauery0d70daf2018-09-25 14:17:59 -0700165# cross compiling for arm fails to detect abi, so provide some help
Patrick Williams213cb262021-08-07 19:21:33 -0500166BJAM_OPTS:append:arm = " abi=aapcs architecture=arm"
167BJAM_OPTS:append:aarch64 = " abi=aapcs address-model=64 architecture=arm"
Vernon Mauery0d70daf2018-09-25 14:17:59 -0700168
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600169do_configure() {
Andrew Geisslerc3d88e42020-10-02 09:45:00 -0500170 cd ${S}
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600171 cp -f ${S}/boost/config/platform/linux.hpp ${S}/boost/config/platform/linux-gnueabi.hpp
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500172
173 # D2194:Fixing the failure of "error: duplicate initialization of gcc with the following parameters" during compilation.
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600174 rm -f ${WORKDIR}/user-config.jam
Andrew Geisslerf0343792020-11-18 10:42:21 -0600175 echo 'using gcc : : ${CXX} : <cflags>"${CFLAGS}" <cxxflags>"${CXXFLAGS}" <linkflags>"${LDFLAGS}" ;' >> ${WORKDIR}/user-config.jam
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500176
177 # If we want Python then we need to tell Boost *exactly* where to find it
178 if ${@bb.utils.contains('BOOST_LIBS', 'python', 'true', 'false', d)}; then
179 echo "using python : ${PYTHON_BASEVERSION} : ${STAGING_DIR_HOST}${bindir}/python3 : ${STAGING_DIR_HOST}${includedir}/${PYTHON_DIR}${PYTHON_ABI} : ${STAGING_DIR_HOST}${libdir}/${PYTHON_DIR} ;" >> ${WORKDIR}/user-config.jam
180 fi
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600181
182 if ${@bb.utils.contains('BOOST_LIBS', 'mpi', 'true', 'false', d)}; then
183 echo "using mpi : : <find-shared-library>mpi ;" >> ${WORKDIR}/user-config.jam
184 fi
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500185
Andrew Geisslerf0343792020-11-18 10:42:21 -0600186 CC="${BUILD_CC}" CFLAGS="${BUILD_CFLAGS}" ./bootstrap.sh --with-bjam=b2 --with-toolset=gcc
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500187
188 # Boost can't be trusted to find Python on it's own, so remove any mention
189 # of it from the boost configuration
190 sed -i '/using python/d' ${S}/project-config.jam
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500191}
192
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500193do_compile() {
Andrew Geisslerc3d88e42020-10-02 09:45:00 -0500194 cd ${S}
Andrew Geisslerf0343792020-11-18 10:42:21 -0600195 b2 ${BJAM_OPTS} \
Andrew Geisslerc3d88e42020-10-02 09:45:00 -0500196 --prefix=${prefix} \
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500197 --exec-prefix=${exec_prefix} \
198 --libdir=${libdir} \
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500199 --includedir=${includedir} \
200 --debug-configuration
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500201}
202
203do_install() {
Andrew Geisslerc3d88e42020-10-02 09:45:00 -0500204 cd ${S}
Andrew Geisslerf0343792020-11-18 10:42:21 -0600205 b2 ${BJAM_OPTS} \
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500206 --libdir=${D}${libdir} \
207 --includedir=${D}${includedir} \
208 install
209 for lib in ${BOOST_LIBS}; do
210 if [ -e ${D}${libdir}/libboost_${lib}.a ]; then
211 ln -s libboost_${lib}.a ${D}${libdir}/libboost_${lib}-mt.a
212 fi
213 if [ -e ${D}${libdir}/libboost_${lib}.so ]; then
214 ln -s libboost_${lib}.so ${D}${libdir}/libboost_${lib}-mt.so
215 fi
216 done
217
Andrew Geissler82c905d2020-04-13 13:39:40 -0500218 # Cmake files reference full paths to image
219 find ${D}${libdir}/cmake -type f | \
220 grep 'cmake$' | \
221 xargs -n 1 sed -e 's,${D}${libdir}/cmake,${libdir}/cmake,' -i
222
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500223}
224
225BBCLASSEXTEND = "native nativesdk"