Skip to content

Commit

Permalink
Update README to disable xen support per issue #42
Browse files Browse the repository at this point in the history
  • Loading branch information
beckus committed Jan 15, 2023
1 parent ef4defd commit 051685d
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,19 @@ Prerequisites - On a fresh install of Ubuntu 20.04, the following command will i
sudo apt-get install build-essential python zlib1g-dev libglib2.0-dev libpixman-1-dev libtool libfdt-dev

Commands for a typical build:
./configure --enable-debug --disable-werror --target-list="arm-softmmu"
./configure --enable-debug --disable-xen --disable-werror --target-list="arm-softmmu"
make

Useful make commands when rebuilding:
make defconfig
make clean

Note: we pass the following option to the "configure" command to
ignore warnings (otherwise warnings will cause the build to fail):
Notes:
* We pass the following option to the "configure" command to
ignore warnings (otherwise warnings will cause the build to fail):
--disable-werror
* We disable xen support according to issue #42:
https://github.com/beckus/qemu_stm32/issues/42

The generated executable is arm-softmmu/qemu-system-arm .

Expand Down

0 comments on commit 051685d

Please sign in to comment.