blob: 8d9051cfdd7c6377e52774543dabb331e462afed [file] [log] [blame]
Daniel Dunbar10fa2df2011-11-04 19:04:35 +00001# This CMake module is responsible for interpreting the user defined LLVM_
2# options and executing the appropriate CMake commands to realize the users'
3# selections.
4
Eric Fiselierebf091d2014-11-15 07:45:31 +00005# This is commonly needed so make sure it's defined before we include anything
6# else.
7string(TOUPPER "${CMAKE_BUILD_TYPE}" uppercase_CMAKE_BUILD_TYPE)
8
Reid Kleckner9fac19f2016-03-02 16:42:56 +00009include(CheckCompilerVersion)
Jordan Rose31c5b7b2014-02-05 00:02:37 +000010include(HandleLLVMStdlib)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +000011include(AddLLVMDefinitions)
Joe Abbey15d98342012-11-26 02:02:08 +000012include(CheckCCompilerFlag)
Jordan Rose643aa0e2013-03-02 01:00:40 +000013include(CheckCXXCompilerFlag)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +000014
Bob Haarmanf947d8d2017-03-01 19:22:18 +000015if(CMAKE_LINKER MATCHES "lld-link.exe" OR (WIN32 AND LLVM_USE_LINKER STREQUAL "lld"))
16 set(LINKER_IS_LLD_LINK TRUE)
17else()
18 set(LINKER_IS_LLD_LINK FALSE)
19endif()
20
Chris Bienemand8ec4422017-02-07 19:06:22 +000021# Ninja Job Pool support
22# The following only works with the Ninja generator in CMake >= 3.0.
23set(LLVM_PARALLEL_COMPILE_JOBS "" CACHE STRING
24 "Define the maximum number of concurrent compilation jobs.")
25if(LLVM_PARALLEL_COMPILE_JOBS)
26 if(NOT CMAKE_MAKE_PROGRAM MATCHES "ninja")
27 message(WARNING "Job pooling is only available with Ninja generators.")
28 else()
29 set_property(GLOBAL APPEND PROPERTY JOB_POOLS compile_job_pool=${LLVM_PARALLEL_COMPILE_JOBS})
30 set(CMAKE_JOB_POOL_COMPILE compile_job_pool)
31 endif()
32endif()
33
34set(LLVM_PARALLEL_LINK_JOBS "" CACHE STRING
35 "Define the maximum number of concurrent link jobs.")
36if(LLVM_PARALLEL_LINK_JOBS)
37 if(NOT CMAKE_MAKE_PROGRAM MATCHES "ninja")
38 message(WARNING "Job pooling is only available with Ninja generators.")
39 else()
40 set_property(GLOBAL APPEND PROPERTY JOB_POOLS link_job_pool=${LLVM_PARALLEL_LINK_JOBS})
41 set(CMAKE_JOB_POOL_LINK link_job_pool)
42 endif()
43endif()
44
Chandler Carruth83885972014-01-13 22:21:34 +000045
Bob Haarmanf947d8d2017-03-01 19:22:18 +000046if (LINKER_IS_LLD_LINK)
Reid Kleckner841e5a02016-01-22 23:27:13 +000047 # Pass /MANIFEST:NO so that CMake doesn't run mt.exe on our binaries. Adding
48 # manifests with mt.exe breaks LLD's symbol tables and takes as much time as
49 # the link. See PR24476.
50 append("/MANIFEST:NO"
51 CMAKE_EXE_LINKER_FLAGS CMAKE_MODULE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS)
52endif()
53
Oscar Fuentesf4202ba2011-02-03 20:57:36 +000054if( LLVM_ENABLE_ASSERTIONS )
55 # MSVC doesn't like _DEBUG on release builds. See PR 4379.
56 if( NOT MSVC )
57 add_definitions( -D_DEBUG )
58 endif()
Duncan Sands80f122f2013-07-17 09:34:51 +000059 # On non-Debug builds cmake automatically defines NDEBUG, so we
Oscar Fuentesf4202ba2011-02-03 20:57:36 +000060 # explicitly undefine it:
Duncan Sands80f122f2013-07-17 09:34:51 +000061 if( NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG" )
Oscar Fuentesf4202ba2011-02-03 20:57:36 +000062 add_definitions( -UNDEBUG )
Reid Klecknerc1c01d52013-04-07 01:45:01 +000063 # Also remove /D NDEBUG to avoid MSVC warnings about conflicting defines.
Reid Kleckner472e6b42014-05-19 21:13:41 +000064 foreach (flags_var_to_scrub
65 CMAKE_CXX_FLAGS_RELEASE
66 CMAKE_CXX_FLAGS_RELWITHDEBINFO
67 CMAKE_CXX_FLAGS_MINSIZEREL
68 CMAKE_C_FLAGS_RELEASE
69 CMAKE_C_FLAGS_RELWITHDEBINFO
70 CMAKE_C_FLAGS_MINSIZEREL)
71 string (REGEX REPLACE "(^| )[/-]D *NDEBUG($| )" " "
72 "${flags_var_to_scrub}" "${${flags_var_to_scrub}}")
73 endforeach()
Oscar Fuentesf4202ba2011-02-03 20:57:36 +000074 endif()
Oscar Fuentesf4202ba2011-02-03 20:57:36 +000075endif()
76
Filipe Cabecinhas0da99372016-04-29 15:22:48 +000077if(LLVM_ENABLE_EXPENSIVE_CHECKS)
78 add_definitions(-DEXPENSIVE_CHECKS)
79 add_definitions(-D_GLIBCXX_DEBUG)
80endif()
81
Sanjoy Das8ce64992015-03-26 19:25:01 +000082string(TOUPPER "${LLVM_ABI_BREAKING_CHECKS}" uppercase_LLVM_ABI_BREAKING_CHECKS)
83
84if( uppercase_LLVM_ABI_BREAKING_CHECKS STREQUAL "WITH_ASSERTS" )
85 if( LLVM_ENABLE_ASSERTIONS )
86 set( LLVM_ENABLE_ABI_BREAKING_CHECKS 1 )
87 endif()
88elseif( uppercase_LLVM_ABI_BREAKING_CHECKS STREQUAL "FORCE_ON" )
89 set( LLVM_ENABLE_ABI_BREAKING_CHECKS 1 )
90elseif( uppercase_LLVM_ABI_BREAKING_CHECKS STREQUAL "FORCE_OFF" )
91 # We don't need to do anything special to turn off ABI breaking checks.
Eric Fiselier8e2f0a82015-05-12 22:49:18 +000092elseif( NOT DEFINED LLVM_ABI_BREAKING_CHECKS )
93 # Treat LLVM_ABI_BREAKING_CHECKS like "FORCE_OFF" when it has not been
94 # defined.
Sanjoy Das8ce64992015-03-26 19:25:01 +000095else()
96 message(FATAL_ERROR "Unknown value for LLVM_ABI_BREAKING_CHECKS: \"${LLVM_ABI_BREAKING_CHECKS}\"!")
97endif()
98
Oscar Fuentesf4202ba2011-02-03 20:57:36 +000099if(WIN32)
Nico Weberc27118d2013-12-28 23:31:44 +0000100 set(LLVM_HAVE_LINK_VERSION_SCRIPT 0)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000101 if(CYGWIN)
102 set(LLVM_ON_WIN32 0)
103 set(LLVM_ON_UNIX 1)
104 else(CYGWIN)
105 set(LLVM_ON_WIN32 1)
106 set(LLVM_ON_UNIX 0)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000107 endif(CYGWIN)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000108else(WIN32)
109 if(UNIX)
110 set(LLVM_ON_WIN32 0)
111 set(LLVM_ON_UNIX 1)
Chandler Carruth2aff7502016-07-19 22:46:39 +0000112 if(APPLE OR ${CMAKE_SYSTEM_NAME} MATCHES "AIX")
Nico Weberc27118d2013-12-28 23:31:44 +0000113 set(LLVM_HAVE_LINK_VERSION_SCRIPT 0)
Chandler Carruth2aff7502016-07-19 22:46:39 +0000114 else()
Nico Weberc27118d2013-12-28 23:31:44 +0000115 set(LLVM_HAVE_LINK_VERSION_SCRIPT 1)
Chandler Carruth2aff7502016-07-19 22:46:39 +0000116 endif()
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000117 else(UNIX)
118 MESSAGE(SEND_ERROR "Unable to determine platform")
119 endif(UNIX)
120endif(WIN32)
121
Alp Tokerc0b7bb52014-01-08 11:10:24 +0000122set(EXEEXT ${CMAKE_EXECUTABLE_SUFFIX})
123set(LTDL_SHLIB_EXT ${CMAKE_SHARED_LIBRARY_SUFFIX})
NAKAMURA Takumi92d65802014-02-13 11:19:00 +0000124
125# We use *.dylib rather than *.so on darwin.
126set(LLVM_PLUGIN_EXT ${CMAKE_SHARED_LIBRARY_SUFFIX})
Alp Tokerc0b7bb52014-01-08 11:10:24 +0000127
NAKAMURA Takumi58f6e742014-02-13 11:19:11 +0000128if(APPLE)
Petr Hoseke4521c32016-11-17 20:22:49 +0000129 if(LLVM_ENABLE_LLD AND LLVM_ENABLE_LTO)
130 message(FATAL_ERROR "lld does not support LTO on Darwin")
131 endif()
NAKAMURA Takumi58f6e742014-02-13 11:19:11 +0000132 # Darwin-specific linker flags for loadable modules.
133 set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,-flat_namespace -Wl,-undefined -Wl,suppress")
134endif()
135
Rafael Espindolabb5d09f2015-01-22 14:06:51 +0000136# Pass -Wl,-z,defs. This makes sure all symbols are defined. Otherwise a DSO
137# build might work on ELF but fail on MachO/COFF.
Yaron Keren5519ad32015-07-23 08:06:12 +0000138if(NOT (${CMAKE_SYSTEM_NAME} MATCHES "Darwin" OR WIN32 OR CYGWIN OR
Yaron Kerencf24bbb2015-11-21 06:33:54 +0000139 ${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD" OR
140 ${CMAKE_SYSTEM_NAME} MATCHES "OpenBSD") AND
Rafael Espindola19b53842015-01-22 20:57:30 +0000141 NOT LLVM_USE_SANITIZER)
Rafael Espindolabb5d09f2015-01-22 14:06:51 +0000142 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,-z,defs")
143endif()
144
145
Duncan Sands71de6dc2013-03-25 13:25:34 +0000146function(append value)
147 foreach(variable ${ARGN})
Alexey Samsonov67065782013-03-13 20:50:23 +0000148 set(${variable} "${${variable}} ${value}" PARENT_SCOPE)
Duncan Sands71de6dc2013-03-25 13:25:34 +0000149 endforeach(variable)
150endfunction()
151
152function(append_if condition value)
153 if (${condition})
154 foreach(variable ${ARGN})
155 set(${variable} "${${variable}} ${value}" PARENT_SCOPE)
156 endforeach(variable)
Alexey Samsonov67065782013-03-13 20:50:23 +0000157 endif()
158endfunction()
159
Alp Toker00683972014-07-09 03:38:19 +0000160macro(add_flag_if_supported flag name)
161 check_c_compiler_flag("-Werror ${flag}" "C_SUPPORTS_${name}")
162 append_if("C_SUPPORTS_${name}" "${flag}" CMAKE_C_FLAGS)
163 check_cxx_compiler_flag("-Werror ${flag}" "CXX_SUPPORTS_${name}")
164 append_if("CXX_SUPPORTS_${name}" "${flag}" CMAKE_CXX_FLAGS)
Alexey Samsonov75789a22013-03-26 07:49:46 +0000165endmacro()
166
Alp Toker00683972014-07-09 03:38:19 +0000167function(add_flag_or_print_warning flag name)
168 check_c_compiler_flag("-Werror ${flag}" "C_SUPPORTS_${name}")
169 check_cxx_compiler_flag("-Werror ${flag}" "CXX_SUPPORTS_${name}")
Richard Smithca9ae102014-09-26 21:35:48 +0000170 if (C_SUPPORTS_${name} AND CXX_SUPPORTS_${name})
Alp Toker00683972014-07-09 03:38:19 +0000171 message(STATUS "Building with ${flag}")
172 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${flag}" PARENT_SCOPE)
173 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${flag}" PARENT_SCOPE)
Douglas Katzman280ee912015-07-28 14:43:53 +0000174 set(CMAKE_ASM_FLAGS "${CMAKE_ASM_FLAGS} ${flag}" PARENT_SCOPE)
Alp Toker00683972014-07-09 03:38:19 +0000175 else()
176 message(WARNING "${flag} is not supported.")
177 endif()
178endfunction()
179
Mehdi Amini284ac3c92017-01-15 03:21:30 +0000180if( LLVM_ENABLE_LLD )
181 if ( LLVM_USE_LINKER )
182 message(FATAL_ERROR "LLVM_ENABLE_LLD and LLVM_USE_LINKER can't be set at the same time")
183 endif()
184 set(LLVM_USE_LINKER "lld")
185endif()
186
187if( LLVM_USE_LINKER )
188 check_cxx_compiler_flag("-fuse-ld=${LLVM_USE_LINKER}" CXX_SUPPORTS_CUSTOM_LINKER)
189 if ( NOT CXX_SUPPORTS_CUSTOM_LINKER )
190 message(FATAL_ERROR "Host compiler does not support '-fuse-ld=${LLVM_USE_LINKER}'")
191 endif()
192 append("-fuse-ld=${LLVM_USE_LINKER}"
Eugene Zelenkobbbf7b52016-07-29 00:46:13 +0000193 CMAKE_EXE_LINKER_FLAGS CMAKE_MODULE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS)
194endif()
195
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000196if( LLVM_ENABLE_PIC )
197 if( XCODE )
198 # Xcode has -mdynamic-no-pic on by default, which overrides -fPIC. I don't
199 # know how to disable this, so just force ENABLE_PIC off for now.
200 message(WARNING "-fPIC not supported with Xcode.")
NAKAMURA Takumi1b745d02011-12-16 06:21:08 +0000201 elseif( WIN32 OR CYGWIN)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000202 # On Windows all code is PIC. MinGW warns if -fPIC is used.
203 else()
Alp Toker00683972014-07-09 03:38:19 +0000204 add_flag_or_print_warning("-fPIC" FPIC)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000205 endif()
206endif()
207
Chris Bieneman6b43f1f2015-11-18 22:49:26 +0000208if(NOT WIN32 AND NOT CYGWIN)
209 # MinGW warns if -fvisibility-inlines-hidden is used.
210 check_cxx_compiler_flag("-fvisibility-inlines-hidden" SUPPORTS_FVISIBILITY_INLINES_HIDDEN_FLAG)
211 append_if(SUPPORTS_FVISIBILITY_INLINES_HIDDEN_FLAG "-fvisibility-inlines-hidden" CMAKE_CXX_FLAGS)
212endif()
213
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000214if( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
215 # TODO: support other platforms and toolchains.
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000216 if( LLVM_BUILD_32_BITS )
217 message(STATUS "Building 32 bits executables and libraries.")
NAKAMURA Takumi500b0a42016-06-06 05:54:55 +0000218 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -m32")
219 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -m32")
Tim Northoverf6e29c42012-05-23 18:42:02 +0000220 set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -m32")
221 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -m32")
Tobias Grosserb32ad402012-06-08 09:41:23 +0000222 set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -m32")
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000223 endif( LLVM_BUILD_32_BITS )
224endif( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
225
Ted Kremenek68af8452014-03-13 06:37:28 +0000226if( XCODE )
227 # For Xcode enable several build settings that correspond to
228 # many warnings that are on by default in Clang but are
229 # not enabled for historical reasons. For versions of Xcode
230 # that do not support these options they will simply
231 # be ignored.
232 set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_ABOUT_RETURN_TYPE "YES")
233 set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_ABOUT_MISSING_NEWLINE "YES")
234 set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_UNUSED_VALUE "YES")
235 set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_UNUSED_VARIABLE "YES")
236 set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_SIGN_COMPARE "YES")
237 set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_UNUSED_FUNCTION "YES")
238 set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED "YES")
239 set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_HIDDEN_VIRTUAL_FUNCTIONS "YES")
240 set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_UNINITIALIZED_AUTOS "YES")
241 set(CMAKE_XCODE_ATTRIBUTE_CLANG_WARN_BOOL_CONVERSION "YES")
242 set(CMAKE_XCODE_ATTRIBUTE_CLANG_WARN_EMPTY_BODY "YES")
243 set(CMAKE_XCODE_ATTRIBUTE_CLANG_WARN_ENUM_CONVERSION "YES")
244 set(CMAKE_XCODE_ATTRIBUTE_CLANG_WARN_INT_CONVERSION "YES")
245 set(CMAKE_XCODE_ATTRIBUTE_CLANG_WARN_CONSTANT_CONVERSION "YES")
246 set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_NON_VIRTUAL_DESTRUCTOR "YES")
247endif()
248
NAKAMURA Takumia83601d2012-04-21 14:50:56 +0000249# On Win32 using MS tools, provide an option to set the number of parallel jobs
250# to use.
NAKAMURA Takumi75bfe692012-04-21 14:51:02 +0000251if( MSVC_IDE )
Oscar Fuentes318c3f12011-03-02 17:47:37 +0000252 set(LLVM_COMPILER_JOBS "0" CACHE STRING
253 "Number of parallel compiler jobs. 0 means use all processors. Default is 0.")
254 if( NOT LLVM_COMPILER_JOBS STREQUAL "1" )
255 if( LLVM_COMPILER_JOBS STREQUAL "0" )
256 add_llvm_definitions( /MP )
257 else()
Yaron Kerene4855112014-03-25 09:34:20 +0000258 message(STATUS "Number of parallel compiler jobs set to " ${LLVM_COMPILER_JOBS})
259 add_llvm_definitions( /MP${LLVM_COMPILER_JOBS} )
Oscar Fuentes318c3f12011-03-02 17:47:37 +0000260 endif()
261 else()
262 message(STATUS "Parallel compilation disabled")
263 endif()
264endif()
265
NAKAMURA Takumi96a6c492016-08-31 22:43:23 +0000266# set stack reserved size to ~10MB
267if(MSVC)
268 # CMake previously automatically set this value for MSVC builds, but the
269 # behavior was changed in CMake 2.8.11 (Issue 12437) to use the MSVC default
270 # value (1 MB) which is not enough for us in tasks such as parsing recursive
271 # C++ templates in Clang.
272 set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /STACK:10000000")
273elseif(MINGW) # FIXME: Also cygwin?
274 set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,--stack,16777216")
Reid Klecknerc2b56632016-12-22 19:12:14 +0000275
276 # Pass -mbig-obj to mingw gas on Win64. COFF has a 2**16 section limit, and
277 # on Win64, every COMDAT function creates at least 3 sections: .text, .pdata,
278 # and .xdata.
279 if (CMAKE_SIZEOF_VOID_P EQUAL 8)
280 append("-Wa,-mbig-obj" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
281 endif()
NAKAMURA Takumi96a6c492016-08-31 22:43:23 +0000282endif()
283
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000284if( MSVC )
Yaron Keren528d8d62015-08-21 17:31:03 +0000285 if( CMAKE_CXX_COMPILER_VERSION VERSION_LESS 19.0 )
286 # For MSVC 2013, disable iterator null pointer checking in debug mode,
287 # especially so std::equal(nullptr, nullptr, nullptr) will not assert.
288 add_llvm_definitions("-D_DEBUG_POINTER_IMPL=")
289 endif()
290
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000291 include(ChooseMSVCCRT)
292
Yaron Kerene4855112014-03-25 09:34:20 +0000293 if( MSVC11 )
Michael J. Spencer35145f82012-03-01 22:42:52 +0000294 add_llvm_definitions(-D_VARIADIC_MAX=10)
295 endif()
Greg Bedwell580defb2015-03-11 14:57:48 +0000296
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000297 # Add definitions that make MSVC much less annoying.
298 add_llvm_definitions(
299 # For some reason MS wants to deprecate a bunch of standard functions...
300 -D_CRT_SECURE_NO_DEPRECATE
301 -D_CRT_SECURE_NO_WARNINGS
302 -D_CRT_NONSTDC_NO_DEPRECATE
303 -D_CRT_NONSTDC_NO_WARNINGS
304 -D_SCL_SECURE_NO_DEPRECATE
305 -D_SCL_SECURE_NO_WARNINGS
Greg Bedwell8aa30002015-03-19 16:32:47 +0000306 )
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000307
Aaron Ballman2cd2a182016-06-23 19:02:09 +0000308 # Tell MSVC to use the Unicode version of the Win32 APIs instead of ANSI.
309 add_llvm_definitions(
310 -DUNICODE
311 -D_UNICODE
312 )
313
Greg Bedwell8aa30002015-03-19 16:32:47 +0000314 set(msvc_warning_flags
Michael J. Spencer6d45d832012-06-07 21:34:15 +0000315 # Disabled warnings.
Aaron Ballmane11ce622015-09-10 12:53:40 +0000316 -wd4141 # Suppress ''modifier' : used more than once' (because of __forceinline combined with inline)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000317 -wd4146 # Suppress 'unary minus operator applied to unsigned type, result still unsigned'
318 -wd4180 # Suppress 'qualifier applied to function type has no meaning; ignored'
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000319 -wd4244 # Suppress ''argument' : conversion from 'type1' to 'type2', possible loss of data'
Aaron Ballmandabe7802014-08-18 14:54:22 +0000320 -wd4258 # Suppress ''var' : definition from the for loop is ignored; the definition from the enclosing scope is used'
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000321 -wd4267 # Suppress ''var' : conversion from 'size_t' to 'type', possible loss of data'
Yaron Keren24fdbe52014-03-25 08:42:49 +0000322 -wd4291 # Suppress ''declaration' : no matching operator delete found; memory will not be freed if initialization throws an exception'
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000323 -wd4345 # Suppress 'behavior change: an object of POD type constructed with an initializer of the form () will be default-initialized'
324 -wd4351 # Suppress 'new behavior: elements of array 'array' will be default initialized'
325 -wd4355 # Suppress ''this' : used in base member initializer list'
Reid Kleckner19cb1712014-10-31 22:55:57 +0000326 -wd4456 # Suppress 'declaration of 'var' hides local variable'
327 -wd4457 # Suppress 'declaration of 'var' hides function parameter'
328 -wd4458 # Suppress 'declaration of 'var' hides class member'
329 -wd4459 # Suppress 'declaration of 'var' hides global declaration'
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000330 -wd4503 # Suppress ''identifier' : decorated name length exceeded, name was truncated'
331 -wd4624 # Suppress ''derived class' : destructor could not be generated because a base class destructor is inaccessible'
Yaron Keren24fdbe52014-03-25 08:42:49 +0000332 -wd4722 # Suppress 'function' : destructor never returns, potential memory leak
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000333 -wd4800 # Suppress ''type' : forcing value to bool 'true' or 'false' (performance warning)'
Andrew Kaylor5c73e1f2015-03-24 23:37:10 +0000334 -wd4100 # Suppress 'unreferenced formal parameter'
335 -wd4127 # Suppress 'conditional expression is constant'
336 -wd4512 # Suppress 'assignment operator could not be generated'
337 -wd4505 # Suppress 'unreferenced local function has been removed'
338 -wd4610 # Suppress '<class> can never be instantiated'
339 -wd4510 # Suppress 'default constructor could not be generated'
340 -wd4702 # Suppress 'unreachable code'
341 -wd4245 # Suppress 'signed/unsigned mismatch'
342 -wd4706 # Suppress 'assignment within conditional expression'
343 -wd4310 # Suppress 'cast truncates constant value'
344 -wd4701 # Suppress 'potentially uninitialized local variable'
345 -wd4703 # Suppress 'potentially uninitialized local pointer variable'
346 -wd4389 # Suppress 'signed/unsigned mismatch'
347 -wd4611 # Suppress 'interaction between '_setjmp' and C++ object destruction is non-portable'
348 -wd4805 # Suppress 'unsafe mix of type <type> and type <type> in operation'
349 -wd4204 # Suppress 'nonstandard extension used : non-constant aggregate initializer'
Aaron Ballman0cba6422015-07-20 21:14:14 +0000350 -wd4577 # Suppress 'noexcept used with no exception handling mode specified; termination on exception is not guaranteed'
351 -wd4091 # Suppress 'typedef: ignored on left of '' when no variable is declared'
Aaron Ballman5cbf37f2015-12-07 15:44:34 +0000352 # C4592 is disabled because of false positives in Visual Studio 2015
353 # Update 1. Re-evaluate the usefulness of this diagnostic with Update 2.
354 -wd4592 # Suppress ''var': symbol will be dynamically initialized (implementation limitation)
Reid Klecknercf5414e2016-02-10 19:25:51 +0000355 -wd4319 # Suppress ''operator' : zero extending 'type' to 'type' of greater size'
Andrew Kaylor84e55fc2015-04-21 22:29:38 +0000356
Douglas Katzmanb5fb2d42015-06-24 21:46:53 +0000357 # Ideally, we'd like this warning to be enabled, but MSVC 2013 doesn't
Andrew Kaylor84e55fc2015-04-21 22:29:38 +0000358 # support the 'aligned' attribute in the way that clang sources requires (for
Douglas Katzmanb5fb2d42015-06-24 21:46:53 +0000359 # any code that uses the LLVM_ALIGNAS macro), so this is must be disabled to
Andrew Kaylor84e55fc2015-04-21 22:29:38 +0000360 # avoid unwanted alignment warnings.
361 # When we switch to requiring a version of MSVC that supports the 'alignas'
362 # specifier (MSVC 2015?) this warning can be re-enabled.
363 -wd4324 # Suppress 'structure was padded due to __declspec(align())'
Reid Klecknercf5414e2016-02-10 19:25:51 +0000364
Michael J. Spencer6d45d832012-06-07 21:34:15 +0000365 # Promoted warnings.
366 -w14062 # Promote 'enumerator in switch of enum is not handled' to level 1 warning.
Michael J. Spenceraeb59e12012-06-07 23:33:56 +0000367
368 # Promoted warnings to errors.
369 -we4238 # Promote 'nonstandard extension used : class rvalue used as lvalue' to error.
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000370 )
371
372 # Enable warnings
373 if (LLVM_ENABLE_WARNINGS)
Nico Weberd23b4002015-12-23 02:38:31 +0000374 # Put /W4 in front of all the -we flags. cl.exe doesn't care, but for
375 # clang-cl having /W4 after the -we flags will re-enable the warnings
376 # disabled by -we.
377 set(msvc_warning_flags "/W4 ${msvc_warning_flags}")
Zachary Turnerad84bc42015-04-14 16:57:54 +0000378 # CMake appends /W3 by default, and having /W3 followed by /W4 will result in
379 # cl : Command line warning D9025 : overriding '/W3' with '/W4'. Since this is
380 # a command line warning and not a compiler warning, it cannot be suppressed except
381 # by fixing the command line.
382 string(REGEX REPLACE " /W[0-4]" "" CMAKE_C_FLAGS "${CMAKE_C_FLAGS}")
383 string(REGEX REPLACE " /W[0-4]" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
384
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000385 if (LLVM_ENABLE_PEDANTIC)
386 # No MSVC equivalent available
387 endif (LLVM_ENABLE_PEDANTIC)
388 endif (LLVM_ENABLE_WARNINGS)
389 if (LLVM_ENABLE_WERROR)
Greg Bedwell8aa30002015-03-19 16:32:47 +0000390 append("/WX" msvc_warning_flags)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000391 endif (LLVM_ENABLE_WERROR)
Greg Bedwell8aa30002015-03-19 16:32:47 +0000392
393 foreach(flag ${msvc_warning_flags})
394 append("${flag}" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
395 endforeach(flag)
396
Rafael Espindolaf8465572015-08-12 17:09:25 +0000397 append("/Zc:inline" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
398
Aaron Ballmance625e82016-01-25 14:17:39 +0000399 # /Zc:strictStrings is incompatible with VS12's (Visual Studio 2013's)
400 # debug mode headers. Instead of only enabling them in VS2013's debug mode,
401 # we'll just enable them for Visual Studio 2015 (VS 14, MSVC_VERSION 1900)
402 # and up.
403 if (NOT (MSVC_VERSION LESS 1900))
404 # Disable string literal const->non-const type conversion.
405 # "When specified, the compiler requires strict const-qualification
406 # conformance for pointers initialized by using string literals."
407 append("/Zc:strictStrings" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
408 endif(NOT (MSVC_VERSION LESS 1900))
409
410 # "Generate Intrinsic Functions".
411 append("/Oi" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
412
413 # "Enforce type conversion rules".
414 append("/Zc:rvalueCast" CMAKE_CXX_FLAGS)
415
Bob Haarmanf947d8d2017-03-01 19:22:18 +0000416 if (CMAKE_CXX_COMPILER_ID MATCHES "Clang" AND NOT LLVM_ENABLE_LTO)
Nico Weber891419a2016-01-06 19:05:19 +0000417 # clang-cl and cl by default produce non-deterministic binaries because
418 # link.exe /incremental requires a timestamp in the .obj file. clang-cl
Chris Bieneman62de33c2016-05-05 19:57:03 +0000419 # has the flag /Brepro to force deterministic binaries. We want to pass that
Bob Haarmanf947d8d2017-03-01 19:22:18 +0000420 # whenever you're building with clang unless you're passing /incremental
421 # or using LTO (/Brepro with LTO would result in a warning about the flag
422 # being unused, because we're not generating object files).
Nico Weber891419a2016-01-06 19:05:19 +0000423 # This checks CMAKE_CXX_COMPILER_ID in addition to check_cxx_compiler_flag()
424 # because cl.exe does not emit an error on flags it doesn't understand,
425 # letting check_cxx_compiler_flag() claim it understands all flags.
426 check_cxx_compiler_flag("/Brepro" SUPPORTS_BREPRO)
Nico Weber891419a2016-01-06 19:05:19 +0000427 if (SUPPORTS_BREPRO)
428 # Check if /INCREMENTAL is passed to the linker and complain that it
429 # won't work with /Brepro.
430 string(TOUPPER "${CMAKE_EXE_LINKER_FLAGS}" upper_exe_flags)
431 string(TOUPPER "${CMAKE_MODULE_LINKER_FLAGS}" upper_module_flags)
432 string(TOUPPER "${CMAKE_SHARED_LINKER_FLAGS}" upper_shared_flags)
433
Chris Bieneman62de33c2016-05-05 19:57:03 +0000434 string(FIND "${upper_exe_flags} ${upper_module_flags} ${upper_shared_flags}"
435 "/INCREMENTAL" linker_flag_idx)
Nico Weber891419a2016-01-06 19:05:19 +0000436
Chris Bieneman62de33c2016-05-05 19:57:03 +0000437 if (${linker_flag_idx} GREATER -1)
438 message(WARNING "/Brepro not compatible with /INCREMENTAL linking - builds will be non-deterministic")
439 else()
440 append("/Brepro" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Nico Weber891419a2016-01-06 19:05:19 +0000441 endif()
442 endif()
443 endif()
444
Oscar Fuentesab84a7b2011-05-11 13:53:08 +0000445elseif( LLVM_COMPILER_IS_GCC_COMPATIBLE )
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000446 if (LLVM_ENABLE_WARNINGS)
David Blaikie74d88062015-10-01 00:44:21 +0000447 append("-Wall -W -Wno-unused-parameter -Wwrite-strings" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Roman Divacky2d64ef92014-11-13 19:45:27 +0000448 append("-Wcast-qual" CMAKE_CXX_FLAGS)
Edwin Vanec6410842013-01-31 18:05:54 +0000449
450 # Turn off missing field initializer warnings for gcc to avoid noise from
451 # false positives with empty {}. Turn them on otherwise (they're off by
452 # default for clang).
453 check_cxx_compiler_flag("-Wmissing-field-initializers" CXX_SUPPORTS_MISSING_FIELD_INITIALIZERS_FLAG)
454 if (CXX_SUPPORTS_MISSING_FIELD_INITIALIZERS_FLAG)
455 if (CMAKE_COMPILER_IS_GNUCXX)
Duncan Sands71de6dc2013-03-25 13:25:34 +0000456 append("-Wno-missing-field-initializers" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Edwin Vanec6410842013-01-31 18:05:54 +0000457 else()
Duncan Sands71de6dc2013-03-25 13:25:34 +0000458 append("-Wmissing-field-initializers" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Edwin Vanec6410842013-01-31 18:05:54 +0000459 endif()
460 endif()
461
Eric Fiselier2243d7b2015-10-13 23:51:58 +0000462 append_if(LLVM_ENABLE_PEDANTIC "-pedantic" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
463 append_if(LLVM_ENABLE_PEDANTIC "-Wno-long-long" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Alp Toker00683972014-07-09 03:38:19 +0000464 add_flag_if_supported("-Wcovered-switch-default" COVERED_SWITCH_DEFAULT_FLAG)
Duncan Sands71de6dc2013-03-25 13:25:34 +0000465 append_if(USE_NO_UNINITIALIZED "-Wno-uninitialized" CMAKE_CXX_FLAGS)
466 append_if(USE_NO_MAYBE_UNINITIALIZED "-Wno-maybe-uninitialized" CMAKE_CXX_FLAGS)
Dylan Noblesmith367cef62014-08-23 21:10:56 +0000467
468 # Check if -Wnon-virtual-dtor warns even though the class is marked final.
469 # If it does, don't add it. So it won't be added on clang 3.4 and older.
470 # This also catches cases when -Wnon-virtual-dtor isn't supported by
Andy Gibbs33a0eb72015-12-17 16:43:53 +0000471 # the compiler at all. This flag is not activated for gcc since it will
472 # incorrectly identify a protected non-virtual base when there is a friend
473 # declaration.
474 if (NOT CMAKE_COMPILER_IS_GNUCXX)
475 set(OLD_CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS})
476 set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} -std=c++11 -Werror=non-virtual-dtor")
477 CHECK_CXX_SOURCE_COMPILES("class base {public: virtual void anchor();protected: ~base();};
478 class derived final : public base { public: ~derived();};
479 int main() { return 0; }"
480 CXX_WONT_WARN_ON_FINAL_NONVIRTUALDTOR)
481 set(CMAKE_REQUIRED_FLAGS ${OLD_CMAKE_REQUIRED_FLAGS})
482 append_if(CXX_WONT_WARN_ON_FINAL_NONVIRTUALDTOR
483 "-Wnon-virtual-dtor" CMAKE_CXX_FLAGS)
484 endif()
485
486 # Enable -Wdelete-non-virtual-dtor if available.
487 add_flag_if_supported("-Wdelete-non-virtual-dtor" DELETE_NON_VIRTUAL_DTOR_FLAG)
Evgeniy Stepanov1b5fd3e2014-05-06 09:46:06 +0000488
489 # Check if -Wcomment is OK with an // comment ending with '\' if the next
490 # line is also a // comment.
491 set(OLD_CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS})
Dylan Noblesmith63f9b572014-08-23 21:10:58 +0000492 set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} -Werror -Wcomment")
Evgeniy Stepanov1b5fd3e2014-05-06 09:46:06 +0000493 CHECK_C_SOURCE_COMPILES("// \\\\\\n//\\nint main() {return 0;}"
494 C_WCOMMENT_ALLOWS_LINE_WRAP)
495 set(CMAKE_REQUIRED_FLAGS ${OLD_CMAKE_REQUIRED_FLAGS})
496 if (NOT C_WCOMMENT_ALLOWS_LINE_WRAP)
497 append("-Wno-comment" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
498 endif()
Chandler Carruthee086762016-12-23 01:38:06 +0000499
500 # Enable -Wstring-conversion to catch misuse of string literals.
501 add_flag_if_supported("-Wstring-conversion" STRING_CONVERSION_FLAG)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000502 endif (LLVM_ENABLE_WARNINGS)
Alexey Samsonovcd083fe2014-03-13 13:08:47 +0000503 append_if(LLVM_ENABLE_WERROR "-Werror" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Chris Bieneman62de33c2016-05-05 19:57:03 +0000504 add_flag_if_supported("-Werror=date-time" WERROR_DATE_TIME)
Chandler Carruth25eacf72014-03-01 03:16:07 +0000505 if (LLVM_ENABLE_CXX1Y)
506 check_cxx_compiler_flag("-std=c++1y" CXX_SUPPORTS_CXX1Y)
507 append_if(CXX_SUPPORTS_CXX1Y "-std=c++1y" CMAKE_CXX_FLAGS)
508 else()
Arnaud A. de Grandmaisonb697b532013-11-26 10:33:53 +0000509 check_cxx_compiler_flag("-std=c++11" CXX_SUPPORTS_CXX11)
Chandler Carruth25eacf72014-03-01 03:16:07 +0000510 if (CXX_SUPPORTS_CXX11)
Rafael Espindola8b350742014-03-12 20:01:15 +0000511 if (CYGWIN OR MINGW)
512 # MinGW and Cygwin are a bit stricter and lack things like
513 # 'strdup', 'stricmp', etc in c++11 mode.
514 append("-std=gnu++11" CMAKE_CXX_FLAGS)
515 else()
516 append("-std=c++11" CMAKE_CXX_FLAGS)
517 endif()
Chandler Carruth25eacf72014-03-01 03:16:07 +0000518 else()
519 message(FATAL_ERROR "LLVM requires C++11 support but the '-std=c++11' flag isn't supported.")
520 endif()
521 endif()
Richard Smithcdbecda2016-04-17 20:58:01 +0000522 if (LLVM_ENABLE_MODULES)
523 set(OLD_CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS})
Vassil Vassilev71e9e442016-09-29 08:14:06 +0000524 set(module_flags "-fmodules -fmodules-cache-path=${PROJECT_BINARY_DIR}/module.cache")
Adrian Prantl48e7cbd2016-06-30 01:46:49 +0000525 if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
526 # On Darwin -fmodules does not imply -fcxx-modules.
527 set(module_flags "${module_flags} -fcxx-modules")
528 endif()
529 if (LLVM_ENABLE_LOCAL_SUBMODULE_VISIBILITY)
Adrian Prantl8a75ee92016-06-30 15:58:36 +0000530 set(module_flags "${module_flags} -Xclang -fmodules-local-submodule-visibility")
Adrian Prantl48e7cbd2016-06-30 01:46:49 +0000531 endif()
Adrian Prantl9f4ef632016-06-30 17:15:44 +0000532 if (LLVM_ENABLE_MODULE_DEBUGGING AND
533 ((uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG") OR
534 (uppercase_CMAKE_BUILD_TYPE STREQUAL "RELWITHDEBINFO")))
535 set(module_flags "${module_flags} -gmodules")
536 endif()
Adrian Prantl48e7cbd2016-06-30 01:46:49 +0000537 set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} ${module_flags}")
538
Richard Smithcdbecda2016-04-17 20:58:01 +0000539 # Check that we can build code with modules enabled, and that repeatedly
540 # including <cassert> still manages to respect NDEBUG properly.
541 CHECK_CXX_SOURCE_COMPILES("#undef NDEBUG
542 #include <cassert>
543 #define NDEBUG
544 #include <cassert>
545 int main() { assert(this code is not compiled); }"
546 CXX_SUPPORTS_MODULES)
547 set(CMAKE_REQUIRED_FLAGS ${OLD_CMAKE_REQUIRED_FLAGS})
548 if (CXX_SUPPORTS_MODULES)
Adrian Prantl48e7cbd2016-06-30 01:46:49 +0000549 append("${module_flags}" CMAKE_CXX_FLAGS)
Richard Smithcdbecda2016-04-17 20:58:01 +0000550 else()
551 message(FATAL_ERROR "LLVM_ENABLE_MODULES is not supported by this compiler")
552 endif()
553 endif(LLVM_ENABLE_MODULES)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000554endif( MSVC )
555
Alexey Samsonov75789a22013-03-26 07:49:46 +0000556macro(append_common_sanitizer_flags)
Reid Klecknerd7a568f2015-08-14 16:48:34 +0000557 if (NOT MSVC)
558 # Append -fno-omit-frame-pointer and turn on debug info to get better
559 # stack traces.
560 add_flag_if_supported("-fno-omit-frame-pointer" FNO_OMIT_FRAME_POINTER)
561 if (NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG" AND
Reid Kleckner38b89382015-08-25 16:06:40 +0000562 NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "RELWITHDEBINFO")
Reid Klecknerd7a568f2015-08-14 16:48:34 +0000563 add_flag_if_supported("-gline-tables-only" GLINE_TABLES_ONLY)
564 endif()
565 # Use -O1 even in debug mode, otherwise sanitizers slowdown is too large.
566 if (uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG")
567 add_flag_if_supported("-O1" O1)
568 endif()
569 elseif (CLANG_CL)
570 # Keep frame pointers around.
571 append("/Oy-" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Bob Haarmanf947d8d2017-03-01 19:22:18 +0000572 if (LINKER_IS_LLD_LINK)
Reid Klecknerd7a568f2015-08-14 16:48:34 +0000573 # Use DWARF debug info with LLD.
574 append("-gdwarf" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
575 else()
576 # Enable codeview otherwise.
577 append("/Z7" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
578 endif()
579 # Always ask the linker to produce symbols with asan.
580 append("-debug" CMAKE_EXE_LINKER_FLAGS CMAKE_MODULE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS)
Alexey Samsonovf9ab3512013-09-02 09:15:01 +0000581 endif()
Alexey Samsonov75789a22013-03-26 07:49:46 +0000582endmacro()
583
584# Turn on sanitizers if necessary.
585if(LLVM_USE_SANITIZER)
586 if (LLVM_ON_UNIX)
587 if (LLVM_USE_SANITIZER STREQUAL "Address")
588 append_common_sanitizer_flags()
Alp Toker696b4a02014-07-09 06:27:05 +0000589 append("-fsanitize=address" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Alexey Samsonov75789a22013-03-26 07:49:46 +0000590 elseif (LLVM_USE_SANITIZER MATCHES "Memory(WithOrigins)?")
591 append_common_sanitizer_flags()
Alp Toker696b4a02014-07-09 06:27:05 +0000592 append("-fsanitize=memory" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Alexey Samsonov75789a22013-03-26 07:49:46 +0000593 if(LLVM_USE_SANITIZER STREQUAL "MemoryWithOrigins")
Alp Toker696b4a02014-07-09 06:27:05 +0000594 append("-fsanitize-memory-track-origins" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Alexey Samsonov75789a22013-03-26 07:49:46 +0000595 endif()
Alexey Samsonov4ee26752014-08-29 00:50:36 +0000596 elseif (LLVM_USE_SANITIZER STREQUAL "Undefined")
597 append_common_sanitizer_flags()
Justin Bogner8c8fb162015-05-14 04:52:57 +0000598 append("-fsanitize=undefined -fno-sanitize=vptr,function -fno-sanitize-recover=all"
Alexey Samsonov4ee26752014-08-29 00:50:36 +0000599 CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Eric Fiselierbd9a8252017-02-07 22:48:20 +0000600 set(BLACKLIST_FILE "${CMAKE_SOURCE_DIR}/utils/sanitizers/ubsan_blacklist.txt")
601 if (EXISTS "${BLACKLIST_FILE}")
602 append("-fsanitize-blacklist=${BLACKLIST_FILE}"
603 CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
604 endif()
Eric Fiselierbe6705d2014-11-18 21:23:38 +0000605 elseif (LLVM_USE_SANITIZER STREQUAL "Thread")
606 append_common_sanitizer_flags()
607 append("-fsanitize=thread" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Filipe Cabecinhasb36685e2015-02-04 22:33:31 +0000608 elseif (LLVM_USE_SANITIZER STREQUAL "Address;Undefined" OR
609 LLVM_USE_SANITIZER STREQUAL "Undefined;Address")
610 append_common_sanitizer_flags()
Justin Bogner8c8fb162015-05-14 04:52:57 +0000611 append("-fsanitize=address,undefined -fno-sanitize=vptr,function -fno-sanitize-recover=all"
Filipe Cabecinhasb36685e2015-02-04 22:33:31 +0000612 CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Alexey Samsonov75789a22013-03-26 07:49:46 +0000613 else()
Justin Bogner1ded6982015-09-01 05:45:07 +0000614 message(FATAL_ERROR "Unsupported value of LLVM_USE_SANITIZER: ${LLVM_USE_SANITIZER}")
Alexey Samsonov75789a22013-03-26 07:49:46 +0000615 endif()
Reid Klecknerd7a568f2015-08-14 16:48:34 +0000616 elseif(MSVC)
617 if (LLVM_USE_SANITIZER STREQUAL "Address")
618 append_common_sanitizer_flags()
619 append("-fsanitize=address" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
620 else()
Justin Bogner1ded6982015-09-01 05:45:07 +0000621 message(FATAL_ERROR "This sanitizer not yet supported in the MSVC environment: ${LLVM_USE_SANITIZER}")
Reid Klecknerd7a568f2015-08-14 16:48:34 +0000622 endif()
Alexey Samsonov75789a22013-03-26 07:49:46 +0000623 else()
Justin Bogner1ded6982015-09-01 05:45:07 +0000624 message(FATAL_ERROR "LLVM_USE_SANITIZER is not supported on this platform.")
Alexey Samsonov75789a22013-03-26 07:49:46 +0000625 endif()
Vitaly Buka729a0392017-01-17 21:04:23 +0000626 if (LLVM_USE_SANITIZER MATCHES "(Undefined;)?Address(;Undefined)?")
Justin Bogner2ceeb302017-01-18 19:01:58 +0000627 add_flag_if_supported("-fsanitize-address-use-after-scope"
628 FSANITIZE_USE_AFTER_SCOPE_FLAG)
Vitaly Buka729a0392017-01-17 21:04:23 +0000629 endif()
Kostya Serebryany869b8672015-01-27 17:59:28 +0000630 if (LLVM_USE_SANITIZE_COVERAGE)
Kostya Serebryany61be0f92016-12-10 02:26:23 +0000631 append("-fsanitize-coverage=trace-pc-guard,indirect-calls,trace-cmp" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Kostya Serebryany869b8672015-01-27 17:59:28 +0000632 endif()
Alexey Samsonov75789a22013-03-26 07:49:46 +0000633endif()
634
Eric Christopher39878062013-07-30 21:44:10 +0000635# Turn on -gsplit-dwarf if requested
636if(LLVM_USE_SPLIT_DWARF)
Peter Collingbournea7d17512014-10-22 19:49:19 +0000637 add_definitions("-gsplit-dwarf")
Eric Christopher39878062013-07-30 21:44:10 +0000638endif()
639
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000640add_llvm_definitions( -D__STDC_CONSTANT_MACROS )
NAKAMURA Takumic5554c92011-10-11 12:51:44 +0000641add_llvm_definitions( -D__STDC_FORMAT_MACROS )
NAKAMURA Takumie63cd192011-10-11 12:51:36 +0000642add_llvm_definitions( -D__STDC_LIMIT_MACROS )
Arnaud A. de Grandmaison916f3cc2013-05-29 20:41:35 +0000643
644# clang doesn't print colored diagnostics when invoked from Ninja
Rafael Espindola6f2564c2013-06-14 19:41:05 +0000645if (UNIX AND
Justin Bogner13440b92016-06-01 23:29:26 +0000646 CMAKE_CXX_COMPILER_ID MATCHES "Clang" AND
Rafael Espindola6f2564c2013-06-14 19:41:05 +0000647 CMAKE_GENERATOR STREQUAL "Ninja")
648 append("-fcolor-diagnostics" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Arnaud A. de Grandmaison916f3cc2013-05-29 20:41:35 +0000649endif()
NAKAMURA Takumibb50bce2014-01-28 09:43:55 +0000650
Rui Ueyamad6a005a2017-01-11 22:55:35 +0000651# lld doesn't print colored diagnostics when invoked from Ninja
652if (UNIX AND CMAKE_GENERATOR STREQUAL "Ninja")
653 include(CheckLinkerFlag)
654 check_linker_flag("-Wl,-color-diagnostics" LINKER_SUPPORTS_COLOR_DIAGNOSTICS)
655 append_if(LINKER_SUPPORTS_COLOR_DIAGNOSTICS "-Wl,-color-diagnostics"
656 CMAKE_EXE_LINKER_FLAGS CMAKE_MODULE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS)
657endif()
658
NAKAMURA Takumibb50bce2014-01-28 09:43:55 +0000659# Add flags for add_dead_strip().
660# FIXME: With MSVS, consider compiling with /Gy and linking with /OPT:REF?
661# But MinSizeRel seems to add that automatically, so maybe disable these
662# flags instead if LLVM_NO_DEAD_STRIP is set.
663if(NOT CYGWIN AND NOT WIN32)
Rafael Espindola9c5701f2015-04-06 14:34:43 +0000664 if(NOT ${CMAKE_SYSTEM_NAME} MATCHES "Darwin" AND
665 NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG")
Alexey Samsonov482beff2014-02-04 08:15:46 +0000666 check_c_compiler_flag("-Werror -fno-function-sections" C_SUPPORTS_FNO_FUNCTION_SECTIONS)
667 if (C_SUPPORTS_FNO_FUNCTION_SECTIONS)
668 # Don't add -ffunction-section if it can be disabled with -fno-function-sections.
669 # Doing so will break sanitizers.
Alp Toker00683972014-07-09 03:38:19 +0000670 add_flag_if_supported("-ffunction-sections" FFUNCTION_SECTIONS)
Evgeniy Stepanovc7b7e252014-02-03 13:57:09 +0000671 endif()
Alp Toker00683972014-07-09 03:38:19 +0000672 add_flag_if_supported("-fdata-sections" FDATA_SECTIONS)
NAKAMURA Takumibb50bce2014-01-28 09:43:55 +0000673 endif()
674endif()
NAKAMURA Takumia679f432014-01-28 09:44:06 +0000675
676if(MSVC)
677 # Remove flags here, for exceptions and RTTI.
NAKAMURA Takumiac624642014-01-31 17:32:36 +0000678 # Each target property or source property should be responsible to control
679 # them.
NAKAMURA Takumia679f432014-01-28 09:44:06 +0000680 # CL.EXE complains to override flags like "/GR /GR-".
681 string(REGEX REPLACE "(^| ) */EH[-cs]+ *( |$)" "\\1 \\2" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
682 string(REGEX REPLACE "(^| ) */GR-? *( |$)" "\\1 \\2" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
683endif()
NAKAMURA Takumi8d7a1732014-07-04 04:45:40 +0000684
Dan Liewa5bdc842014-07-22 15:41:18 +0000685# Provide public options to globally control RTTI and EH
686option(LLVM_ENABLE_EH "Enable Exception handling" OFF)
687option(LLVM_ENABLE_RTTI "Enable run time type information" OFF)
688if(LLVM_ENABLE_EH AND NOT LLVM_ENABLE_RTTI)
689 message(FATAL_ERROR "Exception handling requires RTTI. You must set LLVM_ENABLE_RTTI to ON")
690endif()
691
Chris Bienemandbdec572015-12-10 21:19:07 +0000692option(LLVM_BUILD_INSTRUMENTED "Build LLVM and tools with PGO instrumentation (experimental)" Off)
693mark_as_advanced(LLVM_BUILD_INSTRUMENTED)
Vedant Kumard9aed822016-06-13 23:33:48 +0000694append_if(LLVM_BUILD_INSTRUMENTED "-fprofile-instr-generate='${LLVM_PROFILE_FILE_PATTERN}'"
695 CMAKE_CXX_FLAGS
696 CMAKE_C_FLAGS
697 CMAKE_EXE_LINKER_FLAGS
698 CMAKE_SHARED_LINKER_FLAGS)
699
700option(LLVM_BUILD_INSTRUMENTED_COVERAGE "Build LLVM and tools with Code Coverage instrumentation (experimental)" Off)
701mark_as_advanced(LLVM_BUILD_INSTRUMENTED_COVERAGE)
702append_if(LLVM_BUILD_INSTRUMENTED_COVERAGE "-fprofile-instr-generate='${LLVM_PROFILE_FILE_PATTERN}' -fcoverage-mapping"
Chris Bienemandbdec572015-12-10 21:19:07 +0000703 CMAKE_CXX_FLAGS
704 CMAKE_C_FLAGS
705 CMAKE_EXE_LINKER_FLAGS
706 CMAKE_SHARED_LINKER_FLAGS)
707
Justin Bogner740f2ca2016-02-08 21:55:19 +0000708set(LLVM_ENABLE_LTO OFF CACHE STRING "Build LLVM with LTO. May be specified as Thin or Full to use a particular kind of LTO")
Justin Bogner9fd20392016-02-08 21:01:24 +0000709string(TOUPPER "${LLVM_ENABLE_LTO}" uppercase_LLVM_ENABLE_LTO)
Bob Haarmanf947d8d2017-03-01 19:22:18 +0000710if(LLVM_ENABLE_LTO AND LLVM_ON_WIN32 AND NOT LINKER_IS_LLD_LINK)
711 message(FATAL_ERROR "When compiling for Windows, LLVM_ENABLE_LTO requires using lld as the linker (point CMAKE_LINKER at lld-link.exe)")
712endif()
Justin Bogner9fd20392016-02-08 21:01:24 +0000713if(uppercase_LLVM_ENABLE_LTO STREQUAL "THIN")
Bob Haarmanf947d8d2017-03-01 19:22:18 +0000714 append("-flto=thin" CMAKE_CXX_FLAGS CMAKE_C_FLAGS)
715 if(NOT LINKER_IS_LLD_LINK)
716 append("-flto=thin" CMAKE_EXE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS)
717 endif()
Peter Collingbourne11c03c32017-03-15 16:28:43 +0000718 # If the linker supports it, enable the lto cache. This improves initial build
719 # time a little since we re-link a lot of the same objects, and significantly
720 # improves incremental build time.
721 # FIXME: We should move all this logic into the clang driver.
722 if(APPLE)
723 append("-Wl,-cache_path_lto,${PROJECT_BINARY_DIR}/lto.cache"
724 CMAKE_EXE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS)
725 elseif(UNIX AND LLVM_USE_LINKER STREQUAL "lld")
726 append("-Wl,--thinlto-cache-dir=${PROJECT_BINARY_DIR}/lto.cache"
727 CMAKE_EXE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS)
728 elseif(LLVM_USE_LINKER STREQUAL "gold")
729 append("-Wl,--plugin-opt,cache-dir=${PROJECT_BINARY_DIR}/lto.cache"
730 CMAKE_EXE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS)
731 endif()
Justin Bogner9fd20392016-02-08 21:01:24 +0000732elseif(uppercase_LLVM_ENABLE_LTO STREQUAL "FULL")
Bob Haarmanf947d8d2017-03-01 19:22:18 +0000733 append("-flto=full" CMAKE_CXX_FLAGS CMAKE_C_FLAGS)
734 if(NOT LINKER_IS_LLD_LINK)
735 append("-flto=full" CMAKE_EXE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS)
736 endif()
Justin Bogner9fd20392016-02-08 21:01:24 +0000737elseif(LLVM_ENABLE_LTO)
Bob Haarmanf947d8d2017-03-01 19:22:18 +0000738 append("-flto" CMAKE_CXX_FLAGS CMAKE_C_FLAGS)
739 if(NOT LINKER_IS_LLD_LINK)
740 append("-flto" CMAKE_EXE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS)
741 endif()
Justin Bogner9fd20392016-02-08 21:01:24 +0000742endif()
Justin Bognere12385b2016-02-04 07:28:30 +0000743
John Brawn3546c2f2016-05-26 11:16:43 +0000744# This option makes utils/extract_symbols.py be used to determine the list of
745# symbols to export from LLVM tools. This is necessary when using MSVC if you
746# want to allow plugins, though note that the plugin has to explicitly link
747# against (exactly one) tool so we can't unilaterally turn on
748# LLVM_ENABLE_PLUGINS when it's enabled.
749option(LLVM_EXPORT_SYMBOLS_FOR_PLUGINS "Export symbols from LLVM tools so that plugins can import them" OFF)
750if(BUILD_SHARED_LIBS AND LLVM_EXPORT_SYMBOLS_FOR_PLUGINS)
751 message(FATAL_ERROR "BUILD_SHARED_LIBS not compatible with LLVM_EXPORT_SYMBOLS_FOR_PLUGINS")
752endif()
753if(LLVM_LINK_LLVM_DYLIB AND LLVM_EXPORT_SYMBOLS_FOR_PLUGINS)
754 message(FATAL_ERROR "LLVM_LINK_LLVM_DYLIB not compatible with LLVM_EXPORT_SYMBOLS_FOR_PLUGINS")
755endif()
756
NAKAMURA Takumi8d7a1732014-07-04 04:45:40 +0000757# Plugin support
758# FIXME: Make this configurable.
Reid Klecknerb7a13822016-02-10 01:06:37 +0000759if(WIN32 OR CYGWIN)
NAKAMURA Takumib5bb1e22014-07-13 13:47:37 +0000760 if(BUILD_SHARED_LIBS)
761 set(LLVM_ENABLE_PLUGINS ON)
762 else()
763 set(LLVM_ENABLE_PLUGINS OFF)
764 endif()
NAKAMURA Takumi8d7a1732014-07-04 04:45:40 +0000765else()
766 set(LLVM_ENABLE_PLUGINS ON)
767endif()