• Home
Name Date Size #Lines LOC

..--

Documentation/04-Jul-2025-10,9259,047

LICENSES/04-Jul-2025-864718

include/04-Jul-2025-886680

samples/04-Jul-2025-226163

scripts/04-Jul-2025-235188

src/04-Jul-2025-18,09611,932

utest/04-Jul-2025-3,8623,099

.gitignoreD04-Jul-2025116 1615

Android.bpD04-Jul-20251.3 KiB7157

LICENSED04-Jul-202577.6 KiB1,5041,244

METADATAD04-Jul-2025619 2018

MODULE_LICENSE_GPLD04-Jul-20250

MakefileD04-Jul-202511.8 KiB431301

Makefile.mesonD04-Jul-2025970 4123

OWNERSD04-Jul-2025115 43

READMED04-Jul-20251.5 KiB5731

check-manpages.shD04-Jul-20251.5 KiB6245

libtracefs.pc.templateD04-Jul-2025334 1210

meson.buildD04-Jul-20251.2 KiB5444

meson_options.txtD04-Jul-20251 KiB2321

test.cD04-Jul-202572 86

README

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