Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
Documentation/ | 03-May-2024 | - | 5,504 | 4,558 | ||
LICENSES/ | 03-May-2024 | - | 864 | 718 | ||
include/ | 03-May-2024 | - | 1,365 | 982 | ||
plugins/ | 03-May-2024 | - | 2,357 | 1,862 | ||
samples/ | 03-May-2024 | - | 182 | 136 | ||
scripts/ | 03-May-2024 | - | 402 | 341 | ||
src/ | 03-May-2024 | - | 13,450 | 9,664 | ||
utest/ | 03-May-2024 | - | 591 | 466 | ||
.gitignore | D | 03-May-2024 | 213 | 19 | 18 | |
Android.bp | D | 03-May-2024 | 1.1 KiB | 54 | 42 | |
LICENSE | D | 03-May-2024 | 45.1 KiB | 866 | 719 | |
METADATA | D | 03-May-2024 | 637 | 20 | 18 | |
MODULE_LICENSE_GPL | D | 03-May-2024 | 0 | |||
Makefile | D | 03-May-2024 | 12 KiB | 444 | 321 | |
OWNERS | D | 03-May-2024 | 43 | 3 | 2 | |
README | D | 03-May-2024 | 1.4 KiB | 53 | 29 | |
check-manpages.sh | D | 03-May-2024 | 1.9 KiB | 79 | 59 | |
libtraceevent.pc.template | D | 03-May-2024 | 291 | 11 | 9 | |
test.c | D | 03-May-2024 | 78 | 8 | 6 |
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