diff options
author | Sam Bingner <sam@bingner.com> | 2018-10-12 16:38:39 -1000 |
---|---|---|
committer | Sam Bingner <sam@bingner.com> | 2018-10-12 16:38:39 -1000 |
commit | ab753fcde40b28248172c552ce2b1f23eddfc9f4 (patch) | |
tree | 2ff2724ef77294878f91b528843a0f0b6dba5462 /data/boost/make.sh | |
parent | 295030d5719c3af352cfc5394b8ce13e3a1e0fb9 (diff) |
Update more packages
Diffstat (limited to 'data/boost/make.sh')
-rw-r--r-- | data/boost/make.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/data/boost/make.sh b/data/boost/make.sh new file mode 100644 index 000000000..4f804c29f --- /dev/null +++ b/data/boost/make.sh @@ -0,0 +1,12 @@ +shopt -s extglob +pkg:setup +./bootstrap.sh --prefix=/usr +#toolset=gcc-arm64 using gcc : arm64 : aarch64-apple-darwin17-g++ ; +echo "using clang : arm : ${PKG_TARG}-g++ ;" >>project-config.jam +./b2 install toolset=clang-arm abi=aapcs --prefix="${PKG_DEST}/usr" -j16 +rm -f "${PKG_DEST}"/usr/lib/*-d?(-+([0-9_])).@(a|dylib) +for na in "${PKG_DEST}"/usr/lib/*-+([0-9_]).a; do + a=${na/-+([0-9_]).a/.a} + rm -f "$a" + ln -s "$(basename "$na")" "$a" +done |