summaryrefslogtreecommitdiffstats
path: root/trace
diff options
context:
space:
mode:
authorPaolo Bonzini2021-07-12 17:57:10 +0200
committerStefan Hajnoczi2021-07-12 18:37:12 +0200
commitbbe47ed2928542e7db58146b6108e3f2836f278f (patch)
treeb09c60a43c9de81cda3450a4b64cbd9826bdc8fd /trace
parenttrace/simple: add st_init_group (diff)
downloadqemu-bbe47ed2928542e7db58146b6108e3f2836f278f.tar.gz
qemu-bbe47ed2928542e7db58146b6108e3f2836f278f.tar.xz
qemu-bbe47ed2928542e7db58146b6108e3f2836f278f.zip
trace, lttng: require .pc files
The next version of lttng-libs will not require liburcu at run time anymore. Therefore, it is expected that distros will not include the urcubp libraries anymore when installing lttng-ust-devel. To avoid future problems, just require pkg-config to detect lttng-ust. The .pc files for lttng-ust correctly include liburcubp.a for static builds, and have always done since pkg-config files were added in 2011. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Message-id: 20210712155710.520889-1-pbonzini@redhat.com Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'trace')
-rw-r--r--trace/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/trace/meson.build b/trace/meson.build
index 08f83a15c3..ef18f11d64 100644
--- a/trace/meson.build
+++ b/trace/meson.build
@@ -26,7 +26,7 @@ foreach dir : [ '.' ] + trace_events_subdirs
input: trace_events_file,
command: [ tracetool, group, '--format=ust-events-h', '@INPUT@', '@OUTPUT@' ],
depend_files: tracetool_depends)
- trace_ss.add(trace_ust_h, lttng, urcubp)
+ trace_ss.add(trace_ust_h, lttng)
genh += trace_ust_h
endif
trace_ss.add(trace_h, trace_c)