Mercurial > hg > orthanc
annotate Resources/CMake/Compiler.cmake @ 3750:0ba17d2bcdc9
fix for boost 1.71 - cf. Debian Bug#953884
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Mon, 16 Mar 2020 11:19:37 +0100 |
parents | d5cf43519a49 |
children | a3e38994d95a |
rev | line source |
---|---|
134 | 1 # This file sets all the compiler-related flags |
2 | |
2448
862d943115f9
working on linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2406
diff
changeset
|
3 if (CMAKE_CROSSCOMPILING OR |
862d943115f9
working on linux standard base
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2406
diff
changeset
|
4 "${CMAKE_SYSTEM_VERSION}" STREQUAL "LinuxStandardBase") |
1414 | 5 # Cross-compilation necessarily implies standalone and static build |
6 SET(STATIC_BUILD ON) | |
7 SET(STANDALONE_BUILD ON) | |
8 endif() | |
9 | |
3625 | 10 |
11 if ("${CMAKE_SYSTEM_VERSION}" STREQUAL "LinuxStandardBase") | |
12 # Cache the environment variables "LSB_CC" and "LSB_CXX" for further | |
13 # use by "ExternalProject" in CMake | |
14 SET(CMAKE_LSB_CC $ENV{LSB_CC} CACHE STRING "") | |
15 SET(CMAKE_LSB_CXX $ENV{LSB_CXX} CACHE STRING "") | |
16 endif() | |
17 | |
18 | |
1414 | 19 if (CMAKE_COMPILER_IS_GNUCXX) |
2362
f47fd47b3c91
removal of -Wno-implicit-function-declaration compiler flag
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2175
diff
changeset
|
20 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wno-long-long") |
f47fd47b3c91
removal of -Wno-implicit-function-declaration compiler flag
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2175
diff
changeset
|
21 |
134 | 22 # --std=c99 makes libcurl not to compile |
23 # -pedantic gives a lot of warnings on OpenSSL | |
1951
01de36d949c3
Possibility to use forthcoming DCMTK 3.6.1 in static builds (instead of 3.6.0)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1901
diff
changeset
|
24 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wno-long-long -Wno-variadic-macros") |
571 | 25 |
26 if (CMAKE_CROSSCOMPILING) | |
27 # http://stackoverflow.com/a/3543845/881731 | |
28 set(CMAKE_RC_COMPILE_OBJECT "<CMAKE_RC_COMPILER> -O coff -I<CMAKE_CURRENT_SOURCE_DIR> <SOURCE> <OBJECT>") | |
29 endif() | |
30 | |
1414 | 31 elseif (MSVC) |
569 | 32 # Use static runtime under Visual Studio |
33 # http://www.cmake.org/Wiki/CMake_FAQ#Dynamic_Replace | |
134 | 34 # http://stackoverflow.com/a/6510446 |
35 foreach(flag_var | |
36 CMAKE_C_FLAGS_DEBUG | |
37 CMAKE_CXX_FLAGS_DEBUG | |
38 CMAKE_C_FLAGS_RELEASE | |
39 CMAKE_CXX_FLAGS_RELEASE | |
40 CMAKE_C_FLAGS_MINSIZEREL | |
41 CMAKE_CXX_FLAGS_MINSIZEREL | |
42 CMAKE_C_FLAGS_RELWITHDEBINFO | |
43 CMAKE_CXX_FLAGS_RELWITHDEBINFO) | |
44 string(REGEX REPLACE "/MD" "/MT" ${flag_var} "${${flag_var}}") | |
45 string(REGEX REPLACE "/MDd" "/MTd" ${flag_var} "${${flag_var}}") | |
46 endforeach(flag_var) | |
569 | 47 |
3251
fcfd4f73228c
using masm if compiling icu with Visual Studio
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3250
diff
changeset
|
48 # Add /Zm256 compiler option to Visual Studio to fix PCH errors |
fcfd4f73228c
using masm if compiling icu with Visual Studio
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3250
diff
changeset
|
49 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /Zm256") |
1060 | 50 |
3278
ce6a98f8ed85
New CMake option: "-DMSVC_MULTIPLE_PROCESSES=ON" for parallel build with Visual Studio
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3251
diff
changeset
|
51 # New in Orthanc 1.5.5 |
ce6a98f8ed85
New CMake option: "-DMSVC_MULTIPLE_PROCESSES=ON" for parallel build with Visual Studio
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3251
diff
changeset
|
52 if (MSVC_MULTIPLE_PROCESSES) |
ce6a98f8ed85
New CMake option: "-DMSVC_MULTIPLE_PROCESSES=ON" for parallel build with Visual Studio
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3251
diff
changeset
|
53 # "If you omit the processMax argument in the /MP option, the |
ce6a98f8ed85
New CMake option: "-DMSVC_MULTIPLE_PROCESSES=ON" for parallel build with Visual Studio
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3251
diff
changeset
|
54 # compiler obtains the number of effective processors from the |
ce6a98f8ed85
New CMake option: "-DMSVC_MULTIPLE_PROCESSES=ON" for parallel build with Visual Studio
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3251
diff
changeset
|
55 # operating system, and then creates one process per effective |
ce6a98f8ed85
New CMake option: "-DMSVC_MULTIPLE_PROCESSES=ON" for parallel build with Visual Studio
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3251
diff
changeset
|
56 # processor" |
ce6a98f8ed85
New CMake option: "-DMSVC_MULTIPLE_PROCESSES=ON" for parallel build with Visual Studio
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3251
diff
changeset
|
57 # https://blog.kitware.com/cmake-building-with-all-your-cores/ |
ce6a98f8ed85
New CMake option: "-DMSVC_MULTIPLE_PROCESSES=ON" for parallel build with Visual Studio
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3251
diff
changeset
|
58 # https://docs.microsoft.com/en-us/cpp/build/reference/mp-build-with-multiple-processes |
ce6a98f8ed85
New CMake option: "-DMSVC_MULTIPLE_PROCESSES=ON" for parallel build with Visual Studio
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3251
diff
changeset
|
59 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /MP") |
ce6a98f8ed85
New CMake option: "-DMSVC_MULTIPLE_PROCESSES=ON" for parallel build with Visual Studio
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3251
diff
changeset
|
60 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /MP") |
ce6a98f8ed85
New CMake option: "-DMSVC_MULTIPLE_PROCESSES=ON" for parallel build with Visual Studio
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3251
diff
changeset
|
61 endif() |
ce6a98f8ed85
New CMake option: "-DMSVC_MULTIPLE_PROCESSES=ON" for parallel build with Visual Studio
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3251
diff
changeset
|
62 |
134 | 63 add_definitions( |
64 -D_CRT_SECURE_NO_WARNINGS=1 | |
65 -D_CRT_SECURE_NO_DEPRECATE=1 | |
66 ) | |
2148
e18023c2fdfb
fix visual studio 2015 build
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1969
diff
changeset
|
67 |
e18023c2fdfb
fix visual studio 2015 build
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1969
diff
changeset
|
68 if (MSVC_VERSION LESS 1600) |
e18023c2fdfb
fix visual studio 2015 build
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1969
diff
changeset
|
69 # Starting with Visual Studio >= 2010 (i.e. macro _MSC_VER >= |
e18023c2fdfb
fix visual studio 2015 build
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1969
diff
changeset
|
70 # 1600), Microsoft ships a standard-compliant <stdint.h> |
e18023c2fdfb
fix visual studio 2015 build
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1969
diff
changeset
|
71 # header. For earlier versions of Visual Studio, give access to a |
e18023c2fdfb
fix visual studio 2015 build
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1969
diff
changeset
|
72 # compatibility header. |
e18023c2fdfb
fix visual studio 2015 build
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1969
diff
changeset
|
73 # http://stackoverflow.com/a/70630/881731 |
e18023c2fdfb
fix visual studio 2015 build
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1969
diff
changeset
|
74 # https://en.wikibooks.org/wiki/C_Programming/C_Reference/stdint.h#External_links |
e18023c2fdfb
fix visual studio 2015 build
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1969
diff
changeset
|
75 include_directories(${ORTHANC_ROOT}/Resources/ThirdParty/VisualStudio) |
e18023c2fdfb
fix visual studio 2015 build
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1969
diff
changeset
|
76 endif() |
e18023c2fdfb
fix visual studio 2015 build
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1969
diff
changeset
|
77 |
134 | 78 link_libraries(netapi32) |
79 endif() | |
80 | |
81 | |
2364 | 82 if (${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD" OR |
83 ${CMAKE_SYSTEM_NAME} STREQUAL "OpenBSD") | |
84 # In FreeBSD/OpenBSD, the "/usr/local/" folder contains the ports and need to be imported | |
85 SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -I/usr/local/include") | |
86 SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -I/usr/local/include") | |
87 SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -L/usr/local/lib") | |
88 SET(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -L/usr/local/lib") | |
89 endif() | |
90 | |
91 | |
890 | 92 if (${CMAKE_SYSTEM_NAME} STREQUAL "Linux" OR |
1337 | 93 ${CMAKE_SYSTEM_NAME} STREQUAL "kFreeBSD" OR |
2364 | 94 ${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD" OR |
95 ${CMAKE_SYSTEM_NAME} STREQUAL "OpenBSD") | |
96 | |
3155
077e1101d908
fix to compile postgresql plugin in FreeBSD
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2781
diff
changeset
|
97 if (NOT ${CMAKE_SYSTEM_NAME} STREQUAL "OpenBSD" AND |
077e1101d908
fix to compile postgresql plugin in FreeBSD
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2781
diff
changeset
|
98 NOT ${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD") |
2364 | 99 # The "--no-undefined" linker flag makes the shared libraries |
3155
077e1101d908
fix to compile postgresql plugin in FreeBSD
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2781
diff
changeset
|
100 # (plugins ModalityWorklists and ServeFolders) fail to compile on |
077e1101d908
fix to compile postgresql plugin in FreeBSD
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2781
diff
changeset
|
101 # OpenBSD, and make the PostgreSQL plugin complain about missing |
077e1101d908
fix to compile postgresql plugin in FreeBSD
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2781
diff
changeset
|
102 # "environ" global variable in FreeBSD |
2364 | 103 set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,--no-undefined") |
104 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--no-undefined") | |
105 endif() | |
1901
50234539a0dd
ENABLE_PLUGINS_VERSION_SCRIPT
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1649
diff
changeset
|
106 |
50234539a0dd
ENABLE_PLUGINS_VERSION_SCRIPT
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1649
diff
changeset
|
107 if (NOT DEFINED ENABLE_PLUGINS_VERSION_SCRIPT OR |
50234539a0dd
ENABLE_PLUGINS_VERSION_SCRIPT
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1649
diff
changeset
|
108 ENABLE_PLUGINS_VERSION_SCRIPT) |
50234539a0dd
ENABLE_PLUGINS_VERSION_SCRIPT
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1649
diff
changeset
|
109 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--version-script=${ORTHANC_ROOT}/Plugins/Samples/Common/VersionScript.map") |
50234539a0dd
ENABLE_PLUGINS_VERSION_SCRIPT
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1649
diff
changeset
|
110 endif() |
134 | 111 |
112 # Remove the "-rdynamic" option | |
113 # http://www.mail-archive.com/cmake@cmake.org/msg08837.html | |
114 set(CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS "") | |
2450
ade8b4ddd8a6
Static linking against libuuid
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2448
diff
changeset
|
115 link_libraries(pthread) |
2364 | 116 |
117 if (NOT ${CMAKE_SYSTEM_NAME} STREQUAL "OpenBSD") | |
118 link_libraries(rt) | |
119 endif() | |
120 | |
121 if (NOT ${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD" AND | |
122 NOT ${CMAKE_SYSTEM_NAME} STREQUAL "OpenBSD") | |
123 link_libraries(dl) | |
124 endif() | |
1337 | 125 |
2460 | 126 if (NOT ${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD" AND |
127 NOT ${CMAKE_SYSTEM_NAME} STREQUAL "OpenBSD") | |
128 # The "--as-needed" linker flag is not available on FreeBSD and OpenBSD | |
1337 | 129 set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,--as-needed") |
1416
037d5ffca74d
as needed for plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1414
diff
changeset
|
130 set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,--as-needed") |
037d5ffca74d
as needed for plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1414
diff
changeset
|
131 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--as-needed") |
2364 | 132 endif() |
133 | |
134 if (NOT ${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD" AND | |
135 NOT ${CMAKE_SYSTEM_NAME} STREQUAL "OpenBSD") | |
136 # FreeBSD/OpenBSD have just one single interface for file | |
137 # handling, which is 64bit clean, so there is no need to define macro | |
138 # for LFS (Large File Support). | |
139 # https://ohse.de/uwe/articles/lfs.html | |
1337 | 140 add_definitions( |
141 -D_LARGEFILE64_SOURCE=1 | |
142 -D_FILE_OFFSET_BITS=64 | |
143 ) | |
144 endif() | |
134 | 145 |
146 elseif(${CMAKE_SYSTEM_NAME} STREQUAL "Windows") | |
1560
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
147 if (MSVC) |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
148 message("MSVC compiler version = " ${MSVC_VERSION} "\n") |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
149 # Starting Visual Studio 2013 (version 1800), it is not possible |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
150 # to target Windows XP anymore |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
151 if (MSVC_VERSION LESS 1800) |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
152 add_definitions( |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
153 -DWINVER=0x0501 |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
154 -D_WIN32_WINNT=0x0501 |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
155 ) |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
156 endif() |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
157 else() |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
158 add_definitions( |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
159 -DWINVER=0x0501 |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
160 -D_WIN32_WINNT=0x0501 |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
161 ) |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
162 endif() |
307b9ea6c39b
fixes for Visual Studio 2013 and QtCreator
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1420
diff
changeset
|
163 |
134 | 164 add_definitions( |
165 -D_CRT_SECURE_NO_WARNINGS=1 | |
166 ) | |
167 link_libraries(rpcrt4 ws2_32) | |
495 | 168 |
1414 | 169 if (CMAKE_COMPILER_IS_GNUCXX) |
1951
01de36d949c3
Possibility to use forthcoming DCMTK 3.6.1 in static builds (instead of 3.6.0)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1901
diff
changeset
|
170 # Some additional C/C++ compiler flags for MinGW |
1969
5e40f88f4eba
fix for old versions of mingw
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1968
diff
changeset
|
171 SET(MINGW_NO_WARNINGS "-Wno-unused-function -Wno-unused-variable") |
5e40f88f4eba
fix for old versions of mingw
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1968
diff
changeset
|
172 SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${MINGW_NO_WARNINGS} -Wno-pointer-to-int-cast -Wno-int-to-pointer-cast") |
1951
01de36d949c3
Possibility to use forthcoming DCMTK 3.6.1 in static builds (instead of 3.6.0)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1901
diff
changeset
|
173 SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${MINGW_NO_WARNINGS}") |
01de36d949c3
Possibility to use forthcoming DCMTK 3.6.1 in static builds (instead of 3.6.0)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1901
diff
changeset
|
174 |
3568
589238dcd782
DYNAMIC_MINGW_STDLIB
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3492
diff
changeset
|
175 if (DYNAMIC_MINGW_STDLIB) |
589238dcd782
DYNAMIC_MINGW_STDLIB
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3492
diff
changeset
|
176 else() |
589238dcd782
DYNAMIC_MINGW_STDLIB
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3492
diff
changeset
|
177 # This is a patch for MinGW64 |
589238dcd782
DYNAMIC_MINGW_STDLIB
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3492
diff
changeset
|
178 SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,--allow-multiple-definition -static-libgcc -static-libstdc++") |
589238dcd782
DYNAMIC_MINGW_STDLIB
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3492
diff
changeset
|
179 SET(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--allow-multiple-definition -static-libgcc -static-libstdc++") |
589238dcd782
DYNAMIC_MINGW_STDLIB
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3492
diff
changeset
|
180 endif() |
1377
601d34afdab9
patch for recent versions of MinGW
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1337
diff
changeset
|
181 |
1381 | 182 CHECK_LIBRARY_EXISTS(winpthread pthread_create "" HAVE_WIN_PTHREAD) |
183 if (HAVE_WIN_PTHREAD) | |
3568
589238dcd782
DYNAMIC_MINGW_STDLIB
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3492
diff
changeset
|
184 if (DYNAMIC_MINGW_STDLIB) |
589238dcd782
DYNAMIC_MINGW_STDLIB
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3492
diff
changeset
|
185 else() |
589238dcd782
DYNAMIC_MINGW_STDLIB
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3492
diff
changeset
|
186 # This line is necessary to compile with recent versions of MinGW, |
589238dcd782
DYNAMIC_MINGW_STDLIB
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3492
diff
changeset
|
187 # otherwise "libwinpthread-1.dll" is not statically linked. |
589238dcd782
DYNAMIC_MINGW_STDLIB
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3492
diff
changeset
|
188 SET(CMAKE_CXX_STANDARD_LIBRARIES "${CMAKE_CXX_STANDARD_LIBRARIES} -Wl,-Bstatic -lstdc++ -lpthread -Wl,-Bdynamic") |
589238dcd782
DYNAMIC_MINGW_STDLIB
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3492
diff
changeset
|
189 endif() |
1381 | 190 add_definitions(-DHAVE_WIN_PTHREAD=1) |
191 else() | |
192 add_definitions(-DHAVE_WIN_PTHREAD=0) | |
193 endif() | |
495 | 194 endif() |
195 | |
918 | 196 elseif (${CMAKE_SYSTEM_NAME} STREQUAL "Darwin") |
1649
8040d56cb0b3
New function "OrthancPluginRegisterErrorCode()" to declare custom error codes
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1647
diff
changeset
|
197 SET(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -exported_symbols_list ${ORTHANC_ROOT}/Plugins/Samples/Common/ExportedSymbols.list") |
1647
fe458dde986e
hide symbols in plugins
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1560
diff
changeset
|
198 |
918 | 199 add_definitions( |
200 -D_XOPEN_SOURCE=1 | |
201 ) | |
921
37aec47f49f0
successful compilation under Mac OS X Mavericks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
918
diff
changeset
|
202 link_libraries(iconv) |
918 | 203 |
2406
f0cfacd0c9b8
Orthanc framework: ORTHANC_SANDBOXED parameter
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2364
diff
changeset
|
204 elseif (CMAKE_SYSTEM_NAME STREQUAL "Emscripten") |
f0cfacd0c9b8
Orthanc framework: ORTHANC_SANDBOXED parameter
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2364
diff
changeset
|
205 message("Building using Emscripten (for WebAssembly or asm.js targets)") |
f0cfacd0c9b8
Orthanc framework: ORTHANC_SANDBOXED parameter
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2364
diff
changeset
|
206 |
2510
04873915beaf
configuration of DCMTK for WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2472
diff
changeset
|
207 # The BINARYEN_TRAP_MODE specifies what to do when divisions per |
04873915beaf
configuration of DCMTK for WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2472
diff
changeset
|
208 # zero (and similar conditions like integer overflows) are |
04873915beaf
configuration of DCMTK for WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2472
diff
changeset
|
209 # encountered: The "clamp" mode avoids throwing errors, as they |
04873915beaf
configuration of DCMTK for WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2472
diff
changeset
|
210 # cannot be properly catched by "try {} catch (...)" constructions. |
3599
e01900f913e7
fix duplicate symbol "jaritab" in wasm
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3568
diff
changeset
|
211 # Setting this option to "ON" fixes error: "shared:ERROR: |
e01900f913e7
fix duplicate symbol "jaritab" in wasm
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3568
diff
changeset
|
212 # BINARYEN_TRAP_MODE is not supported by the LLVM wasm backend" if |
e01900f913e7
fix duplicate symbol "jaritab" in wasm
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3568
diff
changeset
|
213 # using the "upstream" backend of Emscripten. |
e01900f913e7
fix duplicate symbol "jaritab" in wasm
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3568
diff
changeset
|
214 if (NOT EMSCRIPTEN_SET_LLVM_WASM_BACKEND) |
e01900f913e7
fix duplicate symbol "jaritab" in wasm
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3568
diff
changeset
|
215 set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -s BINARYEN_TRAP_MODE='\"clamp\"'") |
3492
cfaa9eded17e
Added flag to control the emscripten backend (which, in turn, tweaks the compiler flags)
Benjamin Golinvaux <bgo@osimis.io>
parents:
3459
diff
changeset
|
216 endif() |
2510
04873915beaf
configuration of DCMTK for WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2472
diff
changeset
|
217 |
3599
e01900f913e7
fix duplicate symbol "jaritab" in wasm
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3568
diff
changeset
|
218 set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -s EXTRA_EXPORTED_RUNTIME_METHODS='[\"ccall\", \"cwrap\"]'") |
e01900f913e7
fix duplicate symbol "jaritab" in wasm
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3568
diff
changeset
|
219 |
2781
13038d638097
primitives for android ndk
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2510
diff
changeset
|
220 elseif (CMAKE_SYSTEM_NAME STREQUAL "Android") |
13038d638097
primitives for android ndk
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2510
diff
changeset
|
221 |
2364 | 222 else() |
2781
13038d638097
primitives for android ndk
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2510
diff
changeset
|
223 message("Unknown target platform: ${CMAKE_SYSTEM_NAME}") |
2364 | 224 message(FATAL_ERROR "Support your platform here") |
134 | 225 endif() |
226 | |
227 | |
2175
bed8e7ad8bab
ENABLE_PROFILING cmake option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2148
diff
changeset
|
228 if (DEFINED ENABLE_PROFILING AND ENABLE_PROFILING) |
bed8e7ad8bab
ENABLE_PROFILING cmake option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2148
diff
changeset
|
229 if (CMAKE_COMPILER_IS_GNUCXX) |
bed8e7ad8bab
ENABLE_PROFILING cmake option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2148
diff
changeset
|
230 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pg") |
bed8e7ad8bab
ENABLE_PROFILING cmake option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2148
diff
changeset
|
231 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -pg") |
bed8e7ad8bab
ENABLE_PROFILING cmake option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2148
diff
changeset
|
232 set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -pg") |
bed8e7ad8bab
ENABLE_PROFILING cmake option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2148
diff
changeset
|
233 set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -pg") |
bed8e7ad8bab
ENABLE_PROFILING cmake option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2148
diff
changeset
|
234 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -pg") |
bed8e7ad8bab
ENABLE_PROFILING cmake option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2148
diff
changeset
|
235 else() |
bed8e7ad8bab
ENABLE_PROFILING cmake option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2148
diff
changeset
|
236 message(FATAL_ERROR "Don't know how to enable profiling on your configuration") |
bed8e7ad8bab
ENABLE_PROFILING cmake option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2148
diff
changeset
|
237 endif() |
bed8e7ad8bab
ENABLE_PROFILING cmake option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2148
diff
changeset
|
238 endif() |
bed8e7ad8bab
ENABLE_PROFILING cmake option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2148
diff
changeset
|
239 |
bed8e7ad8bab
ENABLE_PROFILING cmake option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2148
diff
changeset
|
240 |
2456
cbb8deaacdf7
Fix static build on CentOS 6
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2450
diff
changeset
|
241 if (CMAKE_COMPILER_IS_GNUCXX) |
cbb8deaacdf7
Fix static build on CentOS 6
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2450
diff
changeset
|
242 # "When creating a static library using binutils (ar) and there |
cbb8deaacdf7
Fix static build on CentOS 6
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2450
diff
changeset
|
243 # exist a duplicate object name (e.g. a/Foo.cpp.o, b/Foo.cpp.o), the |
cbb8deaacdf7
Fix static build on CentOS 6
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2450
diff
changeset
|
244 # resulting static library can end up having only one of the |
cbb8deaacdf7
Fix static build on CentOS 6
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2450
diff
changeset
|
245 # duplicate objects. [...] This bug only happens if there are many |
2457 | 246 # objects." The trick consists in replacing the "r" argument |
247 # ("replace") provided to "ar" (as used in CMake < 3.1) by the "q" | |
248 # argument ("quick append"). This is because of the fact that CMake | |
249 # will invoke "ar" several times with several batches of ".o" | |
250 # objects, and using "r" would overwrite symbols defined in | |
251 # preceding batches. https://cmake.org/Bug/view.php?id=14874 | |
2456
cbb8deaacdf7
Fix static build on CentOS 6
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2450
diff
changeset
|
252 set(CMAKE_CXX_ARCHIVE_APPEND "<CMAKE_AR> <LINK_FLAGS> q <TARGET> <OBJECTS>") |
cbb8deaacdf7
Fix static build on CentOS 6
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2450
diff
changeset
|
253 endif() |
cbb8deaacdf7
Fix static build on CentOS 6
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2450
diff
changeset
|
254 |
cbb8deaacdf7
Fix static build on CentOS 6
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2450
diff
changeset
|
255 |
1414 | 256 if (STATIC_BUILD) |
134 | 257 add_definitions(-DORTHANC_STATIC=1) |
258 else() | |
259 add_definitions(-DORTHANC_STATIC=0) | |
260 endif() |