Mercurial > hg > orthanc-book
comparison Sphinx/source/faq/debugging.rst @ 290:6cbcdb965ad3
Orthanc 1.5.8
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 16 Oct 2019 15:13:27 +0200 |
parents | a64197133114 |
children | a5f7fc9fb611 |
comparison
equal
deleted
inserted
replaced
289:9223c3f26c1a | 290:6cbcdb965ad3 |
---|---|
43 `LSB - Linux Standard Base SDK | 43 `LSB - Linux Standard Base SDK |
44 <https://en.wikipedia.org/wiki/Linux_Standard_Base>`__). This allows | 44 <https://en.wikipedia.org/wiki/Linux_Standard_Base>`__). This allows |
45 to debug Orthanc without compiling from sources. Here is a sample | 45 to debug Orthanc without compiling from sources. Here is a sample |
46 debug session:: | 46 debug session:: |
47 | 47 |
48 $ wget http://lsb.orthanc-server.com/orthanc/debug/1.5.7/Orthanc | 48 $ wget http://lsb.orthanc-server.com/orthanc/debug/1.5.8/Orthanc |
49 $ chmod +x ./Orthanc | 49 $ chmod +x ./Orthanc |
50 $ gdb ./Orthanc Configuration.json | 50 $ gdb ./Orthanc Configuration.json |
51 (gdb) catch throw | 51 (gdb) catch throw |
52 Catchpoint 1 (throw) | 52 Catchpoint 1 (throw) |
53 (gdb) run | 53 (gdb) run |
54 W0513 15:24:42.374349 main.cpp:1436] Orthanc version: 1.5.7 | 54 W0513 15:24:42.374349 main.cpp:1436] Orthanc version: 1.5.8 |
55 ---> Reproduce your error case <--- | 55 ---> Reproduce your error case <--- |
56 Thread 15 "Orthanc" hit Catchpoint 1 (exception thrown), 0x00007ffff6de68bd in __cxa_throw () from /usr/lib/x86_64-linux-gnu/libstdc++.so.6 | 56 Thread 15 "Orthanc" hit Catchpoint 1 (exception thrown), 0x00007ffff6de68bd in __cxa_throw () from /usr/lib/x86_64-linux-gnu/libstdc++.so.6 |
57 (gdb) backtrace | 57 (gdb) backtrace |
58 #0 0x00007ffff6de68bd in __cxa_throw () | 58 #0 0x00007ffff6de68bd in __cxa_throw () |
59 from /usr/lib/x86_64-linux-gnu/libstdc++.so.6 | 59 from /usr/lib/x86_64-linux-gnu/libstdc++.so.6 |