diff mbox series

[v2] meson.build: don't include libbpf in the common source set

Message ID 20211012162552.16865-1-alex.bennee@linaro.org
State New
Headers show
Series [v2] meson.build: don't include libbpf in the common source set | expand

Commit Message

Alex Bennée Oct. 12, 2021, 4:25 p.m. UTC
This library is only needed for the softmmu targets and as such
break static *-user builds where libbpf is detected and it tries to
link it into the user binaries. In fact ebpf/meson.build already
brings libbpf into the softmmu build so we can delete the common_ss
line altogether.

Fixes: 46627f41b6 ("ebpf: Added eBPF RSS loader.")
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>

Message-Id: <20211005182443.2954499-1-alex.bennee@linaro.org>

--
v2
  - delete common_ss altogether instead of replacing with softmmu_ss
---
 meson.build | 2 --
 1 file changed, 2 deletions(-)

-- 
2.30.2
diff mbox series

Patch

diff --git a/meson.build b/meson.build
index 99a0a3e689..42b7ba360d 100644
--- a/meson.build
+++ b/meson.build
@@ -2301,8 +2301,6 @@  subdir('bsd-user')
 subdir('linux-user')
 subdir('ebpf')
 
-common_ss.add(libbpf)
-
 bsd_user_ss.add(files('gdbstub.c'))
 specific_ss.add_all(when: 'CONFIG_BSD_USER', if_true: bsd_user_ss)