Mercurial > hg > orthanc
annotate LinuxCompilation.txt @ 4157:86e99e08ba52
fix compiler warnings
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Sun, 23 Aug 2020 14:38:45 +0200 |
parents | d633e5bb7ba3 |
children | 88d704264d64 |
rev | line source |
---|---|
634 | 1 This file is a complement to "INSTALL", which contains instructions |
2086 | 2 that are specific to GNU/Linux. |
634 | 3 |
4 | |
2086 | 5 Static linking for GNU/Linux |
6 ============================ | |
634 | 7 |
2086 | 8 The most simple way of building Orthanc under GNU/Linux consists in |
634 | 9 statically linking against all the third-party dependencies. In this |
10 case, the system-wide libraries will not be used. The build tool | |
11 (CMake) will download the sources of all the required packages and | |
1208
6502517fd4af
improved doc thanks to Vincent Kersten
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1150
diff
changeset
|
12 automatically compile them. |
634 | 13 |
2086 | 14 This process should work on any GNU/Linux distribution, provided that a |
1208
6502517fd4af
improved doc thanks to Vincent Kersten
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1150
diff
changeset
|
15 C/C++ compiler ("build-essential" in Debian-based systems), the Python |
6502517fd4af
improved doc thanks to Vincent Kersten
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1150
diff
changeset
|
16 interpreter, CMake, the "unzip" system tool, and the development |
6502517fd4af
improved doc thanks to Vincent Kersten
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1150
diff
changeset
|
17 package for libuuid ("uuid-dev" in Debian) are installed. |
936
9c7f5fd8a7a2
build instructions for Mac OS X
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
875
diff
changeset
|
18 |
634 | 19 |
1208
6502517fd4af
improved doc thanks to Vincent Kersten
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1150
diff
changeset
|
20 We now make the assumption that Orthanc source code is placed in the |
6502517fd4af
improved doc thanks to Vincent Kersten
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1150
diff
changeset
|
21 folder "~/Orthanc" and that the binaries will be compiled to |
4091
19a2f1d2b816
moved CMakeLists.txt for the server to the OrthancServer folder
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3869
diff
changeset
|
22 "~/Orthanc/Build". To build binaries with debug information: |
634 | 23 |
4091
19a2f1d2b816
moved CMakeLists.txt for the server to the OrthancServer folder
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3869
diff
changeset
|
24 # cd ./Build |
19a2f1d2b816
moved CMakeLists.txt for the server to the OrthancServer folder
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3869
diff
changeset
|
25 # cmake -DSTATIC_BUILD=ON -DCMAKE_BUILD_TYPE=Debug ../OrthancServer/ |
634 | 26 # make |
27 # make doc | |
28 | |
29 | |
30 To build a release version: | |
31 | |
4091
19a2f1d2b816
moved CMakeLists.txt for the server to the OrthancServer folder
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3869
diff
changeset
|
32 # cd ./Build |
19a2f1d2b816
moved CMakeLists.txt for the server to the OrthancServer folder
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3869
diff
changeset
|
33 # cmake -DSTATIC_BUILD=ON -DCMAKE_BUILD_TYPE=Release ../OrthancServer/ |
634 | 34 # make |
35 # make doc | |
36 | |
37 | |
1208
6502517fd4af
improved doc thanks to Vincent Kersten
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1150
diff
changeset
|
38 Note 1- When the "STATIC_BUILD" option is set to "ON", the build tool |
634 | 39 will not ask you the permission to download packages from the |
40 Internet. | |
41 | |
1208
6502517fd4af
improved doc thanks to Vincent Kersten
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1150
diff
changeset
|
42 Note 2- If the development package of libuuid was not installed when |
6502517fd4af
improved doc thanks to Vincent Kersten
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1150
diff
changeset
|
43 first invoking cmake, you will have to manually remove the build |
4091
19a2f1d2b816
moved CMakeLists.txt for the server to the OrthancServer folder
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3869
diff
changeset
|
44 directory ("rm -rf ~/Orthanc/Build") after installing this package, |
1208
6502517fd4af
improved doc thanks to Vincent Kersten
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1150
diff
changeset
|
45 then run cmake again. |
6502517fd4af
improved doc thanks to Vincent Kersten
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1150
diff
changeset
|
46 |
3869
c23ef85c7d9c
fix typo, as suggested by jackoliverjoy on github mirror pull request 2
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3544
diff
changeset
|
47 Note 3- To build the documentation, you will have to install doxygen. |
1219
c4ae92753d57
note about doxygen
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1208
diff
changeset
|
48 |
634 | 49 |
2086 | 50 Use system-wide libraries under GNU/Linux |
51 ========================================= | |
634 | 52 |
2086 | 53 Under GNU/Linux, by default, Orthanc links against the shared |
54 libraries of your system (the "STATIC_BUILD" option is set to | |
55 "OFF"). This greatly speeds up the compilation. This is also required | |
56 when building packages for GNU/Linux distributions. Because using | |
57 system libraries is the default behavior, you just have to use: | |
634 | 58 |
4091
19a2f1d2b816
moved CMakeLists.txt for the server to the OrthancServer folder
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3869
diff
changeset
|
59 # cd ./Build |
19a2f1d2b816
moved CMakeLists.txt for the server to the OrthancServer folder
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3869
diff
changeset
|
60 # cmake -DCMAKE_BUILD_TYPE=Debug ../OrthancServer |
634 | 61 # make |
62 | |
3355 | 63 Note that to build the documentation, you will have to install doxygen. |
634 | 64 |
2086 | 65 However, on some GNU/Linux distributions, it is still required to |
66 download and static link against some third-party dependencies, | |
67 e.g. when the system-wide library is not shipped or is | |
68 outdated. Because of difference in the packaging of the various | |
69 GNU/Linux distribution, it is also sometimes required to fine-tune | |
70 some options. | |
634 | 71 |
2086 | 72 You will find below build instructions for specific GNU/Linux |
634 | 73 distributions. Distributions tagged by "SUPPORTED" are tested by |
74 Sébastien Jodogne. Distributions tagged by "CONTRIBUTED" come from | |
75 Orthanc users. | |
76 | |
77 | |
636
9ac1e8383877
build instructions for Debian Sid and Fedora 18
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
635
diff
changeset
|
78 SUPPORTED - Debian Jessie/Sid |
9ac1e8383877
build instructions for Debian Sid and Fedora 18
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
635
diff
changeset
|
79 ----------------------------- |
9ac1e8383877
build instructions for Debian Sid and Fedora 18
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
635
diff
changeset
|
80 |
9ac1e8383877
build instructions for Debian Sid and Fedora 18
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
635
diff
changeset
|
81 # sudo apt-get install build-essential unzip cmake mercurial \ |
9ac1e8383877
build instructions for Debian Sid and Fedora 18
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
635
diff
changeset
|
82 uuid-dev libcurl4-openssl-dev liblua5.1-0-dev \ |
1974
ea4b8975d064
no need for google log anymore
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1622
diff
changeset
|
83 libgtest-dev libpng-dev libjpeg-dev \ |
678 | 84 libsqlite3-dev libssl-dev zlib1g-dev libdcmtk2-dev \ |
1077 | 85 libboost-all-dev libwrap0-dev libjsoncpp-dev libpugixml-dev |
636
9ac1e8383877
build instructions for Debian Sid and Fedora 18
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
635
diff
changeset
|
86 |
4096
d633e5bb7ba3
reusing of ISqlLookupFormatter and DatabaseConstraint in orthanc-databases project
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4091
diff
changeset
|
87 # cd ./Build |
651 | 88 # cmake -DALLOW_DOWNLOADS=ON \ |
3138
ab46e537f92e
renamed class MongooseServer as HttpServer, CivetWeb made default HTTP server
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3131
diff
changeset
|
89 -DUSE_SYSTEM_CIVETWEB=OFF \ |
2403
06536b4f30c0
rename USE_GOOGLE_TEST_DEBIAN_SOURCE_PACKAGE as USE_GOOGLE_TEST_DEBIAN_PACKAGE
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2402
diff
changeset
|
90 -DUSE_GOOGLE_TEST_DEBIAN_PACKAGE=ON \ |
1078 | 91 -DDCMTK_LIBRARIES=dcmjpls \ |
2709 | 92 -DCMAKE_BUILD_TYPE=Release \ |
4091
19a2f1d2b816
moved CMakeLists.txt for the server to the OrthancServer folder
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3869
diff
changeset
|
93 ../OrthancServer/ |
19a2f1d2b816
moved CMakeLists.txt for the server to the OrthancServer folder
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3869
diff
changeset
|
94 # make |
636
9ac1e8383877
build instructions for Debian Sid and Fedora 18
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
635
diff
changeset
|
95 |
9ac1e8383877
build instructions for Debian Sid and Fedora 18
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
635
diff
changeset
|
96 Note: Have also a look at the official package: |
9ac1e8383877
build instructions for Debian Sid and Fedora 18
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
635
diff
changeset
|
97 http://anonscm.debian.org/viewvc/debian-med/trunk/packages/orthanc/trunk/debian/ |
9ac1e8383877
build instructions for Debian Sid and Fedora 18
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
635
diff
changeset
|
98 |
9ac1e8383877
build instructions for Debian Sid and Fedora 18
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
635
diff
changeset
|
99 |
3405
408ffcb4038f
reorganizing build instructions
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3359
diff
changeset
|
100 SUPPORTED - Ubuntu 14.04 LTS |
408ffcb4038f
reorganizing build instructions
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3359
diff
changeset
|
101 ---------------------------- |
645
75af92b18e23
build notes for ubuntu 12.04 lts
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
640
diff
changeset
|
102 |
75af92b18e23
build notes for ubuntu 12.04 lts
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
640
diff
changeset
|
103 # sudo apt-get install build-essential unzip cmake mercurial \ |
3405
408ffcb4038f
reorganizing build instructions
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3359
diff
changeset
|
104 uuid-dev libcurl4-openssl-dev \ |
408ffcb4038f
reorganizing build instructions
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3359
diff
changeset
|
105 libgtest-dev libpng-dev libsqlite3-dev libssl-dev libjpeg-dev \ |
408ffcb4038f
reorganizing build instructions
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3359
diff
changeset
|
106 zlib1g-dev libdcmtk2-dev libboost-all-dev libwrap0-dev \ |
408ffcb4038f
reorganizing build instructions
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3359
diff
changeset
|
107 libcharls-dev libjsoncpp-dev libpugixml-dev |
645
75af92b18e23
build notes for ubuntu 12.04 lts
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
640
diff
changeset
|
108 |
4096
d633e5bb7ba3
reusing of ISqlLookupFormatter and DatabaseConstraint in orthanc-databases project
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4091
diff
changeset
|
109 # cd ./Build |
3405
408ffcb4038f
reorganizing build instructions
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3359
diff
changeset
|
110 # cmake -DALLOW_DOWNLOADS=ON \ |
408ffcb4038f
reorganizing build instructions
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3359
diff
changeset
|
111 -DUSE_GOOGLE_TEST_DEBIAN_PACKAGE=ON \ |
3359
815b81142ff7
Enable custom logging functions to redirect to emscripten specific logging calls
Benjamin Golinvaux <bgo@osimis.io>
parents:
3355
diff
changeset
|
112 -DUSE_SYSTEM_CIVETWEB=OFF \ |
815b81142ff7
Enable custom logging functions to redirect to emscripten specific logging calls
Benjamin Golinvaux <bgo@osimis.io>
parents:
3355
diff
changeset
|
113 -DUSE_SYSTEM_JSONCPP=OFF \ |
3481 | 114 -DUSE_SYSTEM_LUA=OFF \ |
3405
408ffcb4038f
reorganizing build instructions
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3359
diff
changeset
|
115 -DDCMTK_LIBRARIES=dcmjpls \ |
2709 | 116 -DCMAKE_BUILD_TYPE=Release \ |
4091
19a2f1d2b816
moved CMakeLists.txt for the server to the OrthancServer folder
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3869
diff
changeset
|
117 ../OrthancServer/ |
3405
408ffcb4038f
reorganizing build instructions
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3359
diff
changeset
|
118 # make |
636
9ac1e8383877
build instructions for Debian Sid and Fedora 18
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
635
diff
changeset
|
119 |
3405
408ffcb4038f
reorganizing build instructions
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3359
diff
changeset
|
120 |
408ffcb4038f
reorganizing build instructions
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3359
diff
changeset
|
121 SUPPORTED - Ubuntu 16.04 LTS |
408ffcb4038f
reorganizing build instructions
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3359
diff
changeset
|
122 ---------------------------- |
1350
724dc4e17d38
build ubuntu 14.04 lts
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1349
diff
changeset
|
123 |
1552 | 124 # sudo apt-get install build-essential unzip cmake mercurial \ |
3544 | 125 uuid-dev libcurl4-openssl-dev liblua5.3-dev \ |
1622
0b8e62bd9c48
build instructions for centos 6
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1552
diff
changeset
|
126 libgtest-dev libpng-dev libsqlite3-dev libssl-dev libjpeg-dev \ |
3544 | 127 zlib1g-dev libdcmtk-dev libboost-all-dev libwrap0-dev \ |
128 libcharls-dev libjsoncpp-dev libpugixml-dev tzdata | |
1552 | 129 |
4096
d633e5bb7ba3
reusing of ISqlLookupFormatter and DatabaseConstraint in orthanc-databases project
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4091
diff
changeset
|
130 # cd ./Build |
1350
724dc4e17d38
build ubuntu 14.04 lts
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1349
diff
changeset
|
131 # cmake -DALLOW_DOWNLOADS=ON \ |
2403
06536b4f30c0
rename USE_GOOGLE_TEST_DEBIAN_SOURCE_PACKAGE as USE_GOOGLE_TEST_DEBIAN_PACKAGE
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2402
diff
changeset
|
132 -DUSE_GOOGLE_TEST_DEBIAN_PACKAGE=ON \ |
3138
ab46e537f92e
renamed class MongooseServer as HttpServer, CivetWeb made default HTTP server
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3131
diff
changeset
|
133 -DUSE_SYSTEM_CIVETWEB=OFF \ |
1350
724dc4e17d38
build ubuntu 14.04 lts
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1349
diff
changeset
|
134 -DDCMTK_LIBRARIES=dcmjpls \ |
2709 | 135 -DCMAKE_BUILD_TYPE=Release \ |
4091
19a2f1d2b816
moved CMakeLists.txt for the server to the OrthancServer folder
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3869
diff
changeset
|
136 ../OrthancServer/ |
3179
fca730c267d7
New primitives to set and refresh metrics
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3138
diff
changeset
|
137 # make |
fca730c267d7
New primitives to set and refresh metrics
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3138
diff
changeset
|
138 |
fca730c267d7
New primitives to set and refresh metrics
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3138
diff
changeset
|
139 |
fca730c267d7
New primitives to set and refresh metrics
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3138
diff
changeset
|
140 NB: Instructions to use clang and ninja: |
fca730c267d7
New primitives to set and refresh metrics
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3138
diff
changeset
|
141 |
fca730c267d7
New primitives to set and refresh metrics
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3138
diff
changeset
|
142 # sudo apt-get install ninja-build |
4096
d633e5bb7ba3
reusing of ISqlLookupFormatter and DatabaseConstraint in orthanc-databases project
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4091
diff
changeset
|
143 # cd ./Build |
3179
fca730c267d7
New primitives to set and refresh metrics
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3138
diff
changeset
|
144 # CC=/usr/bin/clang CXX=/usr/bin/clang++ cmake -G Ninja \ |
fca730c267d7
New primitives to set and refresh metrics
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3138
diff
changeset
|
145 -DALLOW_DOWNLOADS=ON \ |
fca730c267d7
New primitives to set and refresh metrics
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3138
diff
changeset
|
146 -DUSE_GOOGLE_TEST_DEBIAN_PACKAGE=ON \ |
fca730c267d7
New primitives to set and refresh metrics
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3138
diff
changeset
|
147 -DUSE_SYSTEM_CIVETWEB=OFF \ |
fca730c267d7
New primitives to set and refresh metrics
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3138
diff
changeset
|
148 -DDCMTK_LIBRARIES=dcmjpls \ |
fca730c267d7
New primitives to set and refresh metrics
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3138
diff
changeset
|
149 -DCMAKE_BUILD_TYPE=Release \ |
4091
19a2f1d2b816
moved CMakeLists.txt for the server to the OrthancServer folder
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3869
diff
changeset
|
150 ../OrthancServer/ |
3179
fca730c267d7
New primitives to set and refresh metrics
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3138
diff
changeset
|
151 # ninja |
1350
724dc4e17d38
build ubuntu 14.04 lts
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1349
diff
changeset
|
152 |
724dc4e17d38
build ubuntu 14.04 lts
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1349
diff
changeset
|
153 |
3458 | 154 SUPPORTED - Ubuntu 18.04 LTS |
155 ---------------------------- | |
156 | |
157 # sudo apt-get install build-essential unzip cmake mercurial \ | |
3485 | 158 uuid-dev libcurl4-openssl-dev liblua5.3-dev \ |
3458 | 159 libgtest-dev libpng-dev libsqlite3-dev libssl-dev libjpeg-dev \ |
3485 | 160 zlib1g-dev libdcmtk-dev libboost-all-dev libwrap0-dev \ |
3458 | 161 libcharls-dev libjsoncpp-dev libpugixml-dev locales |
162 | |
4096
d633e5bb7ba3
reusing of ISqlLookupFormatter and DatabaseConstraint in orthanc-databases project
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4091
diff
changeset
|
163 # cd ./Build |
3458 | 164 # cmake -DALLOW_DOWNLOADS=ON \ |
165 -DUSE_GOOGLE_TEST_DEBIAN_PACKAGE=ON \ | |
166 -DUSE_SYSTEM_CIVETWEB=OFF \ | |
167 -DDCMTK_LIBRARIES=dcmjpls \ | |
168 -DCMAKE_BUILD_TYPE=Release \ | |
4091
19a2f1d2b816
moved CMakeLists.txt for the server to the OrthancServer folder
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3869
diff
changeset
|
169 ../OrthancServer/ |
3458 | 170 # make |
171 | |
172 | |
173 NB: A suitable environment for locales can be setup as follows: | |
174 | |
175 # echo "en_US.UTF-8 UTF-8" > /etc/locale.gen | |
176 # locale-gen | |
177 | |
178 | |
1350
724dc4e17d38
build ubuntu 14.04 lts
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1349
diff
changeset
|
179 |
1415 | 180 SUPPORTED - Fedora 20-22 |
181 ------------------------ | |
182 | |
183 # sudo yum install unzip make automake gcc gcc-c++ python cmake \ | |
1974
ea4b8975d064
no need for google log anymore
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1622
diff
changeset
|
184 boost-devel curl-devel dcmtk-devel \ |
1622
0b8e62bd9c48
build instructions for centos 6
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1552
diff
changeset
|
185 gtest-devel libpng-devel libsqlite3x-devel libuuid-devel jpeg-devel \ |
1415 | 186 mongoose-devel openssl-devel jsoncpp-devel lua-devel pugixml-devel |
187 | |
188 You will also have to install "gflags-devel" on Fedora 21&22: | |
189 | |
190 # sudo yum install gflags-devel | |
191 | |
4096
d633e5bb7ba3
reusing of ISqlLookupFormatter and DatabaseConstraint in orthanc-databases project
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4091
diff
changeset
|
192 # cd ./Build |
1415 | 193 # cmake "-DDCMTK_LIBRARIES=CharLS" \ |
3138
ab46e537f92e
renamed class MongooseServer as HttpServer, CivetWeb made default HTTP server
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3131
diff
changeset
|
194 -DENABLE_CIVETWEB=OFF \ |
1415 | 195 -DSYSTEM_MONGOOSE_USE_CALLBACKS=OFF \ |
2709 | 196 -DCMAKE_BUILD_TYPE=Release \ |
4091
19a2f1d2b816
moved CMakeLists.txt for the server to the OrthancServer folder
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3869
diff
changeset
|
197 ../OrthancServer/ |
19a2f1d2b816
moved CMakeLists.txt for the server to the OrthancServer folder
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3869
diff
changeset
|
198 # make |
1415 | 199 |
200 Note: Have also a look at the official package: | |
201 http://pkgs.fedoraproject.org/cgit/orthanc.git/tree/?h=f18 | |
202 | |
203 | |
204 | |
1337 | 205 SUPPORTED - FreeBSD 10.1 |
206 ------------------------ | |
207 | |
1622
0b8e62bd9c48
build instructions for centos 6
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1552
diff
changeset
|
208 # pkg install jsoncpp pugixml lua51 curl googletest dcmtk cmake jpeg \ |
1974
ea4b8975d064
no need for google log anymore
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1622
diff
changeset
|
209 e2fsprogs-libuuid boost-libs sqlite3 python libiconv |
1337 | 210 |
4096
d633e5bb7ba3
reusing of ISqlLookupFormatter and DatabaseConstraint in orthanc-databases project
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4091
diff
changeset
|
211 # cd ./Build |
1337 | 212 # cmake -DALLOW_DOWNLOADS=ON \ |
3138
ab46e537f92e
renamed class MongooseServer as HttpServer, CivetWeb made default HTTP server
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3131
diff
changeset
|
213 -DUSE_SYSTEM_CIVETWEB=OFF \ |
1337 | 214 -DDCMTK_LIBRARIES="dcmdsig;charls;dcmjpls" \ |
2709 | 215 -DCMAKE_BUILD_TYPE=Release \ |
4091
19a2f1d2b816
moved CMakeLists.txt for the server to the OrthancServer folder
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3869
diff
changeset
|
216 ../OrthancServer/ |
19a2f1d2b816
moved CMakeLists.txt for the server to the OrthancServer folder
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3869
diff
changeset
|
217 # make |
1337 | 218 |
636
9ac1e8383877
build instructions for Debian Sid and Fedora 18
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
635
diff
changeset
|
219 |
9ac1e8383877
build instructions for Debian Sid and Fedora 18
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
635
diff
changeset
|
220 |
2086 | 221 Other GNU/Linux distributions? |
222 ------------------------------ | |
634 | 223 |
3405
408ffcb4038f
reorganizing build instructions
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3359
diff
changeset
|
224 Don't hesitate to send us your build instructions (by a mail to |
3063 | 225 s.jodogne@orthanc-labs.com)! |
634 | 226 |
3405
408ffcb4038f
reorganizing build instructions
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3359
diff
changeset
|
227 The file "./Resources/OldBuildInstructions.txt" contains build |
408ffcb4038f
reorganizing build instructions
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3359
diff
changeset
|
228 instructions that once worked for older versions of Orthanc or older |
408ffcb4038f
reorganizing build instructions
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3359
diff
changeset
|
229 GNU/Linux distributions, but are not tested anymore. Even if they may |
408ffcb4038f
reorganizing build instructions
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3359
diff
changeset
|
230 not work anymore as such, they can serve as a basis. |
408ffcb4038f
reorganizing build instructions
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3359
diff
changeset
|
231 |
634 | 232 You can find build instructions for Orthanc up to 0.7.0 on the |
233 following Wiki page: | |
3405
408ffcb4038f
reorganizing build instructions
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3359
diff
changeset
|
234 https://book.orthanc-server.com/faq/compiling-old.html |
634 | 235 |
236 These instructions will not work as such beyond Orthanc 0.7.0, but | |
237 they might give indications. | |
238 | |
239 | |
240 | |
3529 | 241 Additional information |
242 ---------------------- | |
243 | |
244 * It has been reported that distributions coming with Boost >= 1.70.0 | |
245 might need the option "-DBoost_NO_BOOST_CMAKE=ON" to be added to the | |
246 "cmake" command-line. | |
247 https://groups.google.com/d/msg/orthanc-users/nXq2qOndw9c/0PGnaOqiAgAJ | |
248 | |
249 | |
250 | |
251 | |
634 | 252 Using ccache |
253 ============ | |
254 | |
2086 | 255 Under GNU/Linux, you also have the opportunity to use "ccache" to |
634 | 256 dramatically decrease the compilation time when rebuilding |
257 Orthanc. This is especially useful for developers. To this end, you | |
258 would use: | |
259 | |
4091
19a2f1d2b816
moved CMakeLists.txt for the server to the OrthancServer folder
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3869
diff
changeset
|
260 # CC="ccache gcc" CXX="ccache g++" cmake ../OrthancServer/ [Other Options] |