summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/libbacktrace/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/libbacktrace/README.md')
-rw-r--r--src/3rdparty/libbacktrace/README.md25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/3rdparty/libbacktrace/README.md b/src/3rdparty/libbacktrace/README.md
new file mode 100644
index 00000000..14a2da2d
--- /dev/null
+++ b/src/3rdparty/libbacktrace/README.md
@@ -0,0 +1,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