Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
Documentation/ | H | 25-Apr-2025 | - | 9,191 | 7,592 | |
LICENSES/ | H | 25-Apr-2025 | - | 864 | 718 | |
include/ | H | 25-Apr-2025 | - | 780 | 594 | |
samples/ | H | 25-Apr-2025 | - | 76 | 42 | |
scripts/ | H | 25-Apr-2025 | - | 235 | 188 | |
src/ | H | 25-Apr-2025 | - | 16,035 | 10,608 | |
utest/ | H | 25-Apr-2025 | - | 2,537 | 2,084 | |
.gitignore | H A D | 25-Apr-2025 | 116 | 16 | 15 | |
Android.bp | H A D | 25-Apr-2025 | 1.3 KiB | 70 | 56 | |
LICENSE | H A D | 25-Apr-2025 | 77.6 KiB | 1,504 | 1,244 | |
METADATA | H A D | 25-Apr-2025 | 596 | 20 | 18 | |
MODULE_LICENSE_GPL | HD | 25-Apr-2025 | 0 | |||
Makefile | H A D | 25-Apr-2025 | 11.1 KiB | 398 | 276 | |
OWNERS | H A D | 25-Apr-2025 | 43 | 3 | 2 | |
README | H A D | 25-Apr-2025 | 1.5 KiB | 57 | 31 | |
check-manpages.sh | H A D | 25-Apr-2025 | 1.5 KiB | 62 | 45 | |
libtracefs.pc.template | H A D | 25-Apr-2025 | 334 | 12 | 10 | |
test.c | H A D | 25-Apr-2025 | 72 | 8 | 6 |
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 [email protected] 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 [email protected] 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