• Home
Name Date Size #Lines LOC

..--

Documentation/06-Sep-2024-5,5044,558

LICENSES/06-Sep-2024-864718

include/06-Sep-2024-1,365982

plugins/06-Sep-2024-2,3571,862

samples/06-Sep-2024-182136

scripts/06-Sep-2024-402341

src/06-Sep-2024-13,4509,664

utest/06-Sep-2024-591466

.gitignoreD06-Sep-2024213 1918

Android.bpD06-Sep-20241.1 KiB5442

LICENSED06-Sep-202445.1 KiB866719

METADATAD06-Sep-2024637 2018

MODULE_LICENSE_GPLD06-Sep-20240

MakefileD06-Sep-202412 KiB444321

OWNERSD06-Sep-202443 32

READMED06-Sep-20241.4 KiB5329

check-manpages.shD06-Sep-20241.9 KiB7959

libtraceevent.pc.templateD06-Sep-2024291 119

test.cD06-Sep-202478 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    linux-trace-users@vger.kernel.org
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    linux-trace-devel@vger.kernel.org
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