Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/contrib/llvm-project/compiler-rt/lib/memprof/README.txt
35236 views
1
MemProfiling RT
2
================================
3
This directory contains sources of the MemProfiling (MemProf) runtime library.
4
5
Directory structure:
6
README.txt : This file.
7
CMakeLists.txt : File for cmake-based build.
8
memprof_*.{cc,h} : Sources of the memprof runtime library.
9
10
Also MemProf runtime needs the following libraries:
11
lib/interception/ : Machinery used to intercept function calls.
12
lib/sanitizer_common/ : Code shared between various sanitizers.
13
14
MemProf runtime can only be built by CMake. You can run MemProf tests
15
from the root of your CMake build tree:
16
17
make check-memprof
18
19