-
Notifications
You must be signed in to change notification settings - Fork 785
Move QEMU to vcpkg #4799
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
xmkg
wants to merge
52
commits into
main
Choose a base branch
from
enhancement/move-qemu-to-vcpkg
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Move QEMU to vcpkg #4799
Changes from all commits
Commits
Show all changes
52 commits
Select commit
Hold shift + click to select a range
d477c3f
[vcpkg] Add overlay port for QEMU
xmkg 5b853e5
[vcpkg] List qemu in overlay ports
xmkg 872d95b
[vcpkg] Add qemu to dependencies
xmkg 90625c2
[vcpkg] Qemu: fix patch format and warnings
xmkg b6e0f0e
[3rd-party] Remove QEMU CMake code
xmkg ad3d958
[vcpkg] Tweak recipe to make compilation work
xmkg 7887e09
[vcpkg] Move QEMU dependency behind a feature
xmkg 49cb99e
[cmake] Extract backend list code
xmkg b69d073
[vcpkg] Ensure QEMU uses vcpkg pkgconfig deps
xmkg eb90fa1
[cmake] Fix mistake in supported backends list
xmkg 0231c2b
[cmake] Add QEMU install code
xmkg 74f1277
[vcpkg] Qemu: alias edk2 firmware files
xmkg f393610
[vcpkg] Qemu: ditch static flag
xmkg f161eff
[cmake] Deploy QEMU firmwares too
xmkg ae559c9
[qemu-proc-spec] Force use of vendored QEMU
xmkg 9d00cf2
[vcpkg] Qemu: add missing OVMF.fd fw image
xmkg 1450615
[qemu] Pass firmware lookup path at runtime
xmkg 8a8e310
[vcpkg] Qemu: Copy OVMF.fd and kvmvapic.bin
xmkg c82c2ae
[qemu] Use correct QEMU for get_backend_ver_str
xmkg eec1305
[qemu] Use correct absolute FW path
xmkg acd2d4a
[vcpkg] Qemu: move system emulator behind feature
xmkg cc91551
[vcpkg] Qemu: disable optional rust components
xmkg 7028003
[snap] Add bison to build dependencies
xmkg 71fe7c0
[vcpkg] Qemu: add --disable-slirp from snapcraft
xmkg 6753545
[vcpkg] Qemu: support for s390x/ppc64
xmkg 774d553
[snapcraft] Remove QEMU and QEMU-FW parts
xmkg f029ada
[qemu-backend] Add get_firmware_path function
xmkg 1f636a0
[qemu-backend] Move get_firmware_path to base proc
xmkg 53eb9f4
[qemu-backend] Use firmware_path function
xmkg e778071
[src-process] Use correct qemu-img path
xmkg a63b683
[qemu-backend] Update working_directory for QEMU
xmkg 7b537e3
[qemu-proc-spec] Update AppArmor bin paths
xmkg 54d1f24
[vcpkg] Qemu: re-enable rust
xmkg f65eab4
[vcpkg] Qemu: pass -UNDEBUG to configure
xmkg 5605d47
[cmake] Use WIN32 instead of MSVC for backend list
xmkg dfd0d12
[cmake] Add missing newlines
xmkg b8c0f98
[tests] Fix test failures after qemu path changes
xmkg 802184e
[qemuimg-spec] Fix AppArmor bin path and tests
xmkg a839591
[qemu-proc] Continue correcting paths and tests
xmkg ae96b54
[test-qemuimg] Simplify expected path for AppArmor
xmkg b3b8139
[tests-qemu-vmstate] Add missing firmware_path
xmkg 640e24e
[test-qemu] Use correct paths after changes
xmkg 7c4d82f
[vcpkg] Qemu: ditch test option patch
xmkg f4c9d52
[gha-windows-macos] Remove choco install qemu
xmkg 0e4c9e3
[vcpkg] Qemu: copy vga and pxe boot bin fw files
xmkg 056a145
[vcpkg] Qemu: Efforts to make win build work
xmkg 3a6ac78
[vcpkg] Qemu: Fix linux build after win changes
xmkg f837e80
[readme] Remove mentions of qemu from linux/win
xmkg 4bf77d6
[cmake] Fix missing newline
xmkg 5eb23de
[vcpkg] Qemu: try to fix CI pacman hang
xmkg 23ec697
[vcpkg] Qemu: simplify portfile even further
xmkg a8464d4
[cmake] Make the linter happy
xmkg File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| #!/bin/sh | ||
| args="" | ||
| for arg in "$@"; do | ||
| case "$arg" in | ||
| --disable-silent-rules|--verbose) ;; | ||
| --disable-shared|--enable-shared) ;; | ||
| --disable-static|--enable-static) ;; | ||
| --enable-shared=*|--enable-static=*) ;; | ||
| --build=*|--host=*|--target=*) ;; | ||
| --bindir=*|--sbindir=*|--mandir=*|--docdir=*|--datarootdir=*) ;; | ||
| *) args="$args \"$arg\"" ;; | ||
| esac | ||
| done | ||
| eval exec "$(dirname "$0")/configure.real" $args | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
QEMU's configure is not like a traditional
configureand it fails when some of theconventionalconfigure flags are passed byvcpkg_configure_make(). This wrapper is here to strip those (we don't need them anyway).