blob: 291a052ec6f05dfb090bba5cee7d2528d2cfbacd [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 Williamsd8c66bc2016-06-20 12:57:21 -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 \
31 log \
Patrick Williamsc0f7c042017-02-23 20:41:17 -060032 math \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050033 program_options \
34 random \
35 regex \
36 serialization \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050037 system \
38 test \
39 thread \
Andrew Geisslerf0343792020-11-18 10:42:21 -060040 timer \
41 type_erasure \
Patrick Williamsc0f7c042017-02-23 20:41:17 -060042 wave \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050043 "
44
Patrick Williamsc0f7c042017-02-23 20:41:17 -060045# optional libraries
Brad Bishopd7bf8c12018-02-25 22:55:05 -050046PACKAGECONFIG ??= "locale python"
Patrick Williamsc0f7c042017-02-23 20:41:17 -060047PACKAGECONFIG[locale] = ",,icu"
48PACKAGECONFIG[graph_parallel] = ",,,boost-mpi mpich"
49PACKAGECONFIG[mpi] = ",,mpich"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050050PACKAGECONFIG[python] = ",,python3"
Patrick Williamsc0f7c042017-02-23 20:41:17 -060051
52BOOST_LIBS += "\
Brad Bishop6e60e8b2018-02-01 10:27:11 -050053 ${@bb.utils.filter('PACKAGECONFIG', 'locale python', d)} \
Patrick Williamsc0f7c042017-02-23 20:41:17 -060054 ${@bb.utils.contains('PACKAGECONFIG', 'graph_parallel', 'graph_parallel mpi', \
Brad Bishop6e60e8b2018-02-01 10:27:11 -050055 bb.utils.filter('PACKAGECONFIG', 'mpi', d), d)} \
Patrick Williamsc0f7c042017-02-23 20:41:17 -060056"
57
Brad Bishop6e60e8b2018-02-01 10:27:11 -050058inherit python3-dir
Patrick Williamsc124f4f2015-09-15 14:41:29 -050059PYTHON_ROOT = "${STAGING_DIR_HOST}/${prefix}"
60
61# Make a package for each library, plus -dev
62PACKAGES = "${PN}-dbg ${BOOST_PACKAGES}"
63python __anonymous () {
64 packages = []
65 extras = []
Andrew Geisslerd1e89492021-02-12 15:35:20 -060066 pn = d.getVar("PN")
Andrew Geissler1e34c2d2020-05-29 16:02:59 -050067 mlprefix = d.getVar("MLPREFIX")
Brad Bishop6e60e8b2018-02-01 10:27:11 -050068 for lib in d.getVar('BOOST_LIBS').split():
69 extras.append("--with-%s" % lib)
Andrew Geissler1e34c2d2020-05-29 16:02:59 -050070 pkg = "boost-%s" % (lib.replace("_", "-"))
Andrew Geisslerd1e89492021-02-12 15:35:20 -060071 if "-native" in pn:
72 pkg = pkg + "-native"
Andrew Geissler1e34c2d2020-05-29 16:02:59 -050073 packages.append(mlprefix + pkg)
Brad Bishop6e60e8b2018-02-01 10:27:11 -050074 if not d.getVar("FILES_%s" % pkg):
Andrew Geissler1e34c2d2020-05-29 16:02:59 -050075 d.setVar("FILES_%s%s" % (mlprefix, pkg), "${libdir}/libboost_%s*.so.*" % lib)
76 else:
77 d.setVar("FILES_%s%s" % (mlprefix, pkg), d.getVar("FILES_%s" % pkg))
78
Patrick Williamsc124f4f2015-09-15 14:41:29 -050079 d.setVar("BOOST_PACKAGES", " ".join(packages))
80 d.setVar("BJAM_EXTRA", " ".join(extras))
81}
82
83# Override the contents of specific packages
Patrick Williamsc0f7c042017-02-23 20:41:17 -060084FILES_${PN}-graph_parallel = "${libdir}/libboost_graph_parallel.so.*"
85FILES_${PN}-locale = "${libdir}/libboost_locale.so.*"
86FILES_${PN}-mpi = "${libdir}/mpi.so ${libdir}/libboost_mpi*.so.*"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050087FILES_boost-serialization = "${libdir}/libboost_serialization*.so.* \
88 ${libdir}/libboost_wserialization*.so.*"
89FILES_boost-test = "${libdir}/libboost_prg_exec_monitor*.so.* \
90 ${libdir}/libboost_unit_test_framework*.so.*"
91
92# -dev last to pick up the remaining stuff
93PACKAGES += "${PN}-dev ${PN}-staticdev"
Brad Bishop79641f22019-09-10 07:20:22 -040094FILES_${PN}-dev = "${includedir} ${libdir}/libboost_*.so ${libdir}/cmake"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050095FILES_${PN}-staticdev = "${libdir}/libboost_*.a"
96
97# "boost" is a metapackage which pulls in all boost librabries
98PACKAGES += "${PN}"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050099FILES_${PN} = ""
100ALLOW_EMPTY_${PN} = "1"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500101RRECOMMENDS_${PN} += "${BOOST_PACKAGES}"
102RRECOMMENDS_${PN}_class-native = ""
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500103
104# to avoid GNU_HASH QA errors added LDFLAGS to ARCH; a little bit dirty but at least it works
105TARGET_CC_ARCH += "${LDFLAGS}"
106
107# Oh yippee, a new build system, it's sooo cooool I could eat my own
108# foot. inlining=on lets the compiler choose, I think. At least this
109# stuff is documented...
110# NOTE: if you leave <debug-symbols>on then in a debug build the build sys
111# objcopy will be invoked, and that won't work. Building debug apparently
112# requires hacking gcc-tools.jam
113#
114# Sometimes I wake up screaming. Famous figures are gathered in the nightmare,
115# Steve Bourne, Larry Wall, the whole of the ANSI C committee. They're just
116# standing there, waiting, but the truely terrifying thing is what they carry
117# in their hands. At first sight each seems to bear the same thing, but it is
118# not so for the forms in their grasp are ever so slightly different one from
119# the other. Each is twisted in some grotesque way from the other to make each
120# an unspeakable perversion impossible to perceive without the onset of madness.
121# True insanity awaits anyone who perceives all of these horrors together.
122#
123# Quotation marks, there might be an easier way to do this, but I can't find
124# it. The problem is that the user.hpp configuration file must receive a
125# pre-processor macro defined as the appropriate string - complete with "'s
126# around it. (<> is a possibility here but the danger to that is that the
127# failure case interprets the < and > as shell redirections, creating
128# random files in the source tree.)
129#
130#bjam: '-DBOOST_PLATFORM_CONFIG=\"config\"'
131#do_compile: '-sGCC=... '"'-DBOOST_PLATFORM_CONFIG=\"config\"'"
132SQD = '"'
133EQD = '\"'
134#boost.bb: "... '-sGCC=... '${SQD}'-DBOOST_PLATFORM_CONFIG=${EQD}config${EQD}'${SQD} ..."
135BJAM_CONF = "${SQD}'-DBOOST_PLATFORM_CONFIG=${EQD}boost/config/platform/${TARGET_OS}.hpp${EQD}'${SQD}"
136
137BJAM_TOOLS = "--ignore-site-config \
138 '-sTOOLS=gcc' \
139 '-sGCC=${CC} '${BJAM_CONF} \
140 '-sGXX=${CXX} '${BJAM_CONF} \
141 '-sGCC_INCLUDE_DIRECTORY=${STAGING_INCDIR}' \
142 '-sGCC_STDLIB_DIRECTORY=${STAGING_LIBDIR}' \
143 '-sBUILD=release <optimization>space <threading>multi <inlining>on <debug-symbols>off' \
144 '-sPYTHON_ROOT=${PYTHON_ROOT}' \
145 '--layout=system' \
146 "
147
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800148# use PARALLEL_MAKE to speed up the build
149BOOST_PARALLEL_MAKE = "${@oe.utils.parallel_make_argument(d, '-j%d')}"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500150BJAM_OPTS = '${BOOST_PARALLEL_MAKE} -d+2 -q \
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500151 ${BJAM_TOOLS} \
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600152 -sBOOST_BUILD_USER_CONFIG=${WORKDIR}/user-config.jam \
Andrew Geisslerc3d88e42020-10-02 09:45:00 -0500153 --build-dir=${B} \
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500154 --disable-icu \
155 ${BJAM_EXTRA}'
156
157# Native compilation of bzip2 isn't working
158BJAM_OPTS_append_class-native = ' -sNO_BZIP2=1'
159
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500160# Adjust the build for x32
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500161BJAM_OPTS_append_x86-x32 = " abi=x32 address-model=64"
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500162
Vernon Mauery0d70daf2018-09-25 14:17:59 -0700163# cross compiling for arm fails to detect abi, so provide some help
164BJAM_OPTS_append_arm = " abi=aapcs architecture=arm"
Brad Bishop08902b02019-08-20 09:16:51 -0400165BJAM_OPTS_append_aarch64 = " abi=aapcs address-model=64 architecture=arm"
Vernon Mauery0d70daf2018-09-25 14:17:59 -0700166
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600167do_configure() {
Andrew Geisslerc3d88e42020-10-02 09:45:00 -0500168 cd ${S}
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600169 cp -f ${S}/boost/config/platform/linux.hpp ${S}/boost/config/platform/linux-gnueabi.hpp
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500170
171 # D2194:Fixing the failure of "error: duplicate initialization of gcc with the following parameters" during compilation.
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600172 rm -f ${WORKDIR}/user-config.jam
Andrew Geisslerf0343792020-11-18 10:42:21 -0600173 echo 'using gcc : : ${CXX} : <cflags>"${CFLAGS}" <cxxflags>"${CXXFLAGS}" <linkflags>"${LDFLAGS}" ;' >> ${WORKDIR}/user-config.jam
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500174
175 # If we want Python then we need to tell Boost *exactly* where to find it
176 if ${@bb.utils.contains('BOOST_LIBS', 'python', 'true', 'false', d)}; then
177 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
178 fi
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600179
180 if ${@bb.utils.contains('BOOST_LIBS', 'mpi', 'true', 'false', d)}; then
181 echo "using mpi : : <find-shared-library>mpi ;" >> ${WORKDIR}/user-config.jam
182 fi
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500183
Andrew Geisslerf0343792020-11-18 10:42:21 -0600184 CC="${BUILD_CC}" CFLAGS="${BUILD_CFLAGS}" ./bootstrap.sh --with-bjam=b2 --with-toolset=gcc
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500185
186 # Boost can't be trusted to find Python on it's own, so remove any mention
187 # of it from the boost configuration
188 sed -i '/using python/d' ${S}/project-config.jam
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500189}
190
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500191do_compile() {
Andrew Geisslerc3d88e42020-10-02 09:45:00 -0500192 cd ${S}
Andrew Geisslerf0343792020-11-18 10:42:21 -0600193 b2 ${BJAM_OPTS} \
Andrew Geisslerc3d88e42020-10-02 09:45:00 -0500194 --prefix=${prefix} \
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500195 --exec-prefix=${exec_prefix} \
196 --libdir=${libdir} \
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500197 --includedir=${includedir} \
198 --debug-configuration
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500199}
200
201do_install() {
Andrew Geisslerc3d88e42020-10-02 09:45:00 -0500202 cd ${S}
Andrew Geisslerf0343792020-11-18 10:42:21 -0600203 b2 ${BJAM_OPTS} \
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500204 --libdir=${D}${libdir} \
205 --includedir=${D}${includedir} \
206 install
207 for lib in ${BOOST_LIBS}; do
208 if [ -e ${D}${libdir}/libboost_${lib}.a ]; then
209 ln -s libboost_${lib}.a ${D}${libdir}/libboost_${lib}-mt.a
210 fi
211 if [ -e ${D}${libdir}/libboost_${lib}.so ]; then
212 ln -s libboost_${lib}.so ${D}${libdir}/libboost_${lib}-mt.so
213 fi
214 done
215
Andrew Geissler82c905d2020-04-13 13:39:40 -0500216 # Cmake files reference full paths to image
217 find ${D}${libdir}/cmake -type f | \
218 grep 'cmake$' | \
219 xargs -n 1 sed -e 's,${D}${libdir}/cmake,${libdir}/cmake,' -i
220
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500221}
222
223BBCLASSEXTEND = "native nativesdk"