summaryrefslogtreecommitdiffstats
path: root/3rdparty/libbacktrace/README.md
blob: 14a2da2df10b6afd555f856c15810a7fec4aaf89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
This is a standalone version of libbacktrace.

libbacktrace prints stack traces.

libbacktrace was originally writen by Ian Lance Taylor as part of GCC.

Building libbacktrace requires CMake.

How to build with ninja:

    mkdir build
    cd build/
    cmake -GNinja -DENABLE_LIBBACKTRACE_TEST=true path/to/libbacktrace/source
    ninja

How to build with make:

    mkdir build
    cd build/
    cmake -G'Unix Makefiles' -DENABLE_LIBBACKTRACE_TEST=true path/to/libbacktrace/source
    make

How to run the tests:

    ctest