comparison Sphinx/source/faq/debugging.rst @ 358:011b01ccf52d

fixing external hyperlinks
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 30 Mar 2020 18:47:35 +0200
parents a5f7fc9fb611
children 0fb9369e893e
comparison
equal deleted inserted replaced
357:6b432ce3a56e 358:011b01ccf52d
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.6.0/Orthanc 48 $ wget https://lsb.orthanc-server.com/orthanc/debug/1.6.0/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
65 65
66 **Plugins:** Besides the Orthanc core, debug binaries of the official 66 **Plugins:** Besides the Orthanc core, debug binaries of the official
67 plugins precompiled using the LSB are also available at the following 67 plugins precompiled using the LSB are also available at the following
68 locations: 68 locations:
69 69
70 * `Orthanc core <http://lsb.orthanc-server.com/orthanc/debug/>`__ 70 * `Orthanc core <https://lsb.orthanc-server.com/orthanc/debug/>`__
71 * `DICOMweb plugin <http://lsb.orthanc-server.com/plugin-dicom-web/debug/>`__ 71 * `DICOMweb plugin <https://lsb.orthanc-server.com/plugin-dicom-web/debug/>`__
72 * `MySQL plugin <http://lsb.orthanc-server.com/plugin-mysql/debug/>`__ 72 * `MySQL plugin <https://lsb.orthanc-server.com/plugin-mysql/debug/>`__
73 * `Orthanc Web viewer <http://lsb.orthanc-server.com/plugin-webviewer/debug/>`__ 73 * `Orthanc Web viewer <https://lsb.orthanc-server.com/plugin-webviewer/debug/>`__
74 * `PostgreSQL plugin <http://lsb.orthanc-server.com/plugin-postgresql/debug/>`__ 74 * `PostgreSQL plugin <https://lsb.orthanc-server.com/plugin-postgresql/debug/>`__
75 * `Transfers accelerator plugin <http://lsb.orthanc-server.com/plugin-transfers/debug/>`__ 75 * `Transfers accelerator plugin <https://lsb.orthanc-server.com/plugin-transfers/debug/>`__
76 * `Whole-slide imaging <http://lsb.orthanc-server.com/whole-slide-imaging/debug/>`__ 76 * `Whole-slide imaging <https://lsb.orthanc-server.com/whole-slide-imaging/debug/>`__
77 77
78 78
79 Docker 79 Docker
80 ------ 80 ------
81 81