1# QEMU AArch64 Simulator 2 3Note, Gunyah requires QEMU version >= `5.0.0` 4 5## Installation 6 7Install the dependencies described in the QEMU documentation. 8 9For example for a Linux host: 10https://wiki.qemu.org/Hosts/Linux 11 12Download and build latest version: 13https://www.qemu.org/download/#source 14 15Make sure that it is built with aarch64-softmmu included in the target list. 16 17For example, to build QEMU only for aarch64-softmmu target: 18 19```bash 20git clone https://git.qemu.org/git/qemu.git 21cd qemu 22git submodule init 23git submodule update --recursive 24./configure --target-list=aarch64-softmmu --enable-debug 25make 26``` 27