diff options
Diffstat (limited to 'meta/recipes-support/boost/boost_1.47.0.bb')
-rw-r--r-- | meta/recipes-support/boost/boost_1.47.0.bb | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/meta/recipes-support/boost/boost_1.47.0.bb b/meta/recipes-support/boost/boost_1.47.0.bb new file mode 100644 index 0000000000..e1e0ca18fa --- /dev/null +++ b/meta/recipes-support/boost/boost_1.47.0.bb | |||
@@ -0,0 +1,27 @@ | |||
1 | include boost.inc | ||
2 | |||
3 | LIC_FILES_CHKSUM = "file://LICENSE_1_0.txt;md5=e4224ccaecb14d942c71d31bef20d78c" | ||
4 | |||
5 | PR = "${INC_PR}.0" | ||
6 | |||
7 | SRC_URI += "file://arm-intrinsics.patch" | ||
8 | |||
9 | SRC_URI[md5sum] = "a2dc343f7bc7f83f8941e47ed4a18200" | ||
10 | SRC_URI[sha256sum] = "815a5d9faac4dbd523fbcf3fe1065e443c0bbf43427c44aa423422c6ec4c2e31" | ||
11 | |||
12 | BJAM_OPTS = '${BJAM_TOOLS} \ | ||
13 | --builddir=${S}/${TARGET_SYS} \ | ||
14 | ${BJAM_EXTRA}' | ||
15 | |||
16 | # build only mt libraries and install symlinks for compatibility | ||
17 | BJAM_EXTRA += "threading=multi" | ||
18 | do_install_append() { | ||
19 | for lib in ${BOOST_LIBS}; do | ||
20 | if [ -e ${D}${libdir}/libboost_${lib}.a ]; then | ||
21 | ln -s libboost_${lib}.a ${D}${libdir}/libboost_${lib}-mt.a | ||
22 | fi | ||
23 | if [ -e ${D}${libdir}/libboost_${lib}.so ]; then | ||
24 | ln -s libboost_${lib}.so ${D}${libdir}/libboost_${lib}-mt.so | ||
25 | fi | ||
26 | done | ||
27 | } | ||