diff options
author | Pierrick Bouvier <pierrick.bouvier@linaro.org> | 2025-04-30 11:10:47 -0700 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2025-04-30 20:44:20 +0200 |
commit | dce324fa06b358ccb01bf35611b6fc53b1f56b96 (patch) | |
tree | 2133ae6c1064d787d4e9ee5b3972a9f8c66caec0 | |
parent | 35817600089256a234eb23613564d94b80e93ac4 (diff) | |
download | qemu-dce324fa06b358ccb01bf35611b6fc53b1f56b96.zip qemu-dce324fa06b358ccb01bf35611b6fc53b1f56b96.tar.gz qemu-dce324fa06b358ccb01bf35611b6fc53b1f56b96.tar.bz2 |
docs/devel/build-environment: enhance MSYS2 instructions
Add missing prerequisite packages, and use more explicit makepkg
command.
Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
Message-ID: <20250430181047.2043492-1-pierrick.bouvier@linaro.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>
-rw-r--r-- | docs/devel/build-environment.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/devel/build-environment.rst b/docs/devel/build-environment.rst index f133ef2..661f6ea 100644 --- a/docs/devel/build-environment.rst +++ b/docs/devel/build-environment.rst @@ -97,11 +97,11 @@ build QEMU in MSYS2 itself. :: - pacman -S wget + pacman -S wget base-devel git wget https://raw.githubusercontent.com/msys2/MINGW-packages/refs/heads/master/mingw-w64-qemu/PKGBUILD # Some packages may be missing for your environment, installation will still # be done though. - makepkg -s PKGBUILD || true + makepkg --syncdeps --nobuild PKGBUILD || true Build on windows-aarch64 ++++++++++++++++++++++++ |