mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-11 04:26:38 +00:00
17 lines
398 B
Bash
17 lines
398 B
Bash
|
#!/bin/bash
|
||
|
# Copyright 2022 The Chromium OS Authors. All rights reserved.
|
||
|
# Use of this source code is governed by a BSD-style license that can be
|
||
|
# found in the LICENSE file.
|
||
|
|
||
|
# Installs additional dependencies needed to build guest_under_test on debian.
|
||
|
|
||
|
set -e
|
||
|
|
||
|
sudo apt install \
|
||
|
gcc-aarch64-linux-gnu \
|
||
|
qemu-user-static \
|
||
|
squashfs-tools-ng \
|
||
|
libelf-dev \
|
||
|
flex \
|
||
|
bison
|