hw/rdma: Compile target-independent parts of the rdma code only once
authorThomas Huth <thuth@redhat.com>
Wed, 19 Apr 2023 11:49:37 +0000 (13:49 +0200)
committerThomas Huth <thuth@redhat.com>
Fri, 28 Apr 2023 06:05:37 +0000 (08:05 +0200)
Some files of the rdma code do not depend on any target specific
macros. Compile these only once to save some time during the build.

Message-Id: <20230419114937.667221-1-thuth@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>
hw/rdma/meson.build

index 7325f40c32e9db38f705c2007fce2b70d8b0a62c..fc7917192fd13d134a6cc05a4a905ff370596245 100644 (file)
@@ -1,10 +1,12 @@
-specific_ss.add(when: 'CONFIG_VMW_PVRDMA', if_true: files(
+softmmu_ss.add(when: 'CONFIG_VMW_PVRDMA', if_true: files(
   'rdma.c',
   'rdma_backend.c',
-  'rdma_rm.c',
   'rdma_utils.c',
+  'vmw/pvrdma_qp_ops.c',
+))
+specific_ss.add(when: 'CONFIG_VMW_PVRDMA', if_true: files(
+  'rdma_rm.c',
   'vmw/pvrdma_cmd.c',
   'vmw/pvrdma_dev_ring.c',
   'vmw/pvrdma_main.c',
-  'vmw/pvrdma_qp_ops.c',
 ))