Skip to content

Commit

Permalink
qemu: Don't enable virglrenderer without opengl
Browse files Browse the repository at this point in the history
The older version we're using is missing dependency checks.
  • Loading branch information
jrtc27 authored Apr 8, 2024
1 parent 82d644f commit 726f04a
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion pycheribuild/projects/build_qemu.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,14 @@ def setup(self):
super().setup()
# Disable some more unneeded things (we don't usually need the GUI frontends)
if not self.gui:
self.configure_args.extend(["--disable-sdl", "--disable-gtk", "--disable-opengl"])
self.configure_args.extend(
[
"--disable-sdl",
"--disable-gtk",
"--disable-opengl",
"--disable-virglrenderer",
],
)
if self.target_info.is_macos():
self.configure_args.append("--disable-cocoa")

Expand Down

0 comments on commit 726f04a

Please sign in to comment.