Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
google
GitHub Repository: google/crosvm
Path: blob/main/e2e_tests/guest_under_test/install_build_deps.sh
5394 views
1
#!/bin/bash
2
# Copyright 2022 The ChromiumOS Authors
3
# Use of this source code is governed by a BSD-style license that can be
4
# found in the LICENSE file.
5
6
# Installs additional dependencies needed to build guest_under_test on debian.
7
8
set -e
9
10
sudo apt install \
11
gcc-aarch64-linux-gnu \
12
qemu-user-static \
13
squashfs-tools-ng \
14
libelf-dev \
15
flex \
16
bison \
17
bc \
18
dwarves \
19
binfmt-support
20
21