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 8set -e 9 10sudo 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