* [PATCH v6] libtraceevent: Add initial support for meson
@ 2023-01-05 12:11 Daniel Wagner
2023-01-09 15:56 ` Steven Rostedt
0 siblings, 1 reply; 5+ messages in thread
From: Daniel Wagner @ 2023-01-05 12:11 UTC (permalink / raw)
To: linux-trace-devel; +Cc: Steven Rostedt, Daniel Wagner
Introduce Meson as build framework for building libtraceevent.
The build steps are:
# configure using .build as build directory and install destination
# /tmp/test
meson setup --prefix=/tmp/libtraceevent .build
# trigger the build
meson compile -C .build
# In case you want to build the documentation, trigger the
# build via the 'docs' target:
meson compile -C build docs
# install the library (and documentation)
meson install -C .build
Signed-off-by: Daniel Wagner <dwagner@suse.de>
---
v6:
- changed project defaults to --default-library=both
- code style consistency updates
- hardening doc install script (shellcheck)
- renamed install-man.sh.in to install-docs.sh.in
- install-docs.sh.in installs html pages too
- introduces docs target
- updated copyright year
- streamlined documentation meson build file
v5:
- build unit test only if CUnit is found
- default build target is debug
- do not install man pages into subdirs
v4:
- install man pages to correct section, in this case 3
- run check-doc when building the docs
v3:
- build documentation
- build samples
- changed default install to /usr/local
v2:
- changed include path exported in pkg-config
exports the same paths as per Makefile
v1:
- initial version
Documentation/install-docs.sh.in | 20 ++++
Documentation/install-man.sh.in | 15 +++
Documentation/meson.build | 196 +++++++++++++++++++++++++++++++
include/traceevent/meson.build | 14 +++
meson.build | 54 +++++++++
meson_options.txt | 18 +++
plugins/dynamic_list.sh | 11 ++
plugins/meson.build | 44 +++++++
samples/meson.build | 9 ++
src/meson.build | 35 ++++++
utest/meson.build | 16 +++
11 files changed, 432 insertions(+)
create mode 100644 Documentation/install-docs.sh.in
create mode 100755 Documentation/install-man.sh.in
create mode 100644 Documentation/meson.build
create mode 100644 include/traceevent/meson.build
create mode 100644 meson.build
create mode 100644 meson_options.txt
create mode 100755 plugins/dynamic_list.sh
create mode 100644 plugins/meson.build
create mode 100644 samples/meson.build
create mode 100644 src/meson.build
create mode 100644 utest/meson.build
diff --git a/Documentation/install-docs.sh.in b/Documentation/install-docs.sh.in
new file mode 100644
index 000000000000..26a55aec2a76
--- /dev/null
+++ b/Documentation/install-docs.sh.in
@@ -0,0 +1,20 @@
+#!/bin/bash
+# SPDX-License-Identifier: LGPL-2.1
+#
+# Copyright (c) 2023 Daniel Wagner, SUSE LLC
+
+for section in 1 3; do
+ while IFS= read -r -d '' man; do
+ [ ! -d "${DESTDIR}@MANDIR@/man${section}" ] && install -d "${DESTDIR}@MANDIR@/man${section}"
+
+ echo Installing "${man}" to "${DESTDIR}@MANDIR@/man${section}"
+ install -m 0644 "${man}" "${DESTDIR}@MANDIR@/man${section}/"
+ done< <(find "@SRCDIR@" -name "*\.${section}" -type f -print0)
+done
+
+while IFS= read -r -d '' html; do
+ [ ! -d "${DESTDIR}@HTMLDIR@" ] && install -d "${DESTDIR}@HTMLDIR@"
+
+ echo Installing "${html}" to "${DESTDIR}@HTMLDIR@"
+ install -m 0644 "${html}" "${DESTDIR}@HTMLDIR@"
+done< <(find "@SRCDIR@" -name "*\.html" -type f -print0)
diff --git a/Documentation/install-man.sh.in b/Documentation/install-man.sh.in
new file mode 100755
index 000000000000..8ab2cb982e1d
--- /dev/null
+++ b/Documentation/install-man.sh.in
@@ -0,0 +1,15 @@
+#!/bin/bash
+
+for man in $(find @SRCDIR@ -name '*\.1' -type f); do
+ [ ! -d ${DESTDIR}/@MANDIR@/man1/ ] && install -d ${DESTDIR}/@MANDIR@/man1/
+
+ echo Installing $man to ${DESTDIR}/@MANDIR@/man1/
+ install -m 0644 $man ${DESTDIR}/@MANDIR@/man1/
+done
+
+for man in $(find @SRCDIR@ -name '*\.3' -type f); do
+ [ ! -d ${DESTDIR}/@MANDIR@/man3/ ] && install -d ${DESTDIR}/@MANDIR@/man3/
+
+ echo Installing $man to ${DESTDIR}/@MANDIR@/man3/
+ install -m 0644 $man ${DESTDIR}/@MANDIR@/man3/
+done
diff --git a/Documentation/meson.build b/Documentation/meson.build
new file mode 100644
index 000000000000..b0d3a88d66c9
--- /dev/null
+++ b/Documentation/meson.build
@@ -0,0 +1,196 @@
+# SPDX-License-Identifier: LGPL-2.1
+#
+# Copyright (c) 2023 Daniel Wagner, SUSE LLC
+
+# input text file: man page section
+sources = {
+ 'libtraceevent.txt': '3',
+ 'libtraceevent-func_apis.txt': '3',
+ 'libtraceevent-commands.txt': '3',
+ 'libtraceevent-cpus.txt': '3',
+ 'libtraceevent-debug.txt': '3',
+ 'libtraceevent-endian_read.txt': '3',
+ 'libtraceevent-event_find.txt': '3',
+ 'libtraceevent-event_get.txt': '3',
+ 'libtraceevent-event_list.txt': '3',
+ 'libtraceevent-event_print.txt': '3',
+ 'libtraceevent-field_find.txt': '3',
+ 'libtraceevent-field_get_val.txt': '3',
+ 'libtraceevent-field_print.txt': '3',
+ 'libtraceevent-field_read.txt': '3',
+ 'libtraceevent-fields.txt': '3',
+ 'libtraceevent-file_endian.txt': '3',
+ 'libtraceevent-filter.txt': '3',
+ 'libtraceevent-func_find.txt': '3',
+ 'libtraceevent-handle.txt': '3',
+ 'libtraceevent-header_page.txt': '3',
+ 'libtraceevent-host_endian.txt': '3',
+ 'libtraceevent-kbuffer-create.txt': '3',
+ 'libtraceevent-kbuffer-read.txt': '3',
+ 'libtraceevent-kbuffer-timestamp.txt': '3',
+ 'libtraceevent-kvm-plugin.txt': '3',
+ 'libtraceevent-log.txt': '3',
+ 'libtraceevent-long_size.txt': '3',
+ 'libtraceevent-page_size.txt': '3',
+ 'libtraceevent-parse_event.txt': '3',
+ 'libtraceevent-parse-files.txt': '3',
+ 'libtraceevent-parse_head.txt': '3',
+ 'libtraceevent-plugins.txt': '3',
+ 'libtraceevent-record_parse.txt': '3',
+ 'libtraceevent-reg_event_handler.txt': '3',
+ 'libtraceevent-reg_print_func.txt': '3',
+ 'libtraceevent-set_flag.txt': '3',
+ 'libtraceevent-strerror.txt': '3',
+ 'libtraceevent-tseq.txt': '3',
+}
+
+conf_dir = meson.current_source_dir() + '/'
+top_source_dir = meson.current_source_dir() + '/../'
+
+#
+# For asciidoc ...
+# -7.1.2, no extra settings are needed.
+# 8.0-, set ASCIIDOC8.
+#
+
+#
+# For docbook-xsl ...
+# -1.68.1, set ASCIIDOC_NO_ROFF? (based on changelog from 1.73.0)
+# 1.69.0, no extra settings are needed?
+# 1.69.1-1.71.0, set DOCBOOK_SUPPRESS_SP?
+# 1.71.1, no extra settings are needed?
+# 1.72.0, set DOCBOOK_XSL_172.
+# 1.73.0-, set ASCIIDOC_NO_ROFF
+#
+
+#
+# If you had been using DOCBOOK_XSL_172 in an attempt to get rid
+# of 'the ".ft C" problem' in your generated manpages, and you
+# instead ended up with weird characters around callouts, try
+# using ASCIIDOC_NO_ROFF instead (it works fine with ASCIIDOC8).
+#
+
+if get_option('asciidoctor')
+ asciidoc = find_program('asciidoctor')
+ asciidoc_extra = ['-a', 'compat-mode']
+ asciidoc_extra += ['-I.']
+ asciidoc_extra += ['-r', 'asciidoctor-extensions']
+ asciidoc_extra += ['-a', 'mansource=libtraceevent']
+ asciidoc_extra += ['-a', 'manmanual="libtraceevent Manual"']
+ asciidoc_html = 'xhtml5'
+else
+ asciidoc = find_program('asciidoc')
+ asciidoc_extra = ['--unsafe']
+ asciidoc_extra += ['-f', conf_dir + 'asciidoc.conf']
+ asciidoc_html = 'xhtml11'
+
+ r = run_command(asciidoc, '--version', check: true)
+ v = r.stdout().strip()
+ if v.version_compare('>=8.0')
+ asciidoc_extra += ['-a', 'asciidoc7compatible']
+ endif
+endif
+
+manpage_xsl = conf_dir + 'manpage-normal.xsl'
+
+if get_option('docbook-xls-172')
+ asciidoc_extra += ['-a', 'libtraceevent-asciidoc-no-roff']
+ manpage_xsl = conf_dir + 'manpage-1.72.xsl'
+elif get_option('asciidoc-no-roff')
+ # docbook-xsl after 1.72 needs the regular XSL, but will not
+ # pass-thru raw roff codes from asciidoc.conf, so turn them off.
+ asciidoc_extra += ['-a', 'libtraceevent-asciidoc-no-roff']
+endif
+
+xmlto = find_program('xmlto')
+xmlto_extra = []
+
+if get_option('man-bold-literal')
+ xmlto_extra += ['-m ', conf_dir + 'manpage-bold-literal.xsl']
+endif
+
+if get_option('docbook-suppress-sp')
+ xmlto_extra += ['-m ', conf_dir + 'manpage-suppress-sp.xsl']
+endif
+
+check_doc = custom_target(
+ 'check-doc',
+ output: 'dummy',
+ command : [
+ top_source_dir + 'check-manpages.sh',
+ meson.current_source_dir()])
+
+gen = generator(
+ asciidoc,
+ output: '@BASENAME@.xml',
+ arguments: [
+ '-b', 'docbook',
+ '-d', 'manpage',
+ '-a', 'libtraceevent_version=' + meson.project_version(),
+ '-o', '@OUTPUT@']
+ + asciidoc_extra
+ + ['@INPUT@'])
+
+man = []
+html = []
+foreach txt, section : sources
+ # build man page(s)
+ xml = gen.process(txt)
+ man += custom_target(
+ txt.underscorify() + '_man',
+ input: xml,
+ output: '@BASENAME@.' + section,
+ depends: check_doc,
+ command: [
+ xmlto,
+ '-m', manpage_xsl,
+ 'man',
+ '-o', '@OUTPUT@']
+ + xmlto_extra
+ + ['@INPUT@'])
+
+ # build html pages
+ html += custom_target(
+ txt.underscorify() + '_html',
+ input: txt,
+ output: '@BASENAME@.html',
+ depends: check_doc,
+ command: [
+ asciidoc,
+ '-b', asciidoc_html,
+ '-d', 'manpage',
+ '-a', 'libtraceevent_version=' + meson.project_version(),
+ '-o', '@OUTPUT@']
+ + asciidoc_extra
+ + ['@INPUT@'])
+endforeach
+
+# Install path workaround because:
+#
+# - xmlto might generate more than one file and we would to tell meson
+# about those output files. We could figure out which files are generated
+# (see sed match in check-manpages.sh).
+#
+# - The man page generation puts all the generated files under sub dirs
+# and it's not obvious how to tell Meson it should not do this without
+# causing the install step to fail (confusion where the generated files
+# are stored)
+#
+# - The documentation build is not part of the 'build' target. The user
+# has explicitly to trigger the doc build. Hence the documentation is
+# not added to the 'install' target.
+#
+# Thus just use a plain old shell script to move the generated files to the
+# right location.
+
+conf = configuration_data()
+conf.set('SRCDIR', meson.current_build_dir())
+conf.set('MANDIR', mandir)
+conf.set('HTMLDIR', htmldir)
+configure_file(
+ input: 'install-docs.sh.in',
+ output: 'install-docs.sh',
+ configuration: conf)
+
+meson.add_install_script(
+ join_paths(meson.current_build_dir(), 'install-docs.sh'))
diff --git a/include/traceevent/meson.build b/include/traceevent/meson.build
new file mode 100644
index 000000000000..d3512cafbe38
--- /dev/null
+++ b/include/traceevent/meson.build
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: LGPL-2.1
+#
+# Copyright (c) 2023 Daniel Wagner, SUSE LLC
+
+headers = [
+ 'event-parse.h',
+ 'event-utils.h',
+ 'kbuffer.h',
+ 'trace-seq.h',
+]
+
+foreach h : headers
+ install_headers(h, subdir : 'traceevent')
+endforeach
diff --git a/meson.build b/meson.build
new file mode 100644
index 000000000000..86907b23f0d9
--- /dev/null
+++ b/meson.build
@@ -0,0 +1,54 @@
+# SPDX-License-Identifier: LGPL-2.1
+#
+# Copyright (c) 2023 Daniel Wagner, SUSE LLC
+
+project(
+ 'libtraceevent', ['c'],
+ meson_version: '>= 0.50.0',
+ license: 'LGPL-2.1',
+ version: '1.7.0',
+ default_options: [
+ 'c_std=gnu99',
+ 'buildtype=debug',
+ 'default_library=both',
+ 'prefix=/usr/local',
+ 'warning_level=1',
+ ])
+
+library_version = meson.project_version()
+
+cunit_dep = dependency('cunit', required : false)
+
+prefixdir = get_option('prefix')
+mandir = join_paths(prefixdir, get_option('mandir'))
+htmldir = join_paths(prefixdir, get_option('htmldir'))
+libdir = join_paths(prefixdir, get_option('libdir'))
+plugindir = get_option('plugindir')
+if plugindir == ''
+ plugindir = join_paths(libdir, 'libtraceevent/plugins')
+endif
+
+add_project_arguments(
+ [
+ '-D_GNU_SOURCE',
+ '-DPLUGIN_DIR="@0@"'.format(plugindir),
+ ],
+ language : 'c',
+)
+
+incdir = include_directories(['include', 'include/traceevent'])
+
+subdir('src')
+subdir('include/traceevent')
+subdir('plugins')
+if cunit_dep.found()
+ subdir('utest')
+endif
+subdir('samples')
+subdir('Documentation')
+
+custom_target(
+ 'docs',
+ output: 'docs',
+ depends: [html, man],
+ command: ['echo'])
diff --git a/meson_options.txt b/meson_options.txt
new file mode 100644
index 000000000000..a768002d4fb2
--- /dev/null
+++ b/meson_options.txt
@@ -0,0 +1,18 @@
+# SPDX-License-Identifier: LGPL-2.1
+#
+# Copyright (c) 2023 Daniel Wagner, SUSE LLC
+
+option('plugindir', type : 'string',
+ description : 'set the plugin dir')
+option('htmldir', type : 'string', value : '',
+ description : 'directory for HTML documentation')
+option('asciidoctor', type : 'boolean', value: false,
+ description : 'use asciidoctor instead of asciidoc')
+option('docbook-xls-172', type : 'boolean', value : false,
+ description : 'enable docbook XLS 172 workaround')
+option('asciidoc-no-roff', type : 'boolean', value : false,
+ description : 'enable no roff workaround')
+option('man-bold-literal', type : 'boolean', value : false,
+ description : 'enable bold literals')
+option('docbook-suppress-sp', type : 'boolean', value : false,
+ description : 'docbook suppress sp')
diff --git a/plugins/dynamic_list.sh b/plugins/dynamic_list.sh
new file mode 100755
index 000000000000..66bb0fadfdef
--- /dev/null
+++ b/plugins/dynamic_list.sh
@@ -0,0 +1,11 @@
+#!/bin/sh
+# SPDX-License-Identifier: LGPL-2.1
+
+symbol_type=$(nm -u -D $@ | awk 'NF>1 {print $1}' | xargs echo "U w W" |
+ tr 'w ' 'W\n' | sort -u | xargs echo)
+
+if [ "$symbol_type" = "U W" ]; then
+ echo '{'
+ nm -u -D $@ | awk 'NF>1 {sub("@.*", "", $2); print "\t"$2";"}' | sort -u
+ echo '};'
+fi
diff --git a/plugins/meson.build b/plugins/meson.build
new file mode 100644
index 000000000000..74ad664e4b4b
--- /dev/null
+++ b/plugins/meson.build
@@ -0,0 +1,44 @@
+# SPDX-License-Identifier: LGPL-2.1
+#
+# Copyright (c) 2023 Daniel Wagner, SUSE LLC
+
+plugins = [
+ 'plugin_cfg80211.c',
+ 'plugin_function.c',
+ 'plugin_futex.c',
+ 'plugin_hrtimer.c',
+ 'plugin_jbd2.c',
+ 'plugin_kmem.c',
+ 'plugin_kvm.c',
+ 'plugin_mac80211.c',
+ 'plugin_sched_switch.c',
+ 'plugin_scsi.c',
+ 'plugin_tlb.c',
+ 'plugin_xen.c',
+]
+
+pdeps = []
+foreach plugin : plugins
+ pdeps += library(
+ plugin.replace('.c', ''),
+ plugin,
+ name_prefix: '',
+ version: library_version,
+ dependencies: [libtraceevent_dep],
+ include_directories: [incdir],
+ install: true,
+ install_dir: plugindir)
+endforeach
+
+# perf needs the exported symbol list
+dynamic_list_file = find_program('dynamic_list.sh')
+custom_target(
+ 'dynamic_list',
+ depends: pdeps,
+ input: pdeps,
+ output: 'libtraceevent-dynamic-list',
+ command: [dynamic_list_file, '@INPUT@'],
+ capture: true,
+ build_by_default: true,
+ install: true,
+ install_dir: plugindir)
diff --git a/samples/meson.build b/samples/meson.build
new file mode 100644
index 000000000000..e62ff83d087d
--- /dev/null
+++ b/samples/meson.build
@@ -0,0 +1,9 @@
+# SPDX-License-Identifier: LGPL-2.1
+#
+# Copyright (c) 2023 Daniel Wagner, SUSE LLC
+
+executable(
+ 'test-event',
+ ['test-event.c'],
+ dependencies: libtraceevent_dep,
+ include_directories: [incdir])
diff --git a/src/meson.build b/src/meson.build
new file mode 100644
index 000000000000..20b1b7bb95d9
--- /dev/null
+++ b/src/meson.build
@@ -0,0 +1,35 @@
+# SPDX-License-Identifier: LGPL-2.1
+#
+# Copyright (c) 2023 Daniel Wagner, SUSE LLC
+
+sources= [
+ 'event-parse-api.c',
+ 'event-parse.c',
+ 'event-plugin.c',
+ 'kbuffer-parse.c',
+ 'parse-filter.c',
+ 'parse-utils.c',
+ 'tep_strerror.c',
+ 'trace-seq.c',
+]
+
+libtraceevent = library(
+ 'traceevent',
+ sources,
+ version: library_version,
+ include_directories: [incdir],
+ install: true)
+
+pkg = import('pkgconfig')
+pkg.generate(
+ libtraceevent,
+ subdirs: 'traceevent',
+ filebase: meson.project_name(),
+ name: meson.project_name(),
+ version: meson.project_version(),
+ description: 'Manage trace event',
+ url: 'https://git.kernel.org/pub/scm/libs/libtrace/libtraceevent.git/')
+
+libtraceevent_dep = declare_dependency(
+ include_directories: ['.'],
+ link_with: libtraceevent)
diff --git a/utest/meson.build b/utest/meson.build
new file mode 100644
index 000000000000..d819a6c798b5
--- /dev/null
+++ b/utest/meson.build
@@ -0,0 +1,16 @@
+# SPDX-License-Identifier: LGPL-2.1
+#
+# Copyright (c) 2023 Daniel Wagner, SUSE LLC
+
+source = [
+ 'trace-utest.c',
+ 'traceevent-utest.c',
+]
+
+e = executable(
+ 'trace-utest',
+ source,
+ include_directories: [incdir],
+ dependencies: [libtraceevent_dep, cunit_dep])
+
+test('trace-utest', e)
--
2.39.0
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [PATCH v6] libtraceevent: Add initial support for meson
2023-01-05 12:11 [PATCH v6] libtraceevent: Add initial support for meson Daniel Wagner
@ 2023-01-09 15:56 ` Steven Rostedt
2023-01-09 16:36 ` Daniel Wagner
0 siblings, 1 reply; 5+ messages in thread
From: Steven Rostedt @ 2023-01-09 15:56 UTC (permalink / raw)
To: Daniel Wagner; +Cc: linux-trace-devel
On Thu, 5 Jan 2023 13:11:44 +0100
Daniel Wagner <dwagner@suse.de> wrote:
> Introduce Meson as build framework for building libtraceevent.
>
> The build steps are:
>
> # configure using .build as build directory and install destination
> # /tmp/test
> meson setup --prefix=/tmp/libtraceevent .build
>
> # trigger the build
> meson compile -C .build
>
> # In case you want to build the documentation, trigger the
> # build via the 'docs' target:
> meson compile -C build docs
>
> # install the library (and documentation)
> meson install -C .build
So I followed the above steps, and when I did:
$ ls -l /tmp/libtraceevent
total 1108
drwxr-xr-x 3 rostedt rostedt 60 Jan 9 10:49 lib
drwxr-xr-x 3 rostedt rostedt 60 Jan 9 10:49 include
drwxr-xr-x 3 rostedt rostedt 60 Jan 9 10:49 share
-rw-r--r-- 1 rostedt rostedt 23539 Jan 9 10:49 libtraceevent-set_flag.html
-rw-r--r-- 1 rostedt rostedt 31026 Jan 9 10:49 libtraceevent-parse-files.html
-rw-r--r-- 1 rostedt rostedt 36636 Jan 9 10:49 libtraceevent.html
-rw-r--r-- 1 rostedt rostedt 21390 Jan 9 10:49 libtraceevent-cpus.html
-rw-r--r-- 1 rostedt rostedt 23962 Jan 9 10:49 libtraceevent-header_page.html
-rw-r--r-- 1 rostedt rostedt 21790 Jan 9 10:49 libtraceevent-endian_read.html
-rw-r--r-- 1 rostedt rostedt 32679 Jan 9 10:49 libtraceevent-reg_event_handler.html
-rw-r--r-- 1 rostedt rostedt 24278 Jan 9 10:49 libtraceevent-event_find.html
-rw-r--r-- 1 rostedt rostedt 23586 Jan 9 10:49 libtraceevent-host_endian.html
-rw-r--r-- 1 rostedt rostedt 23775 Jan 9 10:49 libtraceevent-handle.html
-rw-r--r-- 1 rostedt rostedt 30738 Jan 9 10:49 libtraceevent-tseq.html
-rw-r--r-- 1 rostedt rostedt 35979 Jan 9 10:49 libtraceevent-filter.html
-rw-r--r-- 1 rostedt rostedt 48365 Jan 9 10:49 libtraceevent-kvm-plugin.html
-rw-r--r-- 1 rostedt rostedt 25273 Jan 9 10:49 libtraceevent-event_list.html
-rw-r--r-- 1 rostedt rostedt 22342 Jan 9 10:49 libtraceevent-page_size.html
-rw-r--r-- 1 rostedt rostedt 37832 Jan 9 10:49 libtraceevent-kbuffer-create.html
-rw-r--r-- 1 rostedt rostedt 23697 Jan 9 10:49 libtraceevent-parse_event.html
-rw-r--r-- 1 rostedt rostedt 23958 Jan 9 10:49 libtraceevent-event_get.html
-rw-r--r-- 1 rostedt rostedt 26292 Jan 9 10:49 libtraceevent-record_parse.html
-rw-r--r-- 1 rostedt rostedt 42977 Jan 9 10:49 libtraceevent-kbuffer-timestamp.html
-rw-r--r-- 1 rostedt rostedt 22496 Jan 9 10:49 libtraceevent-strerror.html
-rw-r--r-- 1 rostedt rostedt 31737 Jan 9 10:49 libtraceevent-func_apis.html
-rw-r--r-- 1 rostedt rostedt 46054 Jan 9 10:49 libtraceevent-kbuffer-read.html
-rw-r--r-- 1 rostedt rostedt 29118 Jan 9 10:49 libtraceevent-func_find.html
-rw-r--r-- 1 rostedt rostedt 28187 Jan 9 10:49 libtraceevent-plugins.html
-rw-r--r-- 1 rostedt rostedt 28611 Jan 9 10:49 libtraceevent-field_print.html
-rw-r--r-- 1 rostedt rostedt 22167 Jan 9 10:49 libtraceevent-file_endian.html
-rw-r--r-- 1 rostedt rostedt 25399 Jan 9 10:49 libtraceevent-fields.html
-rw-r--r-- 1 rostedt rostedt 21357 Jan 9 10:49 libtraceevent-long_size.html
-rw-r--r-- 1 rostedt rostedt 25549 Jan 9 10:49 libtraceevent-event_print.html
-rw-r--r-- 1 rostedt rostedt 21348 Jan 9 10:49 libtraceevent-log.html
-rw-r--r-- 1 rostedt rostedt 23701 Jan 9 10:49 libtraceevent-debug.html
-rw-r--r-- 1 rostedt rostedt 22353 Jan 9 10:49 libtraceevent-parse_head.html
-rw-r--r-- 1 rostedt rostedt 23027 Jan 9 10:49 libtraceevent-field_read.html
-rw-r--r-- 1 rostedt rostedt 28251 Jan 9 10:49 libtraceevent-field_get_val.html
-rw-r--r-- 1 rostedt rostedt 29720 Jan 9 10:49 libtraceevent-commands.html
-rw-r--r-- 1 rostedt rostedt 30686 Jan 9 10:49 libtraceevent-reg_print_func.html
-rw-r--r-- 1 rostedt rostedt 27448 Jan 9 10:49 libtraceevent-field_find.html
Is the html files suppose to be there?
-- Steve
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v6] libtraceevent: Add initial support for meson
2023-01-09 15:56 ` Steven Rostedt
@ 2023-01-09 16:36 ` Daniel Wagner
2023-01-09 16:42 ` Steven Rostedt
0 siblings, 1 reply; 5+ messages in thread
From: Daniel Wagner @ 2023-01-09 16:36 UTC (permalink / raw)
To: Steven Rostedt; +Cc: linux-trace-devel
On Mon, Jan 09, 2023 at 10:56:16AM -0500, Steven Rostedt wrote:
> Is the html files suppose to be there?
Don't know, I wasn't able to figure out the install path by
reading the Makefile. Where should they go?
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v6] libtraceevent: Add initial support for meson
2023-01-09 16:36 ` Daniel Wagner
@ 2023-01-09 16:42 ` Steven Rostedt
2023-01-09 17:15 ` Daniel Wagner
0 siblings, 1 reply; 5+ messages in thread
From: Steven Rostedt @ 2023-01-09 16:42 UTC (permalink / raw)
To: Daniel Wagner; +Cc: linux-trace-devel
On Mon, 9 Jan 2023 17:36:59 +0100
Daniel Wagner <dwagner@suse.de> wrote:
> On Mon, Jan 09, 2023 at 10:56:16AM -0500, Steven Rostedt wrote:
> > Is the html files suppose to be there?
>
> Don't know, I wasn't able to figure out the install path by
> reading the Makefile. Where should they go?
After doing an install with the Makefiles:
# ls -l /usr/local/share/doc/libtraceevent-doc/
total 1108
-rw-r--r-- 1 root staff 29720 Jan 9 11:00 libtraceevent-commands.html
-rw-r--r-- 1 root staff 21390 Jan 9 11:00 libtraceevent-cpus.html
-rw-r--r-- 1 root staff 23701 Jan 9 11:00 libtraceevent-debug.html
-rw-r--r-- 1 root staff 21790 Jan 9 11:00 libtraceevent-endian_read.html
-rw-r--r-- 1 root staff 24278 Jan 9 11:00 libtraceevent-event_find.html
-rw-r--r-- 1 root staff 23958 Jan 9 11:00 libtraceevent-event_get.html
-rw-r--r-- 1 root staff 25273 Jan 9 11:00 libtraceevent-event_list.html
-rw-r--r-- 1 root staff 25549 Jan 9 11:00 libtraceevent-event_print.html
-rw-r--r-- 1 root staff 27448 Jan 9 11:00 libtraceevent-field_find.html
-rw-r--r-- 1 root staff 28251 Jan 9 11:00 libtraceevent-field_get_val.html
-rw-r--r-- 1 root staff 28611 Jan 9 11:00 libtraceevent-field_print.html
-rw-r--r-- 1 root staff 23027 Jan 9 11:00 libtraceevent-field_read.html
-rw-r--r-- 1 root staff 25399 Jan 9 11:00 libtraceevent-fields.html
-rw-r--r-- 1 root staff 22167 Jan 9 11:00 libtraceevent-file_endian.html
-rw-r--r-- 1 root staff 35979 Jan 9 11:00 libtraceevent-filter.html
-rw-r--r-- 1 root staff 31737 Jan 9 11:00 libtraceevent-func_apis.html
-rw-r--r-- 1 root staff 29118 Jan 9 11:00 libtraceevent-func_find.html
-rw-r--r-- 1 root staff 23775 Jan 9 11:00 libtraceevent-handle.html
-rw-r--r-- 1 root staff 23962 Jan 9 11:00 libtraceevent-header_page.html
-rw-r--r-- 1 root staff 23586 Jan 9 11:00 libtraceevent-host_endian.html
-rw-r--r-- 1 root staff 36636 Jan 9 11:00 libtraceevent.html
-rw-r--r-- 1 root staff 37832 Jan 9 11:00 libtraceevent-kbuffer-create.html
-rw-r--r-- 1 root staff 46054 Jan 9 11:00 libtraceevent-kbuffer-read.html
-rw-r--r-- 1 root staff 42977 Jan 9 11:00 libtraceevent-kbuffer-timestamp.html
-rw-r--r-- 1 root staff 48365 Jan 9 11:00 libtraceevent-kvm-plugin.html
-rw-r--r-- 1 root staff 21348 Jan 9 11:00 libtraceevent-log.html
-rw-r--r-- 1 root staff 21357 Jan 9 11:00 libtraceevent-long_size.html
-rw-r--r-- 1 root staff 22342 Jan 9 11:00 libtraceevent-page_size.html
-rw-r--r-- 1 root staff 23697 Jan 9 11:00 libtraceevent-parse_event.html
-rw-r--r-- 1 root staff 31026 Jan 9 11:00 libtraceevent-parse-files.html
-rw-r--r-- 1 root staff 22353 Jan 9 11:00 libtraceevent-parse_head.html
-rw-r--r-- 1 root staff 28187 Jan 9 11:00 libtraceevent-plugins.html
-rw-r--r-- 1 root staff 26292 Jan 9 11:00 libtraceevent-record_parse.html
-rw-r--r-- 1 root staff 32679 Jan 9 11:00 libtraceevent-reg_event_handler.html
-rw-r--r-- 1 root staff 30686 Jan 9 11:00 libtraceevent-reg_print_func.html
-rw-r--r-- 1 root staff 23539 Jan 9 11:00 libtraceevent-set_flag.html
-rw-r--r-- 1 root staff 22496 Jan 9 11:00 libtraceevent-strerror.html
-rw-r--r-- 1 root staff 30738 Jan 9 11:00 libtraceevent-tseq.html
-- Steve
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v6] libtraceevent: Add initial support for meson
2023-01-09 16:42 ` Steven Rostedt
@ 2023-01-09 17:15 ` Daniel Wagner
0 siblings, 0 replies; 5+ messages in thread
From: Daniel Wagner @ 2023-01-09 17:15 UTC (permalink / raw)
To: Steven Rostedt; +Cc: linux-trace-devel
On Mon, Jan 09, 2023 at 11:42:47AM -0500, Steven Rostedt wrote:
> On Mon, 9 Jan 2023 17:36:59 +0100
After doing an install with the Makefiles:
>
> # ls -l /usr/local/share/doc/libtraceevent-doc/
Okay, that's easy to fix
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -4,7 +4,7 @@
option('plugindir', type : 'string',
description : 'set the plugin dir')
-option('htmldir', type : 'string', value : '',
+option('htmldir', type : 'string', value : 'share/doc/libtraceevent-doc',
description : 'directory for HTML documentation')
option('asciidoctor', type : 'boolean', value: false,
description : 'use asciidoctor instead of asciidoc')
Is anything which I need to update?
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-01-09 17:16 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-05 12:11 [PATCH v6] libtraceevent: Add initial support for meson Daniel Wagner
2023-01-09 15:56 ` Steven Rostedt
2023-01-09 16:36 ` Daniel Wagner
2023-01-09 16:42 ` Steven Rostedt
2023-01-09 17:15 ` Daniel Wagner
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).