13 lines
207 B
Bash
Executable File
13 lines
207 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
set -x
|
|
|
|
apt-get update
|
|
apt-get install -y git cmake gcc make g++-8-aarch64-linux-gnu
|
|
|
|
# TODO: This isn't ideal.
|
|
cd dynarmic/externals
|
|
git clone https://github.com/MerryMage/ext-boost
|
|
cd ..
|