Name Date Size #Lines LOC

..--

Documentation/H25-Apr-2025-5,7914,803

LICENSES/H25-Apr-2025-864718

include/H25-Apr-2025-1,3881,001

plugins/H25-Apr-2025-2,5431,997

samples/H25-Apr-2025-192144

scripts/H25-Apr-2025-402341

src/H25-Apr-2025-13,7579,845

utest/H25-Apr-2025-614485

.gitignoreH A D25-Apr-2025213 1918

Android.bpH A D25-Apr-20251.1 KiB5442

LICENSEH A D25-Apr-202545.1 KiB866719

METADATAH A D25-Apr-2025660 2018

MODULE_LICENSE_GPLHD25-Apr-20250

MakefileH A D25-Apr-202512.2 KiB457330

Makefile.mesonH A D25-Apr-2025970 4123

OWNERSH A D25-Apr-202543 32

READMEH A D25-Apr-20251.4 KiB5329

check-manpages.shH A D25-Apr-20251.9 KiB7959

libtraceevent.pc.templateH A D25-Apr-2025291 119

meson.buildH A D25-Apr-20251.2 KiB5848

meson_options.txtH A D25-Apr-2025939 2119

test.cH A D25-Apr-202578 86

README

1
2The official repository is here:
3
4  https://git.kernel.org/pub/scm/libs/libtrace/libtraceevent.git/
5
6
7To build:
8
9    make;
10    sudo make install;
11
12To build in a specific directory outside of the source directory:
13
14    make O=/path/to/build; sudo make O=/path/to/build
15
16  Note that the path needs to exist before building.
17
18To set the install path (the expected final location):
19
20    make prefix=/usr; sudo make O=/path/to/build
21
22To install in a directory not for the local system (for use to move
23to another machine):
24
25    make DESTDIR=/path/to/dest/ install
26
27  Note, if you have write permission to the DESTDIR, then there is
28  no reason to use sudo or switch to root.
29
30  Note, DESTDIR must end with '/', otherwise the files will be appended
31  to the path, which will most likely have unwanted results.
32
33Contributions:
34
35  For questions about the use of the library, please send email to:
36
37    [email protected]
38
39    Subscribe: http://vger.kernel.org/vger-lists.html#linux-trace-users
40    Archives: https://lore.kernel.org/linux-trace-users/
41
42  For contributions to development, please send patches to:
43
44    [email protected]
45
46    Subscribe: http://vger.kernel.org/vger-lists.html#linux-trace-devel
47    Archives: https://lore.kernel.org/linux-trace-devel/
48
49  Note, this project follows the style of submitting patches as described
50  by the Linux kernel.
51
52     https://www.kernel.org/doc/html/v5.4/process/submitting-patches.html
53