diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2025-03-12 19:46:44 -0700 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2025-04-23 14:08:39 -0700 |
commit | 6c1ae457a17a9462fb89ef1f30ad7da5266bfea6 (patch) | |
tree | 481e2122fe6fb91a3ee01d6d30d0f708c5b635b8 | |
parent | 7c2f3580e51f3a1d74d78b88267be22650b518ac (diff) | |
download | qemu-6c1ae457a17a9462fb89ef1f30ad7da5266bfea6.zip qemu-6c1ae457a17a9462fb89ef1f30ad7da5266bfea6.tar.gz qemu-6c1ae457a17a9462fb89ef1f30ad7da5266bfea6.tar.bz2 |
plugins: Move api.c, core.c to libuser_ss, libsystem_ss
Headers used by these files require CONFIG_USER_ONLY.
Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
-rw-r--r-- | plugins/meson.build | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/meson.build b/plugins/meson.build index 3be8245..5383c7b 100644 --- a/plugins/meson.build +++ b/plugins/meson.build @@ -61,5 +61,8 @@ endif user_ss.add(files('user.c', 'api-user.c')) system_ss.add(files('system.c', 'api-system.c')) -common_ss.add(files('loader.c', 'api.c', 'core.c')) +libuser_ss.add(files('api.c', 'core.c')) +libsystem_ss.add(files('api.c', 'core.c')) + +common_ss.add(files('loader.c')) |