14 lines
442 B
Bash
Executable file
14 lines
442 B
Bash
Executable file
#!/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
|