yeah.
Created
March 26, 2024 00:27
-
-
Save theoparis/ea9d1ae240a164651800f15836e72169 to your computer and use it in GitHub Desktop.
Build qemu softmmu targets as static libraries
This file contains 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
diff --git a/meson.build b/meson.build | |
index c9c3217ba4..d935e8f0bd 100644 | |
--- a/meson.build | |
+++ b/meson.build | |
@@ -3905,8 +3905,9 @@ foreach target : target_dirs | |
objects: objects, | |
include_directories: target_inc, | |
c_args: c_args, | |
- build_by_default: false, | |
- name_suffix: 'fa') | |
+ build_by_default: true, | |
+ install: true, | |
+ name_suffix: 'a') | |
if target.endswith('-softmmu') | |
execs = [{ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey, @theoparis, did you simply apply this patch to the latest QEMU source, or were there additional steps involved?