blob: 405e8ac00daac7aea81b3e763227464b628ce9b1 [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
Jordan Rose31c5b7b2014-02-05 00:02:37 +00009include(HandleLLVMStdlib)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +000010include(AddLLVMDefinitions)
Joe Abbey15d98342012-11-26 02:02:08 +000011include(CheckCCompilerFlag)
Jordan Rose643aa0e2013-03-02 01:00:40 +000012include(CheckCXXCompilerFlag)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +000013
Chandler Carruth83885972014-01-13 22:21:34 +000014if(NOT LLVM_FORCE_USE_OLD_TOOLCHAIN)
15 if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
16 if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.7)
17 message(FATAL_ERROR "Host GCC version must be at least 4.7!")
18 endif()
19 elseif(CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
20 if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS 3.1)
21 message(FATAL_ERROR "Host Clang version must be at least 3.1!")
22 endif()
Chandler Carruthf8f00152014-01-17 09:47:55 +000023
Reid Klecknere13b7652015-02-23 19:07:25 +000024 if (CMAKE_CXX_SIMULATE_ID MATCHES "MSVC")
25 if (CMAKE_CXX_SIMULATE_VERSION VERSION_LESS 18.0)
26 message(FATAL_ERROR "Host Clang must have at least -fms-compatibility-version=18.0")
27 endif()
Zachary Turner66bc9082015-02-25 20:42:19 +000028 set(CLANG_CL 1)
Reid Klecknere13b7652015-02-23 19:07:25 +000029 elseif(NOT LLVM_ENABLE_LIBCXX)
30 # Otherwise, test that we aren't using too old of a version of libstdc++
31 # with the Clang compiler. This is tricky as there is no real way to
32 # check the version of libstdc++ directly. Instead we test for a known
33 # bug in libstdc++4.6 that is fixed in libstdc++4.7.
Chandler Carruthf4144ad2014-01-21 18:09:19 +000034 set(OLD_CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS})
35 set(OLD_CMAKE_REQUIRED_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES})
Chandler Carruthf8f00152014-01-17 09:47:55 +000036 set(CMAKE_REQUIRED_FLAGS "-std=c++0x")
37 check_cxx_source_compiles("
38#include <atomic>
39std::atomic<float> x(0.0f);
40int main() { return (float)x; }"
41 LLVM_NO_OLD_LIBSTDCXX)
42 if(NOT LLVM_NO_OLD_LIBSTDCXX)
43 message(FATAL_ERROR "Host Clang must be able to find libstdc++4.7 or newer!")
44 endif()
Chandler Carruthf4144ad2014-01-21 18:09:19 +000045 set(CMAKE_REQUIRED_FLAGS ${OLD_CMAKE_REQUIRED_FLAGS})
46 set(CMAKE_REQUIRED_LIBRARIES ${OLD_CMAKE_REQUIRED_LIBRARIES})
Chandler Carruthf8f00152014-01-17 09:47:55 +000047 endif()
Amara Emerson5569381a2014-01-21 16:41:07 +000048 elseif(CMAKE_CXX_COMPILER_ID MATCHES "MSVC")
Filipe Cabecinhas3c746932015-02-18 01:12:38 +000049 if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS 18.0)
50 message(FATAL_ERROR "Host Visual Studio must be at least 2013")
51 elseif(CMAKE_CXX_COMPILER_VERSION VERSION_LESS 18.0.31101)
52 message(WARNING "Host Visual Studio should at least be 2013 Update 4 (MSVC 18.0.31101)"
53 " due to miscompiles from earlier versions")
Chandler Carruth83885972014-01-13 22:21:34 +000054 endif()
55 endif()
56endif()
57
Oscar Fuentesf4202ba2011-02-03 20:57:36 +000058if( LLVM_ENABLE_ASSERTIONS )
59 # MSVC doesn't like _DEBUG on release builds. See PR 4379.
60 if( NOT MSVC )
61 add_definitions( -D_DEBUG )
62 endif()
Duncan Sands80f122f2013-07-17 09:34:51 +000063 # On non-Debug builds cmake automatically defines NDEBUG, so we
Oscar Fuentesf4202ba2011-02-03 20:57:36 +000064 # explicitly undefine it:
Duncan Sands80f122f2013-07-17 09:34:51 +000065 if( NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG" )
Oscar Fuentesf4202ba2011-02-03 20:57:36 +000066 add_definitions( -UNDEBUG )
Reid Klecknerc1c01d52013-04-07 01:45:01 +000067 # Also remove /D NDEBUG to avoid MSVC warnings about conflicting defines.
Reid Kleckner472e6b42014-05-19 21:13:41 +000068 foreach (flags_var_to_scrub
69 CMAKE_CXX_FLAGS_RELEASE
70 CMAKE_CXX_FLAGS_RELWITHDEBINFO
71 CMAKE_CXX_FLAGS_MINSIZEREL
72 CMAKE_C_FLAGS_RELEASE
73 CMAKE_C_FLAGS_RELWITHDEBINFO
74 CMAKE_C_FLAGS_MINSIZEREL)
75 string (REGEX REPLACE "(^| )[/-]D *NDEBUG($| )" " "
76 "${flags_var_to_scrub}" "${${flags_var_to_scrub}}")
77 endforeach()
Oscar Fuentesf4202ba2011-02-03 20:57:36 +000078 endif()
Oscar Fuentesf4202ba2011-02-03 20:57:36 +000079endif()
80
Sanjoy Das8ce64992015-03-26 19:25:01 +000081string(TOUPPER "${LLVM_ABI_BREAKING_CHECKS}" uppercase_LLVM_ABI_BREAKING_CHECKS)
82
83if( uppercase_LLVM_ABI_BREAKING_CHECKS STREQUAL "WITH_ASSERTS" )
84 if( LLVM_ENABLE_ASSERTIONS )
85 set( LLVM_ENABLE_ABI_BREAKING_CHECKS 1 )
86 endif()
87elseif( uppercase_LLVM_ABI_BREAKING_CHECKS STREQUAL "FORCE_ON" )
88 set( LLVM_ENABLE_ABI_BREAKING_CHECKS 1 )
89elseif( uppercase_LLVM_ABI_BREAKING_CHECKS STREQUAL "FORCE_OFF" )
90 # We don't need to do anything special to turn off ABI breaking checks.
Eric Fiselier8e2f0a82015-05-12 22:49:18 +000091elseif( NOT DEFINED LLVM_ABI_BREAKING_CHECKS )
92 # Treat LLVM_ABI_BREAKING_CHECKS like "FORCE_OFF" when it has not been
93 # defined.
Sanjoy Das8ce64992015-03-26 19:25:01 +000094else()
95 message(FATAL_ERROR "Unknown value for LLVM_ABI_BREAKING_CHECKS: \"${LLVM_ABI_BREAKING_CHECKS}\"!")
96endif()
97
Oscar Fuentesf4202ba2011-02-03 20:57:36 +000098if(WIN32)
Nico Weberc27118d2013-12-28 23:31:44 +000099 set(LLVM_HAVE_LINK_VERSION_SCRIPT 0)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000100 if(CYGWIN)
101 set(LLVM_ON_WIN32 0)
102 set(LLVM_ON_UNIX 1)
103 else(CYGWIN)
104 set(LLVM_ON_WIN32 1)
105 set(LLVM_ON_UNIX 0)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000106 endif(CYGWIN)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000107else(WIN32)
108 if(UNIX)
109 set(LLVM_ON_WIN32 0)
110 set(LLVM_ON_UNIX 1)
111 if(APPLE)
Nico Weberc27118d2013-12-28 23:31:44 +0000112 set(LLVM_HAVE_LINK_VERSION_SCRIPT 0)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000113 else(APPLE)
Nico Weberc27118d2013-12-28 23:31:44 +0000114 set(LLVM_HAVE_LINK_VERSION_SCRIPT 1)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000115 endif(APPLE)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000116 else(UNIX)
117 MESSAGE(SEND_ERROR "Unable to determine platform")
118 endif(UNIX)
119endif(WIN32)
120
Alp Tokerc0b7bb52014-01-08 11:10:24 +0000121set(EXEEXT ${CMAKE_EXECUTABLE_SUFFIX})
122set(LTDL_SHLIB_EXT ${CMAKE_SHARED_LIBRARY_SUFFIX})
NAKAMURA Takumi92d65802014-02-13 11:19:00 +0000123
124# We use *.dylib rather than *.so on darwin.
125set(LLVM_PLUGIN_EXT ${CMAKE_SHARED_LIBRARY_SUFFIX})
Alp Tokerc0b7bb52014-01-08 11:10:24 +0000126
NAKAMURA Takumi58f6e742014-02-13 11:19:11 +0000127if(APPLE)
128 # Darwin-specific linker flags for loadable modules.
129 set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,-flat_namespace -Wl,-undefined -Wl,suppress")
130endif()
131
Rafael Espindolabb5d09f2015-01-22 14:06:51 +0000132# Pass -Wl,-z,defs. This makes sure all symbols are defined. Otherwise a DSO
133# build might work on ELF but fail on MachO/COFF.
Yaron Keren5519ad32015-07-23 08:06:12 +0000134if(NOT (${CMAKE_SYSTEM_NAME} MATCHES "Darwin" OR WIN32 OR CYGWIN OR
Rafael Espindola19b53842015-01-22 20:57:30 +0000135 ${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD") AND
136 NOT LLVM_USE_SANITIZER)
Rafael Espindolabb5d09f2015-01-22 14:06:51 +0000137 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,-z,defs")
138endif()
139
140
Duncan Sands71de6dc2013-03-25 13:25:34 +0000141function(append value)
142 foreach(variable ${ARGN})
Alexey Samsonov67065782013-03-13 20:50:23 +0000143 set(${variable} "${${variable}} ${value}" PARENT_SCOPE)
Duncan Sands71de6dc2013-03-25 13:25:34 +0000144 endforeach(variable)
145endfunction()
146
147function(append_if condition value)
148 if (${condition})
149 foreach(variable ${ARGN})
150 set(${variable} "${${variable}} ${value}" PARENT_SCOPE)
151 endforeach(variable)
Alexey Samsonov67065782013-03-13 20:50:23 +0000152 endif()
153endfunction()
154
Alp Toker00683972014-07-09 03:38:19 +0000155macro(add_flag_if_supported flag name)
156 check_c_compiler_flag("-Werror ${flag}" "C_SUPPORTS_${name}")
157 append_if("C_SUPPORTS_${name}" "${flag}" CMAKE_C_FLAGS)
158 check_cxx_compiler_flag("-Werror ${flag}" "CXX_SUPPORTS_${name}")
159 append_if("CXX_SUPPORTS_${name}" "${flag}" CMAKE_CXX_FLAGS)
Alexey Samsonov75789a22013-03-26 07:49:46 +0000160endmacro()
161
Alp Toker00683972014-07-09 03:38:19 +0000162function(add_flag_or_print_warning flag name)
163 check_c_compiler_flag("-Werror ${flag}" "C_SUPPORTS_${name}")
164 check_cxx_compiler_flag("-Werror ${flag}" "CXX_SUPPORTS_${name}")
Richard Smithca9ae102014-09-26 21:35:48 +0000165 if (C_SUPPORTS_${name} AND CXX_SUPPORTS_${name})
Alp Toker00683972014-07-09 03:38:19 +0000166 message(STATUS "Building with ${flag}")
167 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${flag}" PARENT_SCOPE)
168 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${flag}" PARENT_SCOPE)
Douglas Katzman280ee912015-07-28 14:43:53 +0000169 set(CMAKE_ASM_FLAGS "${CMAKE_ASM_FLAGS} ${flag}" PARENT_SCOPE)
Alp Toker00683972014-07-09 03:38:19 +0000170 else()
171 message(WARNING "${flag} is not supported.")
172 endif()
173endfunction()
174
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000175if( LLVM_ENABLE_PIC )
176 if( XCODE )
177 # Xcode has -mdynamic-no-pic on by default, which overrides -fPIC. I don't
178 # know how to disable this, so just force ENABLE_PIC off for now.
179 message(WARNING "-fPIC not supported with Xcode.")
NAKAMURA Takumi1b745d02011-12-16 06:21:08 +0000180 elseif( WIN32 OR CYGWIN)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000181 # On Windows all code is PIC. MinGW warns if -fPIC is used.
182 else()
Alp Toker00683972014-07-09 03:38:19 +0000183 add_flag_or_print_warning("-fPIC" FPIC)
Rafael Espindola5258ab82012-01-20 04:07:48 +0000184
Rafael Espindola9f404cc2012-01-20 13:10:10 +0000185 if( WIN32 OR CYGWIN)
186 # MinGW warns if -fvisibility-inlines-hidden is used.
187 else()
188 check_cxx_compiler_flag("-fvisibility-inlines-hidden" SUPPORTS_FVISIBILITY_INLINES_HIDDEN_FLAG)
Duncan Sands71de6dc2013-03-25 13:25:34 +0000189 append_if(SUPPORTS_FVISIBILITY_INLINES_HIDDEN_FLAG "-fvisibility-inlines-hidden" CMAKE_CXX_FLAGS)
Alexey Samsonov67065782013-03-13 20:50:23 +0000190 endif()
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000191 endif()
192endif()
193
194if( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
195 # TODO: support other platforms and toolchains.
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000196 if( LLVM_BUILD_32_BITS )
197 message(STATUS "Building 32 bits executables and libraries.")
198 add_llvm_definitions( -m32 )
Tim Northoverf6e29c42012-05-23 18:42:02 +0000199 set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -m32")
200 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -m32")
Tobias Grosserb32ad402012-06-08 09:41:23 +0000201 set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -m32")
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000202 endif( LLVM_BUILD_32_BITS )
203endif( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
204
Rafael Espindolaef4edf42014-11-05 14:03:58 +0000205if (LLVM_BUILD_STATIC)
206 set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -static")
207endif()
208
Ted Kremenek68af8452014-03-13 06:37:28 +0000209if( XCODE )
210 # For Xcode enable several build settings that correspond to
211 # many warnings that are on by default in Clang but are
212 # not enabled for historical reasons. For versions of Xcode
213 # that do not support these options they will simply
214 # be ignored.
215 set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_ABOUT_RETURN_TYPE "YES")
216 set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_ABOUT_MISSING_NEWLINE "YES")
217 set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_UNUSED_VALUE "YES")
218 set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_UNUSED_VARIABLE "YES")
219 set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_SIGN_COMPARE "YES")
220 set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_UNUSED_FUNCTION "YES")
221 set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED "YES")
222 set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_HIDDEN_VIRTUAL_FUNCTIONS "YES")
223 set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_UNINITIALIZED_AUTOS "YES")
224 set(CMAKE_XCODE_ATTRIBUTE_CLANG_WARN_BOOL_CONVERSION "YES")
225 set(CMAKE_XCODE_ATTRIBUTE_CLANG_WARN_EMPTY_BODY "YES")
226 set(CMAKE_XCODE_ATTRIBUTE_CLANG_WARN_ENUM_CONVERSION "YES")
227 set(CMAKE_XCODE_ATTRIBUTE_CLANG_WARN_INT_CONVERSION "YES")
228 set(CMAKE_XCODE_ATTRIBUTE_CLANG_WARN_CONSTANT_CONVERSION "YES")
229 set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_NON_VIRTUAL_DESTRUCTOR "YES")
230endif()
231
NAKAMURA Takumia83601d2012-04-21 14:50:56 +0000232# On Win32 using MS tools, provide an option to set the number of parallel jobs
233# to use.
NAKAMURA Takumi75bfe692012-04-21 14:51:02 +0000234if( MSVC_IDE )
Oscar Fuentes318c3f12011-03-02 17:47:37 +0000235 set(LLVM_COMPILER_JOBS "0" CACHE STRING
236 "Number of parallel compiler jobs. 0 means use all processors. Default is 0.")
237 if( NOT LLVM_COMPILER_JOBS STREQUAL "1" )
238 if( LLVM_COMPILER_JOBS STREQUAL "0" )
239 add_llvm_definitions( /MP )
240 else()
Yaron Kerene4855112014-03-25 09:34:20 +0000241 message(STATUS "Number of parallel compiler jobs set to " ${LLVM_COMPILER_JOBS})
242 add_llvm_definitions( /MP${LLVM_COMPILER_JOBS} )
Oscar Fuentes318c3f12011-03-02 17:47:37 +0000243 endif()
244 else()
245 message(STATUS "Parallel compilation disabled")
246 endif()
247endif()
248
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000249if( MSVC )
Yaron Keren528d8d62015-08-21 17:31:03 +0000250 if( CMAKE_CXX_COMPILER_VERSION VERSION_LESS 19.0 )
251 # For MSVC 2013, disable iterator null pointer checking in debug mode,
252 # especially so std::equal(nullptr, nullptr, nullptr) will not assert.
253 add_llvm_definitions("-D_DEBUG_POINTER_IMPL=")
254 endif()
255
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000256 include(ChooseMSVCCRT)
257
Hans Wennborgbef50ab2013-10-17 18:39:47 +0000258 if( NOT (${CMAKE_VERSION} VERSION_LESS 2.8.11) )
259 # set stack reserved size to ~10MB
260 # CMake previously automatically set this value for MSVC builds, but the
261 # behavior was changed in CMake 2.8.11 (Issue 12437) to use the MSVC default
262 # value (1 MB) which is not enough for us in tasks such as parsing recursive
263 # C++ templates in Clang.
264 set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /STACK:10000000")
265 endif()
Hans Wennborgfd541f02013-10-17 17:49:57 +0000266
Yaron Kerene4855112014-03-25 09:34:20 +0000267 if( MSVC11 )
Michael J. Spencer35145f82012-03-01 22:42:52 +0000268 add_llvm_definitions(-D_VARIADIC_MAX=10)
269 endif()
Greg Bedwell580defb2015-03-11 14:57:48 +0000270
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000271 # Add definitions that make MSVC much less annoying.
272 add_llvm_definitions(
273 # For some reason MS wants to deprecate a bunch of standard functions...
274 -D_CRT_SECURE_NO_DEPRECATE
275 -D_CRT_SECURE_NO_WARNINGS
276 -D_CRT_NONSTDC_NO_DEPRECATE
277 -D_CRT_NONSTDC_NO_WARNINGS
278 -D_SCL_SECURE_NO_DEPRECATE
279 -D_SCL_SECURE_NO_WARNINGS
Greg Bedwell8aa30002015-03-19 16:32:47 +0000280 )
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000281
Greg Bedwell8aa30002015-03-19 16:32:47 +0000282 set(msvc_warning_flags
Michael J. Spencer6d45d832012-06-07 21:34:15 +0000283 # Disabled warnings.
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000284 -wd4146 # Suppress 'unary minus operator applied to unsigned type, result still unsigned'
285 -wd4180 # Suppress 'qualifier applied to function type has no meaning; ignored'
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000286 -wd4244 # Suppress ''argument' : conversion from 'type1' to 'type2', possible loss of data'
Aaron Ballmandabe7802014-08-18 14:54:22 +0000287 -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 +0000288 -wd4267 # Suppress ''var' : conversion from 'size_t' to 'type', possible loss of data'
Yaron Keren24fdbe52014-03-25 08:42:49 +0000289 -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 +0000290 -wd4345 # Suppress 'behavior change: an object of POD type constructed with an initializer of the form () will be default-initialized'
291 -wd4351 # Suppress 'new behavior: elements of array 'array' will be default initialized'
292 -wd4355 # Suppress ''this' : used in base member initializer list'
Reid Kleckner19cb1712014-10-31 22:55:57 +0000293 -wd4456 # Suppress 'declaration of 'var' hides local variable'
294 -wd4457 # Suppress 'declaration of 'var' hides function parameter'
295 -wd4458 # Suppress 'declaration of 'var' hides class member'
296 -wd4459 # Suppress 'declaration of 'var' hides global declaration'
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000297 -wd4503 # Suppress ''identifier' : decorated name length exceeded, name was truncated'
298 -wd4624 # Suppress ''derived class' : destructor could not be generated because a base class destructor is inaccessible'
Yaron Keren24fdbe52014-03-25 08:42:49 +0000299 -wd4722 # Suppress 'function' : destructor never returns, potential memory leak
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000300 -wd4800 # Suppress ''type' : forcing value to bool 'true' or 'false' (performance warning)'
Andrew Kaylor5c73e1f2015-03-24 23:37:10 +0000301 -wd4100 # Suppress 'unreferenced formal parameter'
302 -wd4127 # Suppress 'conditional expression is constant'
303 -wd4512 # Suppress 'assignment operator could not be generated'
304 -wd4505 # Suppress 'unreferenced local function has been removed'
305 -wd4610 # Suppress '<class> can never be instantiated'
306 -wd4510 # Suppress 'default constructor could not be generated'
307 -wd4702 # Suppress 'unreachable code'
308 -wd4245 # Suppress 'signed/unsigned mismatch'
309 -wd4706 # Suppress 'assignment within conditional expression'
310 -wd4310 # Suppress 'cast truncates constant value'
311 -wd4701 # Suppress 'potentially uninitialized local variable'
312 -wd4703 # Suppress 'potentially uninitialized local pointer variable'
313 -wd4389 # Suppress 'signed/unsigned mismatch'
314 -wd4611 # Suppress 'interaction between '_setjmp' and C++ object destruction is non-portable'
315 -wd4805 # Suppress 'unsafe mix of type <type> and type <type> in operation'
316 -wd4204 # Suppress 'nonstandard extension used : non-constant aggregate initializer'
Aaron Ballman0cba6422015-07-20 21:14:14 +0000317 -wd4577 # Suppress 'noexcept used with no exception handling mode specified; termination on exception is not guaranteed'
318 -wd4091 # Suppress 'typedef: ignored on left of '' when no variable is declared'
Andrew Kaylor84e55fc2015-04-21 22:29:38 +0000319
Douglas Katzmanb5fb2d42015-06-24 21:46:53 +0000320 # Ideally, we'd like this warning to be enabled, but MSVC 2013 doesn't
Andrew Kaylor84e55fc2015-04-21 22:29:38 +0000321 # support the 'aligned' attribute in the way that clang sources requires (for
Douglas Katzmanb5fb2d42015-06-24 21:46:53 +0000322 # any code that uses the LLVM_ALIGNAS macro), so this is must be disabled to
Andrew Kaylor84e55fc2015-04-21 22:29:38 +0000323 # avoid unwanted alignment warnings.
324 # When we switch to requiring a version of MSVC that supports the 'alignas'
325 # specifier (MSVC 2015?) this warning can be re-enabled.
326 -wd4324 # Suppress 'structure was padded due to __declspec(align())'
327
Michael J. Spencer6d45d832012-06-07 21:34:15 +0000328 # Promoted warnings.
329 -w14062 # Promote 'enumerator in switch of enum is not handled' to level 1 warning.
Michael J. Spenceraeb59e12012-06-07 23:33:56 +0000330
331 # Promoted warnings to errors.
332 -we4238 # Promote 'nonstandard extension used : class rvalue used as lvalue' to error.
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000333 )
334
335 # Enable warnings
336 if (LLVM_ENABLE_WARNINGS)
Greg Bedwell8aa30002015-03-19 16:32:47 +0000337 append("/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
Reid Kleckner69411ce2015-05-19 23:28:23 +0000359 # Disable sized deallocation if the flag is supported. MSVC fails to compile
360 # the operator new overload in User otherwise.
361 check_c_compiler_flag("/WX /Zc:sizedDealloc-" SUPPORTS_SIZED_DEALLOC)
362 append_if(SUPPORTS_SIZED_DEALLOC "/Zc:sizedDealloc-" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
363
Oscar Fuentesab84a7b2011-05-11 13:53:08 +0000364elseif( LLVM_COMPILER_IS_GCC_COMPATIBLE )
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000365 if (LLVM_ENABLE_WARNINGS)
Duncan Sands71de6dc2013-03-25 13:25:34 +0000366 append("-Wall -W -Wno-unused-parameter -Wwrite-strings" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Roman Divacky2d64ef92014-11-13 19:45:27 +0000367 append("-Wcast-qual" CMAKE_CXX_FLAGS)
Edwin Vanec6410842013-01-31 18:05:54 +0000368
369 # Turn off missing field initializer warnings for gcc to avoid noise from
370 # false positives with empty {}. Turn them on otherwise (they're off by
371 # default for clang).
372 check_cxx_compiler_flag("-Wmissing-field-initializers" CXX_SUPPORTS_MISSING_FIELD_INITIALIZERS_FLAG)
373 if (CXX_SUPPORTS_MISSING_FIELD_INITIALIZERS_FLAG)
374 if (CMAKE_COMPILER_IS_GNUCXX)
Duncan Sands71de6dc2013-03-25 13:25:34 +0000375 append("-Wno-missing-field-initializers" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Edwin Vanec6410842013-01-31 18:05:54 +0000376 else()
Duncan Sands71de6dc2013-03-25 13:25:34 +0000377 append("-Wmissing-field-initializers" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Edwin Vanec6410842013-01-31 18:05:54 +0000378 endif()
379 endif()
380
Duncan Sands71de6dc2013-03-25 13:25:34 +0000381 append_if(LLVM_ENABLE_PEDANTIC "-pedantic -Wno-long-long" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Alp Toker00683972014-07-09 03:38:19 +0000382 add_flag_if_supported("-Wcovered-switch-default" COVERED_SWITCH_DEFAULT_FLAG)
Duncan Sands71de6dc2013-03-25 13:25:34 +0000383 append_if(USE_NO_UNINITIALIZED "-Wno-uninitialized" CMAKE_CXX_FLAGS)
384 append_if(USE_NO_MAYBE_UNINITIALIZED "-Wno-maybe-uninitialized" CMAKE_CXX_FLAGS)
Dylan Noblesmith367cef62014-08-23 21:10:56 +0000385
386 # Check if -Wnon-virtual-dtor warns even though the class is marked final.
387 # If it does, don't add it. So it won't be added on clang 3.4 and older.
388 # This also catches cases when -Wnon-virtual-dtor isn't supported by
389 # the compiler at all.
390 set(OLD_CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS})
391 set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} -std=c++11 -Werror=non-virtual-dtor")
392 CHECK_CXX_SOURCE_COMPILES("class base {public: virtual void anchor();protected: ~base();};
393 class derived final : public base { public: ~derived();};
394 int main() { return 0; }"
395 CXX_WONT_WARN_ON_FINAL_NONVIRTUALDTOR)
396 set(CMAKE_REQUIRED_FLAGS ${OLD_CMAKE_REQUIRED_FLAGS})
397 append_if(CXX_WONT_WARN_ON_FINAL_NONVIRTUALDTOR
398 "-Wnon-virtual-dtor" CMAKE_CXX_FLAGS)
Evgeniy Stepanov1b5fd3e2014-05-06 09:46:06 +0000399
400 # Check if -Wcomment is OK with an // comment ending with '\' if the next
401 # line is also a // comment.
402 set(OLD_CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS})
Dylan Noblesmith63f9b572014-08-23 21:10:58 +0000403 set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} -Werror -Wcomment")
Evgeniy Stepanov1b5fd3e2014-05-06 09:46:06 +0000404 CHECK_C_SOURCE_COMPILES("// \\\\\\n//\\nint main() {return 0;}"
405 C_WCOMMENT_ALLOWS_LINE_WRAP)
406 set(CMAKE_REQUIRED_FLAGS ${OLD_CMAKE_REQUIRED_FLAGS})
407 if (NOT C_WCOMMENT_ALLOWS_LINE_WRAP)
408 append("-Wno-comment" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
409 endif()
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000410 endif (LLVM_ENABLE_WARNINGS)
Alexey Samsonovcd083fe2014-03-13 13:08:47 +0000411 append_if(LLVM_ENABLE_WERROR "-Werror" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Alp Toker7099cd72014-07-09 03:39:32 +0000412 if (NOT LLVM_ENABLE_TIMESTAMPS)
413 add_flag_if_supported("-Werror=date-time" WERROR_DATE_TIME)
414 endif ()
Chandler Carruth25eacf72014-03-01 03:16:07 +0000415 if (LLVM_ENABLE_CXX1Y)
416 check_cxx_compiler_flag("-std=c++1y" CXX_SUPPORTS_CXX1Y)
417 append_if(CXX_SUPPORTS_CXX1Y "-std=c++1y" CMAKE_CXX_FLAGS)
418 else()
Arnaud A. de Grandmaisonb697b532013-11-26 10:33:53 +0000419 check_cxx_compiler_flag("-std=c++11" CXX_SUPPORTS_CXX11)
Chandler Carruth25eacf72014-03-01 03:16:07 +0000420 if (CXX_SUPPORTS_CXX11)
Rafael Espindola8b350742014-03-12 20:01:15 +0000421 if (CYGWIN OR MINGW)
422 # MinGW and Cygwin are a bit stricter and lack things like
423 # 'strdup', 'stricmp', etc in c++11 mode.
424 append("-std=gnu++11" CMAKE_CXX_FLAGS)
425 else()
426 append("-std=c++11" CMAKE_CXX_FLAGS)
427 endif()
Chandler Carruth25eacf72014-03-01 03:16:07 +0000428 else()
429 message(FATAL_ERROR "LLVM requires C++11 support but the '-std=c++11' flag isn't supported.")
430 endif()
431 endif()
Richard Smith2b91a7f2014-09-26 22:40:15 +0000432 if (LLVM_ENABLE_MODULES)
433 set(OLD_CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS})
434 set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} -fmodules -fcxx-modules")
435 # Check that we can build code with modules enabled, and that repeatedly
436 # including <cassert> still manages to respect NDEBUG properly.
437 CHECK_CXX_SOURCE_COMPILES("#undef NDEBUG
438 #include <cassert>
439 #define NDEBUG
440 #include <cassert>
441 int main() { assert(this code is not compiled); }"
442 CXX_SUPPORTS_MODULES)
443 set(CMAKE_REQUIRED_FLAGS ${OLD_CMAKE_REQUIRED_FLAGS})
444 if (CXX_SUPPORTS_MODULES)
445 append_if(CXX_SUPPORTS_MODULES "-fmodules" CMAKE_C_FLAGS)
446 append_if(CXX_SUPPORTS_MODULES "-fmodules -fcxx-modules" CMAKE_CXX_FLAGS)
447 else()
448 message(FATAL_ERROR "LLVM_ENABLE_MODULES is not supported by this compiler")
449 endif()
450 endif(LLVM_ENABLE_MODULES)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000451endif( MSVC )
452
Alexey Samsonov75789a22013-03-26 07:49:46 +0000453macro(append_common_sanitizer_flags)
Reid Klecknerd7a568f2015-08-14 16:48:34 +0000454 if (NOT MSVC)
455 # Append -fno-omit-frame-pointer and turn on debug info to get better
456 # stack traces.
457 add_flag_if_supported("-fno-omit-frame-pointer" FNO_OMIT_FRAME_POINTER)
458 if (NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG" AND
Reid Kleckner38b89382015-08-25 16:06:40 +0000459 NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "RELWITHDEBINFO")
Reid Klecknerd7a568f2015-08-14 16:48:34 +0000460 add_flag_if_supported("-gline-tables-only" GLINE_TABLES_ONLY)
461 endif()
462 # Use -O1 even in debug mode, otherwise sanitizers slowdown is too large.
463 if (uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG")
464 add_flag_if_supported("-O1" O1)
465 endif()
466 elseif (CLANG_CL)
467 # Keep frame pointers around.
468 append("/Oy-" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
469 if (CMAKE_LINKER MATCHES "lld-link.exe")
470 # Use DWARF debug info with LLD.
471 append("-gdwarf" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Reid Kleckner38b89382015-08-25 16:06:40 +0000472 # Pass /MANIFEST:NO so that CMake doesn't run mt.exe on our binaries.
473 # Adding manifests with mt.exe breaks LLD's symbol tables. See PR24476.
474 append("/MANIFEST:NO"
475 CMAKE_EXE_LINKER_FLAGS CMAKE_MODULE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS)
Reid Klecknerd7a568f2015-08-14 16:48:34 +0000476 else()
477 # Enable codeview otherwise.
478 append("/Z7" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
479 endif()
480 # Always ask the linker to produce symbols with asan.
481 append("-debug" CMAKE_EXE_LINKER_FLAGS CMAKE_MODULE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS)
Alexey Samsonovf9ab3512013-09-02 09:15:01 +0000482 endif()
Alexey Samsonov75789a22013-03-26 07:49:46 +0000483endmacro()
484
485# Turn on sanitizers if necessary.
486if(LLVM_USE_SANITIZER)
487 if (LLVM_ON_UNIX)
488 if (LLVM_USE_SANITIZER STREQUAL "Address")
489 append_common_sanitizer_flags()
Alp Toker696b4a02014-07-09 06:27:05 +0000490 append("-fsanitize=address" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Alexey Samsonov75789a22013-03-26 07:49:46 +0000491 elseif (LLVM_USE_SANITIZER MATCHES "Memory(WithOrigins)?")
492 append_common_sanitizer_flags()
Alp Toker696b4a02014-07-09 06:27:05 +0000493 append("-fsanitize=memory" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Alexey Samsonov75789a22013-03-26 07:49:46 +0000494 if(LLVM_USE_SANITIZER STREQUAL "MemoryWithOrigins")
Alp Toker696b4a02014-07-09 06:27:05 +0000495 append("-fsanitize-memory-track-origins" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Alexey Samsonov75789a22013-03-26 07:49:46 +0000496 endif()
Alexey Samsonov4ee26752014-08-29 00:50:36 +0000497 elseif (LLVM_USE_SANITIZER STREQUAL "Undefined")
498 append_common_sanitizer_flags()
Justin Bogner8c8fb162015-05-14 04:52:57 +0000499 append("-fsanitize=undefined -fno-sanitize=vptr,function -fno-sanitize-recover=all"
Alexey Samsonov4ee26752014-08-29 00:50:36 +0000500 CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Eric Fiselierbe6705d2014-11-18 21:23:38 +0000501 elseif (LLVM_USE_SANITIZER STREQUAL "Thread")
502 append_common_sanitizer_flags()
503 append("-fsanitize=thread" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Filipe Cabecinhasb36685e2015-02-04 22:33:31 +0000504 elseif (LLVM_USE_SANITIZER STREQUAL "Address;Undefined" OR
505 LLVM_USE_SANITIZER STREQUAL "Undefined;Address")
506 append_common_sanitizer_flags()
Justin Bogner8c8fb162015-05-14 04:52:57 +0000507 append("-fsanitize=address,undefined -fno-sanitize=vptr,function -fno-sanitize-recover=all"
Filipe Cabecinhasb36685e2015-02-04 22:33:31 +0000508 CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Alexey Samsonov75789a22013-03-26 07:49:46 +0000509 else()
Justin Bogner1ded6982015-09-01 05:45:07 +0000510 message(FATAL_ERROR "Unsupported value of LLVM_USE_SANITIZER: ${LLVM_USE_SANITIZER}")
Alexey Samsonov75789a22013-03-26 07:49:46 +0000511 endif()
Reid Klecknerd7a568f2015-08-14 16:48:34 +0000512 elseif(MSVC)
513 if (LLVM_USE_SANITIZER STREQUAL "Address")
514 append_common_sanitizer_flags()
515 append("-fsanitize=address" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
516 else()
Justin Bogner1ded6982015-09-01 05:45:07 +0000517 message(FATAL_ERROR "This sanitizer not yet supported in the MSVC environment: ${LLVM_USE_SANITIZER}")
Reid Klecknerd7a568f2015-08-14 16:48:34 +0000518 endif()
Alexey Samsonov75789a22013-03-26 07:49:46 +0000519 else()
Justin Bogner1ded6982015-09-01 05:45:07 +0000520 message(FATAL_ERROR "LLVM_USE_SANITIZER is not supported on this platform.")
Alexey Samsonov75789a22013-03-26 07:49:46 +0000521 endif()
Kostya Serebryany869b8672015-01-27 17:59:28 +0000522 if (LLVM_USE_SANITIZE_COVERAGE)
Kostya Serebryany1ac80552015-05-08 21:30:55 +0000523 append("-fsanitize-coverage=edge,indirect-calls,8bit-counters,trace-cmp" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Kostya Serebryany869b8672015-01-27 17:59:28 +0000524 endif()
Alexey Samsonov75789a22013-03-26 07:49:46 +0000525endif()
526
Eric Christopher39878062013-07-30 21:44:10 +0000527# Turn on -gsplit-dwarf if requested
528if(LLVM_USE_SPLIT_DWARF)
Peter Collingbournea7d17512014-10-22 19:49:19 +0000529 add_definitions("-gsplit-dwarf")
Eric Christopher39878062013-07-30 21:44:10 +0000530endif()
531
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000532add_llvm_definitions( -D__STDC_CONSTANT_MACROS )
NAKAMURA Takumic5554c92011-10-11 12:51:44 +0000533add_llvm_definitions( -D__STDC_FORMAT_MACROS )
NAKAMURA Takumie63cd192011-10-11 12:51:36 +0000534add_llvm_definitions( -D__STDC_LIMIT_MACROS )
Arnaud A. de Grandmaison916f3cc2013-05-29 20:41:35 +0000535
536# clang doesn't print colored diagnostics when invoked from Ninja
Rafael Espindola6f2564c2013-06-14 19:41:05 +0000537if (UNIX AND
538 CMAKE_CXX_COMPILER_ID STREQUAL "Clang" AND
539 CMAKE_GENERATOR STREQUAL "Ninja")
540 append("-fcolor-diagnostics" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Arnaud A. de Grandmaison916f3cc2013-05-29 20:41:35 +0000541endif()
NAKAMURA Takumibb50bce2014-01-28 09:43:55 +0000542
543# Add flags for add_dead_strip().
544# FIXME: With MSVS, consider compiling with /Gy and linking with /OPT:REF?
545# But MinSizeRel seems to add that automatically, so maybe disable these
546# flags instead if LLVM_NO_DEAD_STRIP is set.
547if(NOT CYGWIN AND NOT WIN32)
Rafael Espindola9c5701f2015-04-06 14:34:43 +0000548 if(NOT ${CMAKE_SYSTEM_NAME} MATCHES "Darwin" AND
549 NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG")
Alexey Samsonov482beff2014-02-04 08:15:46 +0000550 check_c_compiler_flag("-Werror -fno-function-sections" C_SUPPORTS_FNO_FUNCTION_SECTIONS)
551 if (C_SUPPORTS_FNO_FUNCTION_SECTIONS)
552 # Don't add -ffunction-section if it can be disabled with -fno-function-sections.
553 # Doing so will break sanitizers.
Alp Toker00683972014-07-09 03:38:19 +0000554 add_flag_if_supported("-ffunction-sections" FFUNCTION_SECTIONS)
Evgeniy Stepanovc7b7e252014-02-03 13:57:09 +0000555 endif()
Alp Toker00683972014-07-09 03:38:19 +0000556 add_flag_if_supported("-fdata-sections" FDATA_SECTIONS)
NAKAMURA Takumibb50bce2014-01-28 09:43:55 +0000557 endif()
558endif()
NAKAMURA Takumia679f432014-01-28 09:44:06 +0000559
NAKAMURA Takumif8161232014-03-16 13:51:24 +0000560if(CYGWIN OR MINGW)
561 # Prune --out-implib from executables. It doesn't make sense even
562 # with --export-all-symbols.
563 string(REGEX REPLACE "-Wl,--out-implib,[^ ]+ " " "
564 CMAKE_C_LINK_EXECUTABLE "${CMAKE_C_LINK_EXECUTABLE}")
565 string(REGEX REPLACE "-Wl,--out-implib,[^ ]+ " " "
566 CMAKE_CXX_LINK_EXECUTABLE "${CMAKE_CXX_LINK_EXECUTABLE}")
567endif()
568
NAKAMURA Takumia679f432014-01-28 09:44:06 +0000569if(MSVC)
570 # Remove flags here, for exceptions and RTTI.
NAKAMURA Takumiac624642014-01-31 17:32:36 +0000571 # Each target property or source property should be responsible to control
572 # them.
NAKAMURA Takumia679f432014-01-28 09:44:06 +0000573 # CL.EXE complains to override flags like "/GR /GR-".
574 string(REGEX REPLACE "(^| ) */EH[-cs]+ *( |$)" "\\1 \\2" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
575 string(REGEX REPLACE "(^| ) */GR-? *( |$)" "\\1 \\2" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
576endif()
NAKAMURA Takumi8d7a1732014-07-04 04:45:40 +0000577
Dan Liewa5bdc842014-07-22 15:41:18 +0000578# Provide public options to globally control RTTI and EH
579option(LLVM_ENABLE_EH "Enable Exception handling" OFF)
580option(LLVM_ENABLE_RTTI "Enable run time type information" OFF)
581if(LLVM_ENABLE_EH AND NOT LLVM_ENABLE_RTTI)
582 message(FATAL_ERROR "Exception handling requires RTTI. You must set LLVM_ENABLE_RTTI to ON")
583endif()
584
NAKAMURA Takumi8d7a1732014-07-04 04:45:40 +0000585# Plugin support
586# FIXME: Make this configurable.
587if(WIN32 OR CYGWIN)
NAKAMURA Takumib5bb1e22014-07-13 13:47:37 +0000588 if(BUILD_SHARED_LIBS)
589 set(LLVM_ENABLE_PLUGINS ON)
590 else()
591 set(LLVM_ENABLE_PLUGINS OFF)
592 endif()
NAKAMURA Takumi8d7a1732014-07-04 04:45:40 +0000593else()
594 set(LLVM_ENABLE_PLUGINS ON)
595endif()