blob: 133e8ef3d8a16ef186a8e116c83ab4a2b3bb6c5a [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
Chandler Carruth83885972014-01-13 22:21:34 +000015
Reid Kleckner841e5a02016-01-22 23:27:13 +000016if (CMAKE_LINKER MATCHES "lld-link.exe")
17 # Pass /MANIFEST:NO so that CMake doesn't run mt.exe on our binaries. Adding
18 # manifests with mt.exe breaks LLD's symbol tables and takes as much time as
19 # the link. See PR24476.
20 append("/MANIFEST:NO"
21 CMAKE_EXE_LINKER_FLAGS CMAKE_MODULE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS)
22endif()
23
Oscar Fuentesf4202ba2011-02-03 20:57:36 +000024if( LLVM_ENABLE_ASSERTIONS )
25 # MSVC doesn't like _DEBUG on release builds. See PR 4379.
26 if( NOT MSVC )
27 add_definitions( -D_DEBUG )
28 endif()
Duncan Sands80f122f2013-07-17 09:34:51 +000029 # On non-Debug builds cmake automatically defines NDEBUG, so we
Oscar Fuentesf4202ba2011-02-03 20:57:36 +000030 # explicitly undefine it:
Duncan Sands80f122f2013-07-17 09:34:51 +000031 if( NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG" )
Oscar Fuentesf4202ba2011-02-03 20:57:36 +000032 add_definitions( -UNDEBUG )
Reid Klecknerc1c01d52013-04-07 01:45:01 +000033 # Also remove /D NDEBUG to avoid MSVC warnings about conflicting defines.
Reid Kleckner472e6b42014-05-19 21:13:41 +000034 foreach (flags_var_to_scrub
35 CMAKE_CXX_FLAGS_RELEASE
36 CMAKE_CXX_FLAGS_RELWITHDEBINFO
37 CMAKE_CXX_FLAGS_MINSIZEREL
38 CMAKE_C_FLAGS_RELEASE
39 CMAKE_C_FLAGS_RELWITHDEBINFO
40 CMAKE_C_FLAGS_MINSIZEREL)
41 string (REGEX REPLACE "(^| )[/-]D *NDEBUG($| )" " "
42 "${flags_var_to_scrub}" "${${flags_var_to_scrub}}")
43 endforeach()
Oscar Fuentesf4202ba2011-02-03 20:57:36 +000044 endif()
Oscar Fuentesf4202ba2011-02-03 20:57:36 +000045endif()
46
Filipe Cabecinhas0da99372016-04-29 15:22:48 +000047if(LLVM_ENABLE_EXPENSIVE_CHECKS)
48 add_definitions(-DEXPENSIVE_CHECKS)
49 add_definitions(-D_GLIBCXX_DEBUG)
50endif()
51
Sanjoy Das8ce64992015-03-26 19:25:01 +000052string(TOUPPER "${LLVM_ABI_BREAKING_CHECKS}" uppercase_LLVM_ABI_BREAKING_CHECKS)
53
54if( uppercase_LLVM_ABI_BREAKING_CHECKS STREQUAL "WITH_ASSERTS" )
55 if( LLVM_ENABLE_ASSERTIONS )
56 set( LLVM_ENABLE_ABI_BREAKING_CHECKS 1 )
57 endif()
58elseif( uppercase_LLVM_ABI_BREAKING_CHECKS STREQUAL "FORCE_ON" )
59 set( LLVM_ENABLE_ABI_BREAKING_CHECKS 1 )
60elseif( uppercase_LLVM_ABI_BREAKING_CHECKS STREQUAL "FORCE_OFF" )
61 # We don't need to do anything special to turn off ABI breaking checks.
Eric Fiselier8e2f0a82015-05-12 22:49:18 +000062elseif( NOT DEFINED LLVM_ABI_BREAKING_CHECKS )
63 # Treat LLVM_ABI_BREAKING_CHECKS like "FORCE_OFF" when it has not been
64 # defined.
Sanjoy Das8ce64992015-03-26 19:25:01 +000065else()
66 message(FATAL_ERROR "Unknown value for LLVM_ABI_BREAKING_CHECKS: \"${LLVM_ABI_BREAKING_CHECKS}\"!")
67endif()
68
Oscar Fuentesf4202ba2011-02-03 20:57:36 +000069if(WIN32)
Nico Weberc27118d2013-12-28 23:31:44 +000070 set(LLVM_HAVE_LINK_VERSION_SCRIPT 0)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +000071 if(CYGWIN)
72 set(LLVM_ON_WIN32 0)
73 set(LLVM_ON_UNIX 1)
74 else(CYGWIN)
75 set(LLVM_ON_WIN32 1)
76 set(LLVM_ON_UNIX 0)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +000077 endif(CYGWIN)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +000078else(WIN32)
79 if(UNIX)
80 set(LLVM_ON_WIN32 0)
81 set(LLVM_ON_UNIX 1)
Chandler Carruth2aff7502016-07-19 22:46:39 +000082 if(APPLE OR ${CMAKE_SYSTEM_NAME} MATCHES "AIX")
Nico Weberc27118d2013-12-28 23:31:44 +000083 set(LLVM_HAVE_LINK_VERSION_SCRIPT 0)
Chandler Carruth2aff7502016-07-19 22:46:39 +000084 else()
Nico Weberc27118d2013-12-28 23:31:44 +000085 set(LLVM_HAVE_LINK_VERSION_SCRIPT 1)
Chandler Carruth2aff7502016-07-19 22:46:39 +000086 endif()
Oscar Fuentesf4202ba2011-02-03 20:57:36 +000087 else(UNIX)
88 MESSAGE(SEND_ERROR "Unable to determine platform")
89 endif(UNIX)
90endif(WIN32)
91
Alp Tokerc0b7bb52014-01-08 11:10:24 +000092set(EXEEXT ${CMAKE_EXECUTABLE_SUFFIX})
93set(LTDL_SHLIB_EXT ${CMAKE_SHARED_LIBRARY_SUFFIX})
NAKAMURA Takumi92d65802014-02-13 11:19:00 +000094
95# We use *.dylib rather than *.so on darwin.
96set(LLVM_PLUGIN_EXT ${CMAKE_SHARED_LIBRARY_SUFFIX})
Alp Tokerc0b7bb52014-01-08 11:10:24 +000097
NAKAMURA Takumi58f6e742014-02-13 11:19:11 +000098if(APPLE)
Petr Hoseke4521c32016-11-17 20:22:49 +000099 if(LLVM_ENABLE_LLD AND LLVM_ENABLE_LTO)
100 message(FATAL_ERROR "lld does not support LTO on Darwin")
101 endif()
NAKAMURA Takumi58f6e742014-02-13 11:19:11 +0000102 # Darwin-specific linker flags for loadable modules.
103 set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,-flat_namespace -Wl,-undefined -Wl,suppress")
104endif()
105
Rafael Espindolabb5d09f2015-01-22 14:06:51 +0000106# Pass -Wl,-z,defs. This makes sure all symbols are defined. Otherwise a DSO
107# build might work on ELF but fail on MachO/COFF.
Yaron Keren5519ad32015-07-23 08:06:12 +0000108if(NOT (${CMAKE_SYSTEM_NAME} MATCHES "Darwin" OR WIN32 OR CYGWIN OR
Yaron Kerencf24bbb2015-11-21 06:33:54 +0000109 ${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD" OR
110 ${CMAKE_SYSTEM_NAME} MATCHES "OpenBSD") AND
Rafael Espindola19b53842015-01-22 20:57:30 +0000111 NOT LLVM_USE_SANITIZER)
Rafael Espindolabb5d09f2015-01-22 14:06:51 +0000112 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,-z,defs")
113endif()
114
115
Duncan Sands71de6dc2013-03-25 13:25:34 +0000116function(append value)
117 foreach(variable ${ARGN})
Alexey Samsonov67065782013-03-13 20:50:23 +0000118 set(${variable} "${${variable}} ${value}" PARENT_SCOPE)
Duncan Sands71de6dc2013-03-25 13:25:34 +0000119 endforeach(variable)
120endfunction()
121
122function(append_if condition value)
123 if (${condition})
124 foreach(variable ${ARGN})
125 set(${variable} "${${variable}} ${value}" PARENT_SCOPE)
126 endforeach(variable)
Alexey Samsonov67065782013-03-13 20:50:23 +0000127 endif()
128endfunction()
129
Alp Toker00683972014-07-09 03:38:19 +0000130macro(add_flag_if_supported flag name)
131 check_c_compiler_flag("-Werror ${flag}" "C_SUPPORTS_${name}")
132 append_if("C_SUPPORTS_${name}" "${flag}" CMAKE_C_FLAGS)
133 check_cxx_compiler_flag("-Werror ${flag}" "CXX_SUPPORTS_${name}")
134 append_if("CXX_SUPPORTS_${name}" "${flag}" CMAKE_CXX_FLAGS)
Alexey Samsonov75789a22013-03-26 07:49:46 +0000135endmacro()
136
Alp Toker00683972014-07-09 03:38:19 +0000137function(add_flag_or_print_warning flag name)
138 check_c_compiler_flag("-Werror ${flag}" "C_SUPPORTS_${name}")
139 check_cxx_compiler_flag("-Werror ${flag}" "CXX_SUPPORTS_${name}")
Richard Smithca9ae102014-09-26 21:35:48 +0000140 if (C_SUPPORTS_${name} AND CXX_SUPPORTS_${name})
Alp Toker00683972014-07-09 03:38:19 +0000141 message(STATUS "Building with ${flag}")
142 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${flag}" PARENT_SCOPE)
143 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${flag}" PARENT_SCOPE)
Douglas Katzman280ee912015-07-28 14:43:53 +0000144 set(CMAKE_ASM_FLAGS "${CMAKE_ASM_FLAGS} ${flag}" PARENT_SCOPE)
Alp Toker00683972014-07-09 03:38:19 +0000145 else()
146 message(WARNING "${flag} is not supported.")
147 endif()
148endfunction()
149
Eugene Zelenkobbbf7b52016-07-29 00:46:13 +0000150if(LLVM_ENABLE_LLD)
151 check_cxx_compiler_flag("-fuse-ld=lld" CXX_SUPPORTS_LLD)
152 append_if(CXX_SUPPORTS_LLD "-fuse-ld=lld"
153 CMAKE_EXE_LINKER_FLAGS CMAKE_MODULE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS)
154endif()
155
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000156if( LLVM_ENABLE_PIC )
157 if( XCODE )
158 # Xcode has -mdynamic-no-pic on by default, which overrides -fPIC. I don't
159 # know how to disable this, so just force ENABLE_PIC off for now.
160 message(WARNING "-fPIC not supported with Xcode.")
NAKAMURA Takumi1b745d02011-12-16 06:21:08 +0000161 elseif( WIN32 OR CYGWIN)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000162 # On Windows all code is PIC. MinGW warns if -fPIC is used.
163 else()
Alp Toker00683972014-07-09 03:38:19 +0000164 add_flag_or_print_warning("-fPIC" FPIC)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000165 endif()
166endif()
167
Chris Bieneman6b43f1f2015-11-18 22:49:26 +0000168if(NOT WIN32 AND NOT CYGWIN)
169 # MinGW warns if -fvisibility-inlines-hidden is used.
170 check_cxx_compiler_flag("-fvisibility-inlines-hidden" SUPPORTS_FVISIBILITY_INLINES_HIDDEN_FLAG)
171 append_if(SUPPORTS_FVISIBILITY_INLINES_HIDDEN_FLAG "-fvisibility-inlines-hidden" CMAKE_CXX_FLAGS)
172endif()
173
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000174if( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
175 # TODO: support other platforms and toolchains.
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000176 if( LLVM_BUILD_32_BITS )
177 message(STATUS "Building 32 bits executables and libraries.")
NAKAMURA Takumi500b0a42016-06-06 05:54:55 +0000178 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -m32")
179 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -m32")
Tim Northoverf6e29c42012-05-23 18:42:02 +0000180 set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -m32")
181 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -m32")
Tobias Grosserb32ad402012-06-08 09:41:23 +0000182 set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -m32")
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000183 endif( LLVM_BUILD_32_BITS )
184endif( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
185
Ted Kremenek68af8452014-03-13 06:37:28 +0000186if( XCODE )
187 # For Xcode enable several build settings that correspond to
188 # many warnings that are on by default in Clang but are
189 # not enabled for historical reasons. For versions of Xcode
190 # that do not support these options they will simply
191 # be ignored.
192 set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_ABOUT_RETURN_TYPE "YES")
193 set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_ABOUT_MISSING_NEWLINE "YES")
194 set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_UNUSED_VALUE "YES")
195 set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_UNUSED_VARIABLE "YES")
196 set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_SIGN_COMPARE "YES")
197 set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_UNUSED_FUNCTION "YES")
198 set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED "YES")
199 set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_HIDDEN_VIRTUAL_FUNCTIONS "YES")
200 set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_UNINITIALIZED_AUTOS "YES")
201 set(CMAKE_XCODE_ATTRIBUTE_CLANG_WARN_BOOL_CONVERSION "YES")
202 set(CMAKE_XCODE_ATTRIBUTE_CLANG_WARN_EMPTY_BODY "YES")
203 set(CMAKE_XCODE_ATTRIBUTE_CLANG_WARN_ENUM_CONVERSION "YES")
204 set(CMAKE_XCODE_ATTRIBUTE_CLANG_WARN_INT_CONVERSION "YES")
205 set(CMAKE_XCODE_ATTRIBUTE_CLANG_WARN_CONSTANT_CONVERSION "YES")
206 set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_NON_VIRTUAL_DESTRUCTOR "YES")
207endif()
208
NAKAMURA Takumia83601d2012-04-21 14:50:56 +0000209# On Win32 using MS tools, provide an option to set the number of parallel jobs
210# to use.
NAKAMURA Takumi75bfe692012-04-21 14:51:02 +0000211if( MSVC_IDE )
Oscar Fuentes318c3f12011-03-02 17:47:37 +0000212 set(LLVM_COMPILER_JOBS "0" CACHE STRING
213 "Number of parallel compiler jobs. 0 means use all processors. Default is 0.")
214 if( NOT LLVM_COMPILER_JOBS STREQUAL "1" )
215 if( LLVM_COMPILER_JOBS STREQUAL "0" )
216 add_llvm_definitions( /MP )
217 else()
Yaron Kerene4855112014-03-25 09:34:20 +0000218 message(STATUS "Number of parallel compiler jobs set to " ${LLVM_COMPILER_JOBS})
219 add_llvm_definitions( /MP${LLVM_COMPILER_JOBS} )
Oscar Fuentes318c3f12011-03-02 17:47:37 +0000220 endif()
221 else()
222 message(STATUS "Parallel compilation disabled")
223 endif()
224endif()
225
NAKAMURA Takumi96a6c492016-08-31 22:43:23 +0000226# set stack reserved size to ~10MB
227if(MSVC)
228 # CMake previously automatically set this value for MSVC builds, but the
229 # behavior was changed in CMake 2.8.11 (Issue 12437) to use the MSVC default
230 # value (1 MB) which is not enough for us in tasks such as parsing recursive
231 # C++ templates in Clang.
232 set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /STACK:10000000")
233elseif(MINGW) # FIXME: Also cygwin?
234 set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,--stack,16777216")
Reid Klecknerc2b56632016-12-22 19:12:14 +0000235
236 # Pass -mbig-obj to mingw gas on Win64. COFF has a 2**16 section limit, and
237 # on Win64, every COMDAT function creates at least 3 sections: .text, .pdata,
238 # and .xdata.
239 if (CMAKE_SIZEOF_VOID_P EQUAL 8)
240 append("-Wa,-mbig-obj" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
241 endif()
NAKAMURA Takumi96a6c492016-08-31 22:43:23 +0000242endif()
243
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000244if( MSVC )
Yaron Keren528d8d62015-08-21 17:31:03 +0000245 if( CMAKE_CXX_COMPILER_VERSION VERSION_LESS 19.0 )
246 # For MSVC 2013, disable iterator null pointer checking in debug mode,
247 # especially so std::equal(nullptr, nullptr, nullptr) will not assert.
248 add_llvm_definitions("-D_DEBUG_POINTER_IMPL=")
249 endif()
250
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000251 include(ChooseMSVCCRT)
252
Yaron Kerene4855112014-03-25 09:34:20 +0000253 if( MSVC11 )
Michael J. Spencer35145f82012-03-01 22:42:52 +0000254 add_llvm_definitions(-D_VARIADIC_MAX=10)
255 endif()
Greg Bedwell580defb2015-03-11 14:57:48 +0000256
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000257 # Add definitions that make MSVC much less annoying.
258 add_llvm_definitions(
259 # For some reason MS wants to deprecate a bunch of standard functions...
260 -D_CRT_SECURE_NO_DEPRECATE
261 -D_CRT_SECURE_NO_WARNINGS
262 -D_CRT_NONSTDC_NO_DEPRECATE
263 -D_CRT_NONSTDC_NO_WARNINGS
264 -D_SCL_SECURE_NO_DEPRECATE
265 -D_SCL_SECURE_NO_WARNINGS
Greg Bedwell8aa30002015-03-19 16:32:47 +0000266 )
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000267
Aaron Ballman2cd2a182016-06-23 19:02:09 +0000268 # Tell MSVC to use the Unicode version of the Win32 APIs instead of ANSI.
269 add_llvm_definitions(
270 -DUNICODE
271 -D_UNICODE
272 )
273
Greg Bedwell8aa30002015-03-19 16:32:47 +0000274 set(msvc_warning_flags
Michael J. Spencer6d45d832012-06-07 21:34:15 +0000275 # Disabled warnings.
Aaron Ballmane11ce622015-09-10 12:53:40 +0000276 -wd4141 # Suppress ''modifier' : used more than once' (because of __forceinline combined with inline)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000277 -wd4146 # Suppress 'unary minus operator applied to unsigned type, result still unsigned'
278 -wd4180 # Suppress 'qualifier applied to function type has no meaning; ignored'
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000279 -wd4244 # Suppress ''argument' : conversion from 'type1' to 'type2', possible loss of data'
Aaron Ballmandabe7802014-08-18 14:54:22 +0000280 -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 +0000281 -wd4267 # Suppress ''var' : conversion from 'size_t' to 'type', possible loss of data'
Yaron Keren24fdbe52014-03-25 08:42:49 +0000282 -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 +0000283 -wd4345 # Suppress 'behavior change: an object of POD type constructed with an initializer of the form () will be default-initialized'
284 -wd4351 # Suppress 'new behavior: elements of array 'array' will be default initialized'
285 -wd4355 # Suppress ''this' : used in base member initializer list'
Reid Kleckner19cb1712014-10-31 22:55:57 +0000286 -wd4456 # Suppress 'declaration of 'var' hides local variable'
287 -wd4457 # Suppress 'declaration of 'var' hides function parameter'
288 -wd4458 # Suppress 'declaration of 'var' hides class member'
289 -wd4459 # Suppress 'declaration of 'var' hides global declaration'
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000290 -wd4503 # Suppress ''identifier' : decorated name length exceeded, name was truncated'
291 -wd4624 # Suppress ''derived class' : destructor could not be generated because a base class destructor is inaccessible'
Yaron Keren24fdbe52014-03-25 08:42:49 +0000292 -wd4722 # Suppress 'function' : destructor never returns, potential memory leak
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000293 -wd4800 # Suppress ''type' : forcing value to bool 'true' or 'false' (performance warning)'
Andrew Kaylor5c73e1f2015-03-24 23:37:10 +0000294 -wd4100 # Suppress 'unreferenced formal parameter'
295 -wd4127 # Suppress 'conditional expression is constant'
296 -wd4512 # Suppress 'assignment operator could not be generated'
297 -wd4505 # Suppress 'unreferenced local function has been removed'
298 -wd4610 # Suppress '<class> can never be instantiated'
299 -wd4510 # Suppress 'default constructor could not be generated'
300 -wd4702 # Suppress 'unreachable code'
301 -wd4245 # Suppress 'signed/unsigned mismatch'
302 -wd4706 # Suppress 'assignment within conditional expression'
303 -wd4310 # Suppress 'cast truncates constant value'
304 -wd4701 # Suppress 'potentially uninitialized local variable'
305 -wd4703 # Suppress 'potentially uninitialized local pointer variable'
306 -wd4389 # Suppress 'signed/unsigned mismatch'
307 -wd4611 # Suppress 'interaction between '_setjmp' and C++ object destruction is non-portable'
308 -wd4805 # Suppress 'unsafe mix of type <type> and type <type> in operation'
309 -wd4204 # Suppress 'nonstandard extension used : non-constant aggregate initializer'
Aaron Ballman0cba6422015-07-20 21:14:14 +0000310 -wd4577 # Suppress 'noexcept used with no exception handling mode specified; termination on exception is not guaranteed'
311 -wd4091 # Suppress 'typedef: ignored on left of '' when no variable is declared'
Aaron Ballman5cbf37f2015-12-07 15:44:34 +0000312 # C4592 is disabled because of false positives in Visual Studio 2015
313 # Update 1. Re-evaluate the usefulness of this diagnostic with Update 2.
314 -wd4592 # Suppress ''var': symbol will be dynamically initialized (implementation limitation)
Reid Klecknercf5414e2016-02-10 19:25:51 +0000315 -wd4319 # Suppress ''operator' : zero extending 'type' to 'type' of greater size'
Andrew Kaylor84e55fc2015-04-21 22:29:38 +0000316
Douglas Katzmanb5fb2d42015-06-24 21:46:53 +0000317 # Ideally, we'd like this warning to be enabled, but MSVC 2013 doesn't
Andrew Kaylor84e55fc2015-04-21 22:29:38 +0000318 # support the 'aligned' attribute in the way that clang sources requires (for
Douglas Katzmanb5fb2d42015-06-24 21:46:53 +0000319 # any code that uses the LLVM_ALIGNAS macro), so this is must be disabled to
Andrew Kaylor84e55fc2015-04-21 22:29:38 +0000320 # avoid unwanted alignment warnings.
321 # When we switch to requiring a version of MSVC that supports the 'alignas'
322 # specifier (MSVC 2015?) this warning can be re-enabled.
323 -wd4324 # Suppress 'structure was padded due to __declspec(align())'
Reid Klecknercf5414e2016-02-10 19:25:51 +0000324
Michael J. Spencer6d45d832012-06-07 21:34:15 +0000325 # Promoted warnings.
326 -w14062 # Promote 'enumerator in switch of enum is not handled' to level 1 warning.
Michael J. Spenceraeb59e12012-06-07 23:33:56 +0000327
328 # Promoted warnings to errors.
329 -we4238 # Promote 'nonstandard extension used : class rvalue used as lvalue' to error.
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000330 )
331
332 # Enable warnings
333 if (LLVM_ENABLE_WARNINGS)
Nico Weberd23b4002015-12-23 02:38:31 +0000334 # Put /W4 in front of all the -we flags. cl.exe doesn't care, but for
335 # clang-cl having /W4 after the -we flags will re-enable the warnings
336 # disabled by -we.
337 set(msvc_warning_flags "/W4 ${msvc_warning_flags}")
Zachary Turnerad84bc42015-04-14 16:57:54 +0000338 # CMake appends /W3 by default, and having /W3 followed by /W4 will result in
339 # cl : Command line warning D9025 : overriding '/W3' with '/W4'. Since this is
340 # a command line warning and not a compiler warning, it cannot be suppressed except
341 # by fixing the command line.
342 string(REGEX REPLACE " /W[0-4]" "" CMAKE_C_FLAGS "${CMAKE_C_FLAGS}")
343 string(REGEX REPLACE " /W[0-4]" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
344
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000345 if (LLVM_ENABLE_PEDANTIC)
346 # No MSVC equivalent available
347 endif (LLVM_ENABLE_PEDANTIC)
348 endif (LLVM_ENABLE_WARNINGS)
349 if (LLVM_ENABLE_WERROR)
Greg Bedwell8aa30002015-03-19 16:32:47 +0000350 append("/WX" msvc_warning_flags)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000351 endif (LLVM_ENABLE_WERROR)
Greg Bedwell8aa30002015-03-19 16:32:47 +0000352
353 foreach(flag ${msvc_warning_flags})
354 append("${flag}" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
355 endforeach(flag)
356
Rafael Espindolaf8465572015-08-12 17:09:25 +0000357 append("/Zc:inline" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
358
Aaron Ballmance625e82016-01-25 14:17:39 +0000359 # /Zc:strictStrings is incompatible with VS12's (Visual Studio 2013's)
360 # debug mode headers. Instead of only enabling them in VS2013's debug mode,
361 # we'll just enable them for Visual Studio 2015 (VS 14, MSVC_VERSION 1900)
362 # and up.
363 if (NOT (MSVC_VERSION LESS 1900))
364 # Disable string literal const->non-const type conversion.
365 # "When specified, the compiler requires strict const-qualification
366 # conformance for pointers initialized by using string literals."
367 append("/Zc:strictStrings" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
368 endif(NOT (MSVC_VERSION LESS 1900))
369
370 # "Generate Intrinsic Functions".
371 append("/Oi" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
372
373 # "Enforce type conversion rules".
374 append("/Zc:rvalueCast" CMAKE_CXX_FLAGS)
375
Reid Kleckner2b3db2c2016-03-30 17:30:26 +0000376 if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
Nico Weber891419a2016-01-06 19:05:19 +0000377 # clang-cl and cl by default produce non-deterministic binaries because
378 # link.exe /incremental requires a timestamp in the .obj file. clang-cl
Chris Bieneman62de33c2016-05-05 19:57:03 +0000379 # has the flag /Brepro to force deterministic binaries. We want to pass that
380 # whenever you're building with clang unless you're passing /incremental.
Nico Weber891419a2016-01-06 19:05:19 +0000381 # This checks CMAKE_CXX_COMPILER_ID in addition to check_cxx_compiler_flag()
382 # because cl.exe does not emit an error on flags it doesn't understand,
383 # letting check_cxx_compiler_flag() claim it understands all flags.
384 check_cxx_compiler_flag("/Brepro" SUPPORTS_BREPRO)
Nico Weber891419a2016-01-06 19:05:19 +0000385 if (SUPPORTS_BREPRO)
386 # Check if /INCREMENTAL is passed to the linker and complain that it
387 # won't work with /Brepro.
388 string(TOUPPER "${CMAKE_EXE_LINKER_FLAGS}" upper_exe_flags)
389 string(TOUPPER "${CMAKE_MODULE_LINKER_FLAGS}" upper_module_flags)
390 string(TOUPPER "${CMAKE_SHARED_LINKER_FLAGS}" upper_shared_flags)
391
Chris Bieneman62de33c2016-05-05 19:57:03 +0000392 string(FIND "${upper_exe_flags} ${upper_module_flags} ${upper_shared_flags}"
393 "/INCREMENTAL" linker_flag_idx)
Nico Weber891419a2016-01-06 19:05:19 +0000394
Chris Bieneman62de33c2016-05-05 19:57:03 +0000395 if (${linker_flag_idx} GREATER -1)
396 message(WARNING "/Brepro not compatible with /INCREMENTAL linking - builds will be non-deterministic")
397 else()
398 append("/Brepro" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Nico Weber891419a2016-01-06 19:05:19 +0000399 endif()
400 endif()
401 endif()
402
Oscar Fuentesab84a7b2011-05-11 13:53:08 +0000403elseif( LLVM_COMPILER_IS_GCC_COMPATIBLE )
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000404 if (LLVM_ENABLE_WARNINGS)
David Blaikie74d88062015-10-01 00:44:21 +0000405 append("-Wall -W -Wno-unused-parameter -Wwrite-strings" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Roman Divacky2d64ef92014-11-13 19:45:27 +0000406 append("-Wcast-qual" CMAKE_CXX_FLAGS)
Edwin Vanec6410842013-01-31 18:05:54 +0000407
408 # Turn off missing field initializer warnings for gcc to avoid noise from
409 # false positives with empty {}. Turn them on otherwise (they're off by
410 # default for clang).
411 check_cxx_compiler_flag("-Wmissing-field-initializers" CXX_SUPPORTS_MISSING_FIELD_INITIALIZERS_FLAG)
412 if (CXX_SUPPORTS_MISSING_FIELD_INITIALIZERS_FLAG)
413 if (CMAKE_COMPILER_IS_GNUCXX)
Duncan Sands71de6dc2013-03-25 13:25:34 +0000414 append("-Wno-missing-field-initializers" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Edwin Vanec6410842013-01-31 18:05:54 +0000415 else()
Duncan Sands71de6dc2013-03-25 13:25:34 +0000416 append("-Wmissing-field-initializers" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Edwin Vanec6410842013-01-31 18:05:54 +0000417 endif()
418 endif()
419
Eric Fiselier2243d7b2015-10-13 23:51:58 +0000420 append_if(LLVM_ENABLE_PEDANTIC "-pedantic" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
421 append_if(LLVM_ENABLE_PEDANTIC "-Wno-long-long" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Alp Toker00683972014-07-09 03:38:19 +0000422 add_flag_if_supported("-Wcovered-switch-default" COVERED_SWITCH_DEFAULT_FLAG)
Duncan Sands71de6dc2013-03-25 13:25:34 +0000423 append_if(USE_NO_UNINITIALIZED "-Wno-uninitialized" CMAKE_CXX_FLAGS)
424 append_if(USE_NO_MAYBE_UNINITIALIZED "-Wno-maybe-uninitialized" CMAKE_CXX_FLAGS)
Dylan Noblesmith367cef62014-08-23 21:10:56 +0000425
426 # Check if -Wnon-virtual-dtor warns even though the class is marked final.
427 # If it does, don't add it. So it won't be added on clang 3.4 and older.
428 # This also catches cases when -Wnon-virtual-dtor isn't supported by
Andy Gibbs33a0eb72015-12-17 16:43:53 +0000429 # the compiler at all. This flag is not activated for gcc since it will
430 # incorrectly identify a protected non-virtual base when there is a friend
431 # declaration.
432 if (NOT CMAKE_COMPILER_IS_GNUCXX)
433 set(OLD_CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS})
434 set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} -std=c++11 -Werror=non-virtual-dtor")
435 CHECK_CXX_SOURCE_COMPILES("class base {public: virtual void anchor();protected: ~base();};
436 class derived final : public base { public: ~derived();};
437 int main() { return 0; }"
438 CXX_WONT_WARN_ON_FINAL_NONVIRTUALDTOR)
439 set(CMAKE_REQUIRED_FLAGS ${OLD_CMAKE_REQUIRED_FLAGS})
440 append_if(CXX_WONT_WARN_ON_FINAL_NONVIRTUALDTOR
441 "-Wnon-virtual-dtor" CMAKE_CXX_FLAGS)
442 endif()
443
444 # Enable -Wdelete-non-virtual-dtor if available.
445 add_flag_if_supported("-Wdelete-non-virtual-dtor" DELETE_NON_VIRTUAL_DTOR_FLAG)
Evgeniy Stepanov1b5fd3e2014-05-06 09:46:06 +0000446
447 # Check if -Wcomment is OK with an // comment ending with '\' if the next
448 # line is also a // comment.
449 set(OLD_CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS})
Dylan Noblesmith63f9b572014-08-23 21:10:58 +0000450 set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} -Werror -Wcomment")
Evgeniy Stepanov1b5fd3e2014-05-06 09:46:06 +0000451 CHECK_C_SOURCE_COMPILES("// \\\\\\n//\\nint main() {return 0;}"
452 C_WCOMMENT_ALLOWS_LINE_WRAP)
453 set(CMAKE_REQUIRED_FLAGS ${OLD_CMAKE_REQUIRED_FLAGS})
454 if (NOT C_WCOMMENT_ALLOWS_LINE_WRAP)
455 append("-Wno-comment" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
456 endif()
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000457 endif (LLVM_ENABLE_WARNINGS)
Alexey Samsonovcd083fe2014-03-13 13:08:47 +0000458 append_if(LLVM_ENABLE_WERROR "-Werror" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Chris Bieneman62de33c2016-05-05 19:57:03 +0000459 add_flag_if_supported("-Werror=date-time" WERROR_DATE_TIME)
Chandler Carruth25eacf72014-03-01 03:16:07 +0000460 if (LLVM_ENABLE_CXX1Y)
461 check_cxx_compiler_flag("-std=c++1y" CXX_SUPPORTS_CXX1Y)
462 append_if(CXX_SUPPORTS_CXX1Y "-std=c++1y" CMAKE_CXX_FLAGS)
463 else()
Arnaud A. de Grandmaisonb697b532013-11-26 10:33:53 +0000464 check_cxx_compiler_flag("-std=c++11" CXX_SUPPORTS_CXX11)
Chandler Carruth25eacf72014-03-01 03:16:07 +0000465 if (CXX_SUPPORTS_CXX11)
Rafael Espindola8b350742014-03-12 20:01:15 +0000466 if (CYGWIN OR MINGW)
467 # MinGW and Cygwin are a bit stricter and lack things like
468 # 'strdup', 'stricmp', etc in c++11 mode.
469 append("-std=gnu++11" CMAKE_CXX_FLAGS)
470 else()
471 append("-std=c++11" CMAKE_CXX_FLAGS)
472 endif()
Chandler Carruth25eacf72014-03-01 03:16:07 +0000473 else()
474 message(FATAL_ERROR "LLVM requires C++11 support but the '-std=c++11' flag isn't supported.")
475 endif()
476 endif()
Richard Smithcdbecda2016-04-17 20:58:01 +0000477 if (LLVM_ENABLE_MODULES)
478 set(OLD_CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS})
Vassil Vassilev71e9e442016-09-29 08:14:06 +0000479 set(module_flags "-fmodules -fmodules-cache-path=${PROJECT_BINARY_DIR}/module.cache")
Adrian Prantl48e7cbd2016-06-30 01:46:49 +0000480 if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
481 # On Darwin -fmodules does not imply -fcxx-modules.
482 set(module_flags "${module_flags} -fcxx-modules")
483 endif()
484 if (LLVM_ENABLE_LOCAL_SUBMODULE_VISIBILITY)
Adrian Prantl8a75ee92016-06-30 15:58:36 +0000485 set(module_flags "${module_flags} -Xclang -fmodules-local-submodule-visibility")
Adrian Prantl48e7cbd2016-06-30 01:46:49 +0000486 endif()
Adrian Prantl9f4ef632016-06-30 17:15:44 +0000487 if (LLVM_ENABLE_MODULE_DEBUGGING AND
488 ((uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG") OR
489 (uppercase_CMAKE_BUILD_TYPE STREQUAL "RELWITHDEBINFO")))
490 set(module_flags "${module_flags} -gmodules")
491 endif()
Adrian Prantl48e7cbd2016-06-30 01:46:49 +0000492 set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} ${module_flags}")
493
Richard Smithcdbecda2016-04-17 20:58:01 +0000494 # Check that we can build code with modules enabled, and that repeatedly
495 # including <cassert> still manages to respect NDEBUG properly.
496 CHECK_CXX_SOURCE_COMPILES("#undef NDEBUG
497 #include <cassert>
498 #define NDEBUG
499 #include <cassert>
500 int main() { assert(this code is not compiled); }"
501 CXX_SUPPORTS_MODULES)
502 set(CMAKE_REQUIRED_FLAGS ${OLD_CMAKE_REQUIRED_FLAGS})
503 if (CXX_SUPPORTS_MODULES)
Adrian Prantl48e7cbd2016-06-30 01:46:49 +0000504 append("${module_flags}" CMAKE_CXX_FLAGS)
Richard Smithcdbecda2016-04-17 20:58:01 +0000505 else()
506 message(FATAL_ERROR "LLVM_ENABLE_MODULES is not supported by this compiler")
507 endif()
508 endif(LLVM_ENABLE_MODULES)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000509endif( MSVC )
510
Alexey Samsonov75789a22013-03-26 07:49:46 +0000511macro(append_common_sanitizer_flags)
Reid Klecknerd7a568f2015-08-14 16:48:34 +0000512 if (NOT MSVC)
513 # Append -fno-omit-frame-pointer and turn on debug info to get better
514 # stack traces.
515 add_flag_if_supported("-fno-omit-frame-pointer" FNO_OMIT_FRAME_POINTER)
516 if (NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG" AND
Reid Kleckner38b89382015-08-25 16:06:40 +0000517 NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "RELWITHDEBINFO")
Reid Klecknerd7a568f2015-08-14 16:48:34 +0000518 add_flag_if_supported("-gline-tables-only" GLINE_TABLES_ONLY)
519 endif()
520 # Use -O1 even in debug mode, otherwise sanitizers slowdown is too large.
521 if (uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG")
522 add_flag_if_supported("-O1" O1)
523 endif()
524 elseif (CLANG_CL)
525 # Keep frame pointers around.
526 append("/Oy-" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
527 if (CMAKE_LINKER MATCHES "lld-link.exe")
528 # Use DWARF debug info with LLD.
529 append("-gdwarf" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
530 else()
531 # Enable codeview otherwise.
532 append("/Z7" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
533 endif()
534 # Always ask the linker to produce symbols with asan.
535 append("-debug" CMAKE_EXE_LINKER_FLAGS CMAKE_MODULE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS)
Alexey Samsonovf9ab3512013-09-02 09:15:01 +0000536 endif()
Alexey Samsonov75789a22013-03-26 07:49:46 +0000537endmacro()
538
539# Turn on sanitizers if necessary.
540if(LLVM_USE_SANITIZER)
541 if (LLVM_ON_UNIX)
542 if (LLVM_USE_SANITIZER STREQUAL "Address")
543 append_common_sanitizer_flags()
Alp Toker696b4a02014-07-09 06:27:05 +0000544 append("-fsanitize=address" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Alexey Samsonov75789a22013-03-26 07:49:46 +0000545 elseif (LLVM_USE_SANITIZER MATCHES "Memory(WithOrigins)?")
546 append_common_sanitizer_flags()
Alp Toker696b4a02014-07-09 06:27:05 +0000547 append("-fsanitize=memory" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Alexey Samsonov75789a22013-03-26 07:49:46 +0000548 if(LLVM_USE_SANITIZER STREQUAL "MemoryWithOrigins")
Alp Toker696b4a02014-07-09 06:27:05 +0000549 append("-fsanitize-memory-track-origins" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Alexey Samsonov75789a22013-03-26 07:49:46 +0000550 endif()
Alexey Samsonov4ee26752014-08-29 00:50:36 +0000551 elseif (LLVM_USE_SANITIZER STREQUAL "Undefined")
552 append_common_sanitizer_flags()
Justin Bogner8c8fb162015-05-14 04:52:57 +0000553 append("-fsanitize=undefined -fno-sanitize=vptr,function -fno-sanitize-recover=all"
Alexey Samsonov4ee26752014-08-29 00:50:36 +0000554 CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Eric Fiselierbe6705d2014-11-18 21:23:38 +0000555 elseif (LLVM_USE_SANITIZER STREQUAL "Thread")
556 append_common_sanitizer_flags()
557 append("-fsanitize=thread" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Filipe Cabecinhasb36685e2015-02-04 22:33:31 +0000558 elseif (LLVM_USE_SANITIZER STREQUAL "Address;Undefined" OR
559 LLVM_USE_SANITIZER STREQUAL "Undefined;Address")
560 append_common_sanitizer_flags()
Justin Bogner8c8fb162015-05-14 04:52:57 +0000561 append("-fsanitize=address,undefined -fno-sanitize=vptr,function -fno-sanitize-recover=all"
Filipe Cabecinhasb36685e2015-02-04 22:33:31 +0000562 CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Alexey Samsonov75789a22013-03-26 07:49:46 +0000563 else()
Justin Bogner1ded6982015-09-01 05:45:07 +0000564 message(FATAL_ERROR "Unsupported value of LLVM_USE_SANITIZER: ${LLVM_USE_SANITIZER}")
Alexey Samsonov75789a22013-03-26 07:49:46 +0000565 endif()
Reid Klecknerd7a568f2015-08-14 16:48:34 +0000566 elseif(MSVC)
567 if (LLVM_USE_SANITIZER STREQUAL "Address")
568 append_common_sanitizer_flags()
569 append("-fsanitize=address" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
570 else()
Justin Bogner1ded6982015-09-01 05:45:07 +0000571 message(FATAL_ERROR "This sanitizer not yet supported in the MSVC environment: ${LLVM_USE_SANITIZER}")
Reid Klecknerd7a568f2015-08-14 16:48:34 +0000572 endif()
Alexey Samsonov75789a22013-03-26 07:49:46 +0000573 else()
Justin Bogner1ded6982015-09-01 05:45:07 +0000574 message(FATAL_ERROR "LLVM_USE_SANITIZER is not supported on this platform.")
Alexey Samsonov75789a22013-03-26 07:49:46 +0000575 endif()
Kostya Serebryany869b8672015-01-27 17:59:28 +0000576 if (LLVM_USE_SANITIZE_COVERAGE)
Kostya Serebryany61be0f92016-12-10 02:26:23 +0000577 append("-fsanitize-coverage=trace-pc-guard,indirect-calls,trace-cmp" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Kostya Serebryany869b8672015-01-27 17:59:28 +0000578 endif()
Alexey Samsonov75789a22013-03-26 07:49:46 +0000579endif()
580
Eric Christopher39878062013-07-30 21:44:10 +0000581# Turn on -gsplit-dwarf if requested
582if(LLVM_USE_SPLIT_DWARF)
Peter Collingbournea7d17512014-10-22 19:49:19 +0000583 add_definitions("-gsplit-dwarf")
Eric Christopher39878062013-07-30 21:44:10 +0000584endif()
585
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000586add_llvm_definitions( -D__STDC_CONSTANT_MACROS )
NAKAMURA Takumic5554c92011-10-11 12:51:44 +0000587add_llvm_definitions( -D__STDC_FORMAT_MACROS )
NAKAMURA Takumie63cd192011-10-11 12:51:36 +0000588add_llvm_definitions( -D__STDC_LIMIT_MACROS )
Arnaud A. de Grandmaison916f3cc2013-05-29 20:41:35 +0000589
590# clang doesn't print colored diagnostics when invoked from Ninja
Rafael Espindola6f2564c2013-06-14 19:41:05 +0000591if (UNIX AND
Justin Bogner13440b92016-06-01 23:29:26 +0000592 CMAKE_CXX_COMPILER_ID MATCHES "Clang" AND
Rafael Espindola6f2564c2013-06-14 19:41:05 +0000593 CMAKE_GENERATOR STREQUAL "Ninja")
594 append("-fcolor-diagnostics" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Arnaud A. de Grandmaison916f3cc2013-05-29 20:41:35 +0000595endif()
NAKAMURA Takumibb50bce2014-01-28 09:43:55 +0000596
597# Add flags for add_dead_strip().
598# FIXME: With MSVS, consider compiling with /Gy and linking with /OPT:REF?
599# But MinSizeRel seems to add that automatically, so maybe disable these
600# flags instead if LLVM_NO_DEAD_STRIP is set.
601if(NOT CYGWIN AND NOT WIN32)
Rafael Espindola9c5701f2015-04-06 14:34:43 +0000602 if(NOT ${CMAKE_SYSTEM_NAME} MATCHES "Darwin" AND
603 NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG")
Alexey Samsonov482beff2014-02-04 08:15:46 +0000604 check_c_compiler_flag("-Werror -fno-function-sections" C_SUPPORTS_FNO_FUNCTION_SECTIONS)
605 if (C_SUPPORTS_FNO_FUNCTION_SECTIONS)
606 # Don't add -ffunction-section if it can be disabled with -fno-function-sections.
607 # Doing so will break sanitizers.
Alp Toker00683972014-07-09 03:38:19 +0000608 add_flag_if_supported("-ffunction-sections" FFUNCTION_SECTIONS)
Evgeniy Stepanovc7b7e252014-02-03 13:57:09 +0000609 endif()
Alp Toker00683972014-07-09 03:38:19 +0000610 add_flag_if_supported("-fdata-sections" FDATA_SECTIONS)
NAKAMURA Takumibb50bce2014-01-28 09:43:55 +0000611 endif()
612endif()
NAKAMURA Takumia679f432014-01-28 09:44:06 +0000613
614if(MSVC)
615 # Remove flags here, for exceptions and RTTI.
NAKAMURA Takumiac624642014-01-31 17:32:36 +0000616 # Each target property or source property should be responsible to control
617 # them.
NAKAMURA Takumia679f432014-01-28 09:44:06 +0000618 # CL.EXE complains to override flags like "/GR /GR-".
619 string(REGEX REPLACE "(^| ) */EH[-cs]+ *( |$)" "\\1 \\2" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
620 string(REGEX REPLACE "(^| ) */GR-? *( |$)" "\\1 \\2" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
621endif()
NAKAMURA Takumi8d7a1732014-07-04 04:45:40 +0000622
Dan Liewa5bdc842014-07-22 15:41:18 +0000623# Provide public options to globally control RTTI and EH
624option(LLVM_ENABLE_EH "Enable Exception handling" OFF)
625option(LLVM_ENABLE_RTTI "Enable run time type information" OFF)
626if(LLVM_ENABLE_EH AND NOT LLVM_ENABLE_RTTI)
627 message(FATAL_ERROR "Exception handling requires RTTI. You must set LLVM_ENABLE_RTTI to ON")
628endif()
629
Chris Bienemandbdec572015-12-10 21:19:07 +0000630option(LLVM_BUILD_INSTRUMENTED "Build LLVM and tools with PGO instrumentation (experimental)" Off)
631mark_as_advanced(LLVM_BUILD_INSTRUMENTED)
Vedant Kumard9aed822016-06-13 23:33:48 +0000632append_if(LLVM_BUILD_INSTRUMENTED "-fprofile-instr-generate='${LLVM_PROFILE_FILE_PATTERN}'"
633 CMAKE_CXX_FLAGS
634 CMAKE_C_FLAGS
635 CMAKE_EXE_LINKER_FLAGS
636 CMAKE_SHARED_LINKER_FLAGS)
637
638option(LLVM_BUILD_INSTRUMENTED_COVERAGE "Build LLVM and tools with Code Coverage instrumentation (experimental)" Off)
639mark_as_advanced(LLVM_BUILD_INSTRUMENTED_COVERAGE)
640append_if(LLVM_BUILD_INSTRUMENTED_COVERAGE "-fprofile-instr-generate='${LLVM_PROFILE_FILE_PATTERN}' -fcoverage-mapping"
Chris Bienemandbdec572015-12-10 21:19:07 +0000641 CMAKE_CXX_FLAGS
642 CMAKE_C_FLAGS
643 CMAKE_EXE_LINKER_FLAGS
644 CMAKE_SHARED_LINKER_FLAGS)
645
Justin Bogner740f2ca2016-02-08 21:55:19 +0000646set(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 +0000647string(TOUPPER "${LLVM_ENABLE_LTO}" uppercase_LLVM_ENABLE_LTO)
648if(uppercase_LLVM_ENABLE_LTO STREQUAL "THIN")
649 append("-flto=thin" CMAKE_CXX_FLAGS CMAKE_C_FLAGS
650 CMAKE_EXE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS)
Justin Bogner1b05f6c2016-10-28 20:48:47 +0000651 # On darwin, enable the lto cache. This improves initial build time a little
652 # since we re-link a lot of the same objects, and significantly improves
653 # incremental build time.
654 append_if(APPLE "-Wl,-cache_path_lto,${PROJECT_BINARY_DIR}/lto.cache"
655 CMAKE_EXE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS)
Justin Bogner9fd20392016-02-08 21:01:24 +0000656elseif(uppercase_LLVM_ENABLE_LTO STREQUAL "FULL")
657 append("-flto=full" CMAKE_CXX_FLAGS CMAKE_C_FLAGS
658 CMAKE_EXE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS)
659elseif(LLVM_ENABLE_LTO)
660 append("-flto" CMAKE_CXX_FLAGS CMAKE_C_FLAGS
661 CMAKE_EXE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS)
662endif()
Justin Bognere12385b2016-02-04 07:28:30 +0000663
John Brawn3546c2f2016-05-26 11:16:43 +0000664# This option makes utils/extract_symbols.py be used to determine the list of
665# symbols to export from LLVM tools. This is necessary when using MSVC if you
666# want to allow plugins, though note that the plugin has to explicitly link
667# against (exactly one) tool so we can't unilaterally turn on
668# LLVM_ENABLE_PLUGINS when it's enabled.
669option(LLVM_EXPORT_SYMBOLS_FOR_PLUGINS "Export symbols from LLVM tools so that plugins can import them" OFF)
670if(BUILD_SHARED_LIBS AND LLVM_EXPORT_SYMBOLS_FOR_PLUGINS)
671 message(FATAL_ERROR "BUILD_SHARED_LIBS not compatible with LLVM_EXPORT_SYMBOLS_FOR_PLUGINS")
672endif()
673if(LLVM_LINK_LLVM_DYLIB AND LLVM_EXPORT_SYMBOLS_FOR_PLUGINS)
674 message(FATAL_ERROR "LLVM_LINK_LLVM_DYLIB not compatible with LLVM_EXPORT_SYMBOLS_FOR_PLUGINS")
675endif()
676
NAKAMURA Takumi8d7a1732014-07-04 04:45:40 +0000677# Plugin support
678# FIXME: Make this configurable.
Reid Klecknerb7a13822016-02-10 01:06:37 +0000679if(WIN32 OR CYGWIN)
NAKAMURA Takumib5bb1e22014-07-13 13:47:37 +0000680 if(BUILD_SHARED_LIBS)
681 set(LLVM_ENABLE_PLUGINS ON)
682 else()
683 set(LLVM_ENABLE_PLUGINS OFF)
684 endif()
NAKAMURA Takumi8d7a1732014-07-04 04:45:40 +0000685else()
686 set(LLVM_ENABLE_PLUGINS ON)
687endif()