buildscripts/boost.sh

15 lines
442 B
Bash
Raw Permalink Normal View History

2023-12-03 23:10:57 +01:00
#!/bin/bash
wget -c https://boostorg.jfrog.io/artifactory/main/release/1.82.0/source/boost_1_82_0.tar.gz
tar xvf boost_1_82_0.tar.gz
cd boost_1_82_0
set -e
./bootstrap.sh
sed -i "s#using gcc ;#using gcc : arm : $xCXX ;#g" project-config.jam
#./b2 toolset=gcc-arm --with-system --with-filesystem --with-date_time --with-locale
./b2 toolset=gcc-arm install --prefix="$PREFIX" --with-system --with-filesystem --with-date_time --with-locale