4c68284d771f9d70a5e2ad50d33e47b44e39a92e
[iec.git] / src / type3_AndroidCloud / anbox-master / external / backward-cpp / backward.cpp
1 // Pick your poison.
2 //
3 // On GNU/Linux, you have few choices to get the most out of your stack trace.
4 //
5 // By default you get:
6 //      - object filename
7 //      - function name
8 //
9 // In order to add:
10 //      - source filename
11 //      - line and column numbers
12 //      - source code snippet (assuming the file is accessible)
13
14 // Install one of the following library then uncomment one of the macro (or
15 // better, add the detection of the lib and the macro definition in your build
16 // system)
17
18 // - apt-get install libdw-dev ...
19 // - g++/clang++ -ldw ...
20 // #define BACKWARD_HAS_DW 1
21
22 // - apt-get install binutils-dev ...
23 // - g++/clang++ -lbfd ...
24 // #define BACKWARD_HAS_BFD 1
25
26 #include "backward.hpp"
27
28 namespace backward {
29
30 backward::SignalHandling sh;
31
32 } // namespace backward