2018-01-24 20:14:19 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -e
|
|
|
|
set -x
|
|
|
|
|
2020-04-18 00:54:16 +02:00
|
|
|
python3 --version
|
|
|
|
|
2018-01-24 20:14:19 +01:00
|
|
|
# TODO: This isn't ideal.
|
|
|
|
cd externals
|
|
|
|
git clone https://github.com/MerryMage/ext-boost
|
2020-04-18 00:54:16 +02:00
|
|
|
git clone https://github.com/MerryMage/unicorn
|
2018-01-24 20:14:19 +01:00
|
|
|
cd unicorn
|
2019-04-20 11:48:37 +02:00
|
|
|
UNICORN_ARCHS=aarch64,arm ./make.sh
|
2018-01-24 20:14:19 +01:00
|
|
|
cd ../..
|
|
|
|
|
|
|
|
mkdir -p $HOME/.local
|
|
|
|
curl -L https://cmake.org/files/v3.8/cmake-3.8.0-Linux-x86_64.tar.gz \
|
|
|
|
| tar -xz -C $HOME/.local --strip-components=1
|