qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Paolo Bonzini <pbonzini@redhat.com>
To: qemu-devel@nongnu.org
Cc: Richard Henderson <richard.henderson@linaro.org>
Subject: [PULL 03/15] meson: cleanup common-user/ build
Date: Tue,  4 Jan 2022 15:57:37 +0100	[thread overview]
Message-ID: <20220104145749.417387-4-pbonzini@redhat.com> (raw)
In-Reply-To: <20220104145749.417387-1-pbonzini@redhat.com>

It is not necessary to have a separate static_library just for common_user
files; using the one that already covers the rest of common_ss is enough
unless you need to reuse some source files between emulators and tests.
Just place common files for all user-mode emulators in common_ss,
similar to what is already done for softmmu_ss in full system emulators.

The only disadvantage is that the include_directories under bsd-user/include/
and linux-user/include/ are now enabled for all targets rather than only
user mode emulators.  This however is not different from how include/sysemu/
is available when building user mode emulators.

Tested-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 common-user/meson.build |  2 +-
 meson.build             | 13 +------------
 2 files changed, 2 insertions(+), 13 deletions(-)

diff --git a/common-user/meson.build b/common-user/meson.build
index 5cb42bc664..26212dda5c 100644
--- a/common-user/meson.build
+++ b/common-user/meson.build
@@ -1,6 +1,6 @@
 common_user_inc += include_directories('host/' / host_arch)
 
-common_user_ss.add(files(
+user_ss.add(files(
   'safe-syscall.S',
   'safe-syscall-error.c',
 ))
diff --git a/meson.build b/meson.build
index de111d6fa1..5f0b6300b4 100644
--- a/meson.build
+++ b/meson.build
@@ -2399,7 +2399,6 @@ blockdev_ss = ss.source_set()
 block_ss = ss.source_set()
 chardev_ss = ss.source_set()
 common_ss = ss.source_set()
-common_user_ss = ss.source_set()
 crypto_ss = ss.source_set()
 hwcore_ss = ss.source_set()
 io_ss = ss.source_set()
@@ -2651,17 +2650,6 @@ subdir('common-user')
 subdir('bsd-user')
 subdir('linux-user')
 
-common_user_ss = common_user_ss.apply(config_all, strict: false)
-common_user = static_library('common-user',
-                             sources: common_user_ss.sources(),
-                             dependencies: common_user_ss.dependencies(),
-                             include_directories: common_user_inc,
-                             name_suffix: 'fa',
-                             build_by_default: false)
-common_user = declare_dependency(link_with: common_user)
-
-user_ss.add(common_user)
-
 # needed for fuzzing binaries
 subdir('tests/qtest/libqos')
 subdir('tests/qtest/fuzz')
@@ -2879,6 +2867,7 @@ common_all = common_ss.apply(config_all, strict: false)
 common_all = static_library('common',
                             build_by_default: false,
                             sources: common_all.sources() + genh,
+                            include_directories: common_user_inc,
                             implicit_include_directories: false,
                             dependencies: common_all.dependencies(),
                             name_suffix: 'fa')
-- 
2.33.1




  parent reply	other threads:[~2022-01-04 15:08 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-01-04 14:57 [PULL v3 00/15] Build system and KVM changes for 2021-12-23 Paolo Bonzini
2022-01-04 14:57 ` [PULL 01/15] meson: reuse common_user_inc when building files specific to user-mode emulators Paolo Bonzini
2022-01-04 14:57 ` [PULL 02/15] user: move common-user includes to a subdirectory of {bsd, linux}-user/ Paolo Bonzini
2022-01-04 14:57 ` Paolo Bonzini [this message]
2022-01-04 14:57 ` [PULL 04/15] block/file-posix: Simplify the XFS_IOC_DIOINFO handling Paolo Bonzini
2022-01-04 14:57 ` [PULL 05/15] configure: simplify creation of plugin symbol list Paolo Bonzini
2022-01-04 14:57 ` [PULL 06/15] configure: do not set bsd_user/linux_user early Paolo Bonzini
2022-01-04 14:57 ` [PULL 07/15] configure, makefile: remove traces of really old files Paolo Bonzini
2022-01-04 14:57 ` [PULL 08/15] configure: parse --enable/--disable-strip automatically, flip default Paolo Bonzini
2022-01-04 14:57 ` [PULL 09/15] configure: move non-command-line variables away from command-line parsing section Paolo Bonzini
2022-01-04 14:57 ` [PULL 10/15] meson: build contrib/ executables after generated headers Paolo Bonzini
2022-01-04 14:57 ` [PULL 11/15] configure, meson: move config-poison.h to meson Paolo Bonzini
2022-01-04 14:57 ` [PULL 12/15] meson: add comments in the target-specific flags section Paolo Bonzini
2022-01-04 14:57 ` [PULL 13/15] KVM: use KVM_{GET|SET}_SREGS2 when supported Paolo Bonzini
2022-01-04 14:57 ` [PULL 14/15] KVM: x86: ignore interrupt_bitmap field of KVM_GET/SET_SREGS Paolo Bonzini
2022-01-04 14:57 ` [PULL 15/15] tests/tcg: Fix target-specific Makefile variables path for user-mode Paolo Bonzini
2022-01-04 23:12 ` [PULL v3 00/15] Build system and KVM changes for 2021-12-23 Richard Henderson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220104145749.417387-4-pbonzini@redhat.com \
    --to=pbonzini@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=richard.henderson@linaro.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).