runtime/scripts/install-dependencies-ARM64.sh

13 lines
246 B
Bash
Raw Normal View History

2025-02-15 00:03:19 -05:00
#!/bin/sh
set -e
2025-02-15 00:26:16 -05:00
dpkg --add-architecture armhf
2025-02-15 00:03:19 -05:00
apt-get update
2025-02-15 00:26:16 -05:00
apt-get dist-upgrade -y
2025-02-15 00:03:19 -05:00
apt-get install -y --no-install-recommends \
cmake \
ninja-build \
gcc g++ \
2025-02-15 00:11:54 -05:00
gcc-arm-linux-gnueabihf g++-arm-linux-gnueabihf \
2025-02-15 00:26:16 -05:00
libc6:armhf