blob: 41fc90fb2114abb2995315e41bd014a6ab35cda6 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001SUMMARY = "Free peer-reviewed portable C++ source libraries"
2SECTION = "libs"
3DEPENDS = "bjam-native zlib bzip2"
4
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05005ARM_INSTRUCTION_SET_armv4 = "arm"
6ARM_INSTRUCTION_SET_armv5 = "arm"
Patrick Williamsc124f4f2015-09-15 14:41:29 -05007
8BOOST_LIBS = "\
9 atomic \
10 chrono \
Patrick Williamsc0f7c042017-02-23 20:41:17 -060011 container \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050012 date_time \
Patrick Williamsc0f7c042017-02-23 20:41:17 -060013 exception \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050014 filesystem \
15 graph \
16 iostreams \
17 log \
Patrick Williamsc0f7c042017-02-23 20:41:17 -060018 math \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050019 program_options \
20 random \
21 regex \
22 serialization \
23 signals \
24 system \
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050025 timer \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050026 test \
27 thread \
Patrick Williamsc0f7c042017-02-23 20:41:17 -060028 wave \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050029 "
30
Patrick Williamsc0f7c042017-02-23 20:41:17 -060031# only supported by x86 and powerpc
32BOOST_LIBS_append_x86 = " context coroutine"
33BOOST_LIBS_append_x86-64 = " context coroutine"
34BOOST_LIBS_append_powerpc = " context coroutine"
35# need consistent settings for native builds (x86 override not applied for native)
36BOOST_LIBS_remove_class-native = " context coroutine"
Brad Bishop37a0e4d2017-12-04 01:01:44 -050037# does not compile
38BOOST_LIBS_remove_mips16e = "wave"
Patrick Williamsc0f7c042017-02-23 20:41:17 -060039
40# optional libraries
Brad Bishopd7bf8c12018-02-25 22:55:05 -050041PACKAGECONFIG ??= "locale python"
Patrick Williamsc0f7c042017-02-23 20:41:17 -060042PACKAGECONFIG[locale] = ",,icu"
43PACKAGECONFIG[graph_parallel] = ",,,boost-mpi mpich"
44PACKAGECONFIG[mpi] = ",,mpich"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050045PACKAGECONFIG[python] = ",,python3"
Patrick Williamsc0f7c042017-02-23 20:41:17 -060046
47BOOST_LIBS += "\
Brad Bishop6e60e8b2018-02-01 10:27:11 -050048 ${@bb.utils.filter('PACKAGECONFIG', 'locale python', d)} \
Patrick Williamsc0f7c042017-02-23 20:41:17 -060049 ${@bb.utils.contains('PACKAGECONFIG', 'graph_parallel', 'graph_parallel mpi', \
Brad Bishop6e60e8b2018-02-01 10:27:11 -050050 bb.utils.filter('PACKAGECONFIG', 'mpi', d), d)} \
Patrick Williamsc0f7c042017-02-23 20:41:17 -060051"
52
Brad Bishop6e60e8b2018-02-01 10:27:11 -050053inherit python3-dir
Patrick Williamsc124f4f2015-09-15 14:41:29 -050054PYTHON_ROOT = "${STAGING_DIR_HOST}/${prefix}"
55
56# Make a package for each library, plus -dev
57PACKAGES = "${PN}-dbg ${BOOST_PACKAGES}"
58python __anonymous () {
59 packages = []
60 extras = []
Brad Bishop6e60e8b2018-02-01 10:27:11 -050061 for lib in d.getVar('BOOST_LIBS').split():
62 extras.append("--with-%s" % lib)
Patrick Williamsc124f4f2015-09-15 14:41:29 -050063 pkg = "boost-%s" % lib.replace("_", "-")
64 packages.append(pkg)
Brad Bishop6e60e8b2018-02-01 10:27:11 -050065 if not d.getVar("FILES_%s" % pkg):
66 d.setVar("FILES_%s" % pkg, "${libdir}/libboost_%s*.so.*" % lib)
Patrick Williamsc124f4f2015-09-15 14:41:29 -050067 d.setVar("BOOST_PACKAGES", " ".join(packages))
68 d.setVar("BJAM_EXTRA", " ".join(extras))
69}
70
71# Override the contents of specific packages
Patrick Williamsc0f7c042017-02-23 20:41:17 -060072FILES_${PN}-graph_parallel = "${libdir}/libboost_graph_parallel.so.*"
73FILES_${PN}-locale = "${libdir}/libboost_locale.so.*"
74FILES_${PN}-mpi = "${libdir}/mpi.so ${libdir}/libboost_mpi*.so.*"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050075FILES_boost-serialization = "${libdir}/libboost_serialization*.so.* \
76 ${libdir}/libboost_wserialization*.so.*"
77FILES_boost-test = "${libdir}/libboost_prg_exec_monitor*.so.* \
78 ${libdir}/libboost_unit_test_framework*.so.*"
79
80# -dev last to pick up the remaining stuff
81PACKAGES += "${PN}-dev ${PN}-staticdev"
82FILES_${PN}-dev = "${includedir} ${libdir}/libboost_*.so"
83FILES_${PN}-staticdev = "${libdir}/libboost_*.a"
84
85# "boost" is a metapackage which pulls in all boost librabries
86PACKAGES += "${PN}"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050087FILES_${PN} = ""
88ALLOW_EMPTY_${PN} = "1"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050089RRECOMMENDS_${PN} += "${BOOST_PACKAGES}"
90RRECOMMENDS_${PN}_class-native = ""
Patrick Williamsc124f4f2015-09-15 14:41:29 -050091
92# to avoid GNU_HASH QA errors added LDFLAGS to ARCH; a little bit dirty but at least it works
93TARGET_CC_ARCH += "${LDFLAGS}"
94
95# Oh yippee, a new build system, it's sooo cooool I could eat my own
96# foot. inlining=on lets the compiler choose, I think. At least this
97# stuff is documented...
98# NOTE: if you leave <debug-symbols>on then in a debug build the build sys
99# objcopy will be invoked, and that won't work. Building debug apparently
100# requires hacking gcc-tools.jam
101#
102# Sometimes I wake up screaming. Famous figures are gathered in the nightmare,
103# Steve Bourne, Larry Wall, the whole of the ANSI C committee. They're just
104# standing there, waiting, but the truely terrifying thing is what they carry
105# in their hands. At first sight each seems to bear the same thing, but it is
106# not so for the forms in their grasp are ever so slightly different one from
107# the other. Each is twisted in some grotesque way from the other to make each
108# an unspeakable perversion impossible to perceive without the onset of madness.
109# True insanity awaits anyone who perceives all of these horrors together.
110#
111# Quotation marks, there might be an easier way to do this, but I can't find
112# it. The problem is that the user.hpp configuration file must receive a
113# pre-processor macro defined as the appropriate string - complete with "'s
114# around it. (<> is a possibility here but the danger to that is that the
115# failure case interprets the < and > as shell redirections, creating
116# random files in the source tree.)
117#
118#bjam: '-DBOOST_PLATFORM_CONFIG=\"config\"'
119#do_compile: '-sGCC=... '"'-DBOOST_PLATFORM_CONFIG=\"config\"'"
120SQD = '"'
121EQD = '\"'
122#boost.bb: "... '-sGCC=... '${SQD}'-DBOOST_PLATFORM_CONFIG=${EQD}config${EQD}'${SQD} ..."
123BJAM_CONF = "${SQD}'-DBOOST_PLATFORM_CONFIG=${EQD}boost/config/platform/${TARGET_OS}.hpp${EQD}'${SQD}"
124
125BJAM_TOOLS = "--ignore-site-config \
126 '-sTOOLS=gcc' \
127 '-sGCC=${CC} '${BJAM_CONF} \
128 '-sGXX=${CXX} '${BJAM_CONF} \
129 '-sGCC_INCLUDE_DIRECTORY=${STAGING_INCDIR}' \
130 '-sGCC_STDLIB_DIRECTORY=${STAGING_LIBDIR}' \
131 '-sBUILD=release <optimization>space <threading>multi <inlining>on <debug-symbols>off' \
132 '-sPYTHON_ROOT=${PYTHON_ROOT}' \
133 '--layout=system' \
134 "
135
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500136# use PARALLEL_MAKE to speed up the build, but limit it by -j 64, greater parallelism causes bjam to segfault or to ignore -j
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500137# https://svn.boost.org/trac/boost/ticket/7634
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500138def get_boost_parallel_make(d):
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500139 pm = d.getVar('PARALLEL_MAKE')
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500140 if pm:
141 # look for '-j' and throw other options (e.g. '-l') away
142 # because they might have different meaning in bjam
143 pm = pm.split()
144 while pm:
145 v = None
146 opt = pm.pop(0)
147 if opt == '-j':
148 v = pm.pop(0)
149 elif opt.startswith('-j'):
150 v = opt[2:].strip()
151 else:
152 v = None
153
154 if v:
155 v = min(64, int(v))
156 return '-j' + str(v)
157
158 return ""
159
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500160BOOST_PARALLEL_MAKE = "${@get_boost_parallel_make(d)}"
161BJAM_OPTS = '${BOOST_PARALLEL_MAKE} -d+2 -q \
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500162 ${BJAM_TOOLS} \
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600163 -sBOOST_BUILD_USER_CONFIG=${WORKDIR}/user-config.jam \
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500164 --build-dir=${S}/${TARGET_SYS} \
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500165 --disable-icu \
166 ${BJAM_EXTRA}'
167
168# Native compilation of bzip2 isn't working
169BJAM_OPTS_append_class-native = ' -sNO_BZIP2=1'
170
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500171# Adjust the build for x32
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500172BJAM_OPTS_append_x86-x32 = " abi=x32 address-model=64"
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500173
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600174do_configure() {
175 cp -f ${S}/boost/config/platform/linux.hpp ${S}/boost/config/platform/linux-gnueabi.hpp
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500176
177 # D2194:Fixing the failure of "error: duplicate initialization of gcc with the following parameters" during compilation.
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600178 rm -f ${WORKDIR}/user-config.jam
179 echo 'using gcc : 4.3.1 : ${CXX} : <cflags>"${CFLAGS}" <cxxflags>"${CXXFLAGS}" <linkflags>"${LDFLAGS}" ;' >> ${WORKDIR}/user-config.jam
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500180
181 # If we want Python then we need to tell Boost *exactly* where to find it
182 if ${@bb.utils.contains('BOOST_LIBS', 'python', 'true', 'false', d)}; then
183 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
184 fi
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600185
186 if ${@bb.utils.contains('BOOST_LIBS', 'mpi', 'true', 'false', d)}; then
187 echo "using mpi : : <find-shared-library>mpi ;" >> ${WORKDIR}/user-config.jam
188 fi
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500189
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500190 CC="${BUILD_CC}" CFLAGS="${BUILD_CFLAGS}" ./bootstrap.sh --with-bjam=bjam --with-toolset=gcc
191
192 # Boost can't be trusted to find Python on it's own, so remove any mention
193 # of it from the boost configuration
194 sed -i '/using python/d' ${S}/project-config.jam
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500195}
196
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500197do_compile() {
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600198 rm -rf ${S}/${TARGET_SYS}
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500199 bjam ${BJAM_OPTS} --prefix=${prefix} \
200 --exec-prefix=${exec_prefix} \
201 --libdir=${libdir} \
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500202 --includedir=${includedir} \
203 --debug-configuration
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500204}
205
206do_install() {
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500207 bjam ${BJAM_OPTS} \
208 --libdir=${D}${libdir} \
209 --includedir=${D}${includedir} \
210 install
211 for lib in ${BOOST_LIBS}; do
212 if [ -e ${D}${libdir}/libboost_${lib}.a ]; then
213 ln -s libboost_${lib}.a ${D}${libdir}/libboost_${lib}-mt.a
214 fi
215 if [ -e ${D}${libdir}/libboost_${lib}.so ]; then
216 ln -s libboost_${lib}.so ${D}${libdir}/libboost_${lib}-mt.so
217 fi
218 done
219
220}
221
222BBCLASSEXTEND = "native nativesdk"