microsoft/qdk

Public

mirrored fromhttps://github.com/microsoft/qdkAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
9924d88eab289f667de542e610dcb28d89c137cf

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

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
6set -e
7
8apt-get update
9
10# install cross compiler toolchain
11DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
12 g++-aarch64-linux-gnu
13
14# install emulation support
15DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
16 qemu qemu-system-misc qemu-user-static qemu-user
17