• Home
Name Date Size #Lines LOC

..--

Documentation/03-May-2024-5,5044,558

LICENSES/03-May-2024-864718

include/03-May-2024-1,365982

plugins/03-May-2024-2,3571,862

samples/03-May-2024-182136

scripts/03-May-2024-402341

src/03-May-2024-13,4509,664

utest/03-May-2024-591466

.gitignoreD03-May-2024213 1918

Android.bpD03-May-20241.1 KiB5442

LICENSED03-May-202445.1 KiB866719

METADATAD03-May-2024637 2018

MODULE_LICENSE_GPLD03-May-20240

MakefileD03-May-202412 KiB444321

OWNERSD03-May-202443 32

READMED03-May-20241.4 KiB5329

check-manpages.shD03-May-20241.9 KiB7959

libtraceevent.pc.templateD03-May-2024291 119

test.cD03-May-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