microsoft/qdk
Publicmirrored fromhttps://github.com/microsoft/qdkAvailable
docker/linux-aarch64/install_prereqs.sh
16lines · modecode
| 1 | #!/usr/bin/env bash |
| 2 | |
| 3 | # Copyright (c) Microsoft Corporation. |
| 4 | # Licensed under the MIT License. |
| 5 | |
| 6 | set -e |
| 7 | |
| 8 | apt-get update |
| 9 | |
| 10 | # install cross compiler toolchain |
| 11 | DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ |
| 12 | g++-aarch64-linux-gnu |
| 13 | |
| 14 | # install emulation support |
| 15 | DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ |
| 16 | qemu qemu-system-misc qemu-user-static qemu-user |
| 17 | |