summaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorGavin Beatty <auto@gavinbeatty.com>2020-08-08 10:53:40 -0500
committerGitHub <noreply@github.com>2020-08-08 11:53:40 -0400
commitc9480cb7fe67e673651c8b4d51f4ecfb755a58b6 (patch)
tree1dca0f335f51a2640ce5974587c84662ee88b72b /etc
parent8edff6233d89dd61b88d973ce4416fe6391640a1 (diff)
Add TARGET=aarch64-unknown-linux-gnu cross-compile (#279)
* Add TARGET=aarch64-unknown-linux-gnu cross-compile Assuming etc/ci/before_install.sh is already set up correctly, aarch64 may work now. Untested. * aarch64 install libc cross & keep only gcc-4.8 * Fix aarch64 TARGET, CC_, CARGO_TARGET_ to match
Diffstat (limited to 'etc')
-rwxr-xr-xetc/ci/before_install.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/etc/ci/before_install.sh b/etc/ci/before_install.sh
index 9acf6025..d26cf1ae 100755
--- a/etc/ci/before_install.sh
+++ b/etc/ci/before_install.sh
@@ -33,5 +33,6 @@ if [[ $TARGET == aarch64-unknown-linux-gnu ]]; then
sudo apt-get install -y \
gcc-4.8-aarch64-linux-gnu \
binutils-aarch64-linux-gnu \
- gcc-aarch64-linux-gnu
+ libc6-arm64-cross \
+ libc6-dev-arm64-cross
fi