Prep 1.29
[dwarves.git] / README
blob7ee3b87e8024a696db16b7f5e5fd142bbb43f1e7
1 Build instructions:
3 1. install cmake
4 2. mkdir build
5 3. cd build
6 4. cmake ..
7 5. make install
9 cmake Options:
10   -DBUILD_SHARED_LIBS
11     By default SHARED libraries are created and applications are linked to it.
12     Use -DBUILD_SHARED_LIBS=OFF while invoking cmake to create STATIC libraries
13     and link applications to it.
15     Ex. cmake -DBUILD_SHARED_LIBS=OFF ..
17   -DCMAKE_INSTALL_PREFIX
18     Default is to install to /usr/local, use -DCMAKE_INSTALL_PREFIX=
19     when invoking cmake to specify another install location.
21 You may need to update the libbpf git submodule:
23 git submodule update --init --recursive