blob: 7687a4663e4408aa129e4a4e9ce70831af0f6dea [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)
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
Bob Haarmanf947d8d2017-03-01 19:22:18 +000014if(CMAKE_LINKER MATCHES "lld-link.exe" OR (WIN32 AND LLVM_USE_LINKER STREQUAL "lld"))
15 set(LINKER_IS_LLD_LINK TRUE)
16else()
17 set(LINKER_IS_LLD_LINK FALSE)
18endif()
19
Bob Haarman894f8df2017-04-28 20:17:15 +000020set(LLVM_ENABLE_LTO OFF CACHE STRING "Build LLVM with LTO. May be specified as Thin or Full to use a particular kind of LTO")
21string(TOUPPER "${LLVM_ENABLE_LTO}" uppercase_LLVM_ENABLE_LTO)
22
Chris Bienemand8ec4422017-02-07 19:06:22 +000023# Ninja Job Pool support
24# The following only works with the Ninja generator in CMake >= 3.0.
25set(LLVM_PARALLEL_COMPILE_JOBS "" CACHE STRING
26 "Define the maximum number of concurrent compilation jobs.")
27if(LLVM_PARALLEL_COMPILE_JOBS)
28 if(NOT CMAKE_MAKE_PROGRAM MATCHES "ninja")
29 message(WARNING "Job pooling is only available with Ninja generators.")
30 else()
31 set_property(GLOBAL APPEND PROPERTY JOB_POOLS compile_job_pool=${LLVM_PARALLEL_COMPILE_JOBS})
32 set(CMAKE_JOB_POOL_COMPILE compile_job_pool)
33 endif()
34endif()
35
36set(LLVM_PARALLEL_LINK_JOBS "" CACHE STRING
37 "Define the maximum number of concurrent link jobs.")
Bob Haarman894f8df2017-04-28 20:17:15 +000038if(CMAKE_MAKE_PROGRAM MATCHES "ninja")
39 if(NOT LLVM_PARALLEL_LINK_JOBS AND uppercase_LLVM_ENABLE_LTO STREQUAL "THIN")
40 message(STATUS "ThinLTO provides its own parallel linking - limiting parallel link jobs to 2.")
41 set(LLVM_PARALLEL_LINK_JOBS "2")
42 endif()
43 if(LLVM_PARALLEL_LINK_JOBS)
Chris Bienemand8ec4422017-02-07 19:06:22 +000044 set_property(GLOBAL APPEND PROPERTY JOB_POOLS link_job_pool=${LLVM_PARALLEL_LINK_JOBS})
45 set(CMAKE_JOB_POOL_LINK link_job_pool)
46 endif()
Bob Haarman894f8df2017-04-28 20:17:15 +000047elseif(LLVM_PARALLEL_LINK_JOBS)
48 message(WARNING "Job pooling is only available with Ninja generators.")
Chris Bienemand8ec4422017-02-07 19:06:22 +000049endif()
50
Bob Haarmanf947d8d2017-03-01 19:22:18 +000051if (LINKER_IS_LLD_LINK)
Reid Kleckner841e5a02016-01-22 23:27:13 +000052 # Pass /MANIFEST:NO so that CMake doesn't run mt.exe on our binaries. Adding
53 # manifests with mt.exe breaks LLD's symbol tables and takes as much time as
54 # the link. See PR24476.
55 append("/MANIFEST:NO"
56 CMAKE_EXE_LINKER_FLAGS CMAKE_MODULE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS)
57endif()
58
Oscar Fuentesf4202ba2011-02-03 20:57:36 +000059if( LLVM_ENABLE_ASSERTIONS )
60 # MSVC doesn't like _DEBUG on release builds. See PR 4379.
61 if( NOT MSVC )
62 add_definitions( -D_DEBUG )
63 endif()
Duncan Sands80f122f2013-07-17 09:34:51 +000064 # On non-Debug builds cmake automatically defines NDEBUG, so we
Oscar Fuentesf4202ba2011-02-03 20:57:36 +000065 # explicitly undefine it:
Duncan Sands80f122f2013-07-17 09:34:51 +000066 if( NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG" )
Oscar Fuentesf4202ba2011-02-03 20:57:36 +000067 add_definitions( -UNDEBUG )
Reid Klecknerc1c01d52013-04-07 01:45:01 +000068 # Also remove /D NDEBUG to avoid MSVC warnings about conflicting defines.
Reid Kleckner472e6b42014-05-19 21:13:41 +000069 foreach (flags_var_to_scrub
70 CMAKE_CXX_FLAGS_RELEASE
71 CMAKE_CXX_FLAGS_RELWITHDEBINFO
72 CMAKE_CXX_FLAGS_MINSIZEREL
73 CMAKE_C_FLAGS_RELEASE
74 CMAKE_C_FLAGS_RELWITHDEBINFO
75 CMAKE_C_FLAGS_MINSIZEREL)
76 string (REGEX REPLACE "(^| )[/-]D *NDEBUG($| )" " "
77 "${flags_var_to_scrub}" "${${flags_var_to_scrub}}")
78 endforeach()
Oscar Fuentesf4202ba2011-02-03 20:57:36 +000079 endif()
Oscar Fuentesf4202ba2011-02-03 20:57:36 +000080endif()
81
Filipe Cabecinhas0da99372016-04-29 15:22:48 +000082if(LLVM_ENABLE_EXPENSIVE_CHECKS)
83 add_definitions(-DEXPENSIVE_CHECKS)
84 add_definitions(-D_GLIBCXX_DEBUG)
85endif()
86
Sanjoy Das8ce64992015-03-26 19:25:01 +000087string(TOUPPER "${LLVM_ABI_BREAKING_CHECKS}" uppercase_LLVM_ABI_BREAKING_CHECKS)
88
89if( uppercase_LLVM_ABI_BREAKING_CHECKS STREQUAL "WITH_ASSERTS" )
90 if( LLVM_ENABLE_ASSERTIONS )
91 set( LLVM_ENABLE_ABI_BREAKING_CHECKS 1 )
92 endif()
93elseif( uppercase_LLVM_ABI_BREAKING_CHECKS STREQUAL "FORCE_ON" )
94 set( LLVM_ENABLE_ABI_BREAKING_CHECKS 1 )
95elseif( uppercase_LLVM_ABI_BREAKING_CHECKS STREQUAL "FORCE_OFF" )
96 # We don't need to do anything special to turn off ABI breaking checks.
Eric Fiselier8e2f0a82015-05-12 22:49:18 +000097elseif( NOT DEFINED LLVM_ABI_BREAKING_CHECKS )
98 # Treat LLVM_ABI_BREAKING_CHECKS like "FORCE_OFF" when it has not been
99 # defined.
Sanjoy Das8ce64992015-03-26 19:25:01 +0000100else()
101 message(FATAL_ERROR "Unknown value for LLVM_ABI_BREAKING_CHECKS: \"${LLVM_ABI_BREAKING_CHECKS}\"!")
102endif()
103
Mandeep Singh Grang70752452017-06-06 00:36:09 +0000104if( LLVM_REVERSE_ITERATION )
105 set( LLVM_ENABLE_REVERSE_ITERATION 1 )
106endif()
107
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000108if(WIN32)
Nico Weberc27118d2013-12-28 23:31:44 +0000109 set(LLVM_HAVE_LINK_VERSION_SCRIPT 0)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000110 if(CYGWIN)
111 set(LLVM_ON_WIN32 0)
112 set(LLVM_ON_UNIX 1)
113 else(CYGWIN)
114 set(LLVM_ON_WIN32 1)
115 set(LLVM_ON_UNIX 0)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000116 endif(CYGWIN)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000117else(WIN32)
Petr Hosek87f13432018-05-03 01:38:49 +0000118 if(FUCHSIA OR UNIX)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000119 set(LLVM_ON_WIN32 0)
120 set(LLVM_ON_UNIX 1)
Chandler Carruth2aff7502016-07-19 22:46:39 +0000121 if(APPLE OR ${CMAKE_SYSTEM_NAME} MATCHES "AIX")
Nico Weberc27118d2013-12-28 23:31:44 +0000122 set(LLVM_HAVE_LINK_VERSION_SCRIPT 0)
Chandler Carruth2aff7502016-07-19 22:46:39 +0000123 else()
Nico Weberc27118d2013-12-28 23:31:44 +0000124 set(LLVM_HAVE_LINK_VERSION_SCRIPT 1)
Chandler Carruth2aff7502016-07-19 22:46:39 +0000125 endif()
Petr Hosek87f13432018-05-03 01:38:49 +0000126 else(FUCHSIA OR UNIX)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000127 MESSAGE(SEND_ERROR "Unable to determine platform")
Petr Hosek87f13432018-05-03 01:38:49 +0000128 endif(FUCHSIA OR UNIX)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000129endif(WIN32)
130
Alp Tokerc0b7bb52014-01-08 11:10:24 +0000131set(EXEEXT ${CMAKE_EXECUTABLE_SUFFIX})
132set(LTDL_SHLIB_EXT ${CMAKE_SHARED_LIBRARY_SUFFIX})
NAKAMURA Takumi92d65802014-02-13 11:19:00 +0000133
134# We use *.dylib rather than *.so on darwin.
135set(LLVM_PLUGIN_EXT ${CMAKE_SHARED_LIBRARY_SUFFIX})
Alp Tokerc0b7bb52014-01-08 11:10:24 +0000136
NAKAMURA Takumi58f6e742014-02-13 11:19:11 +0000137if(APPLE)
Petr Hoseke4521c32016-11-17 20:22:49 +0000138 if(LLVM_ENABLE_LLD AND LLVM_ENABLE_LTO)
139 message(FATAL_ERROR "lld does not support LTO on Darwin")
140 endif()
NAKAMURA Takumi58f6e742014-02-13 11:19:11 +0000141 # Darwin-specific linker flags for loadable modules.
142 set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,-flat_namespace -Wl,-undefined -Wl,suppress")
143endif()
144
Rafael Espindolabb5d09f2015-01-22 14:06:51 +0000145# Pass -Wl,-z,defs. This makes sure all symbols are defined. Otherwise a DSO
146# build might work on ELF but fail on MachO/COFF.
Yaron Keren5519ad32015-07-23 08:06:12 +0000147if(NOT (${CMAKE_SYSTEM_NAME} MATCHES "Darwin" OR WIN32 OR CYGWIN OR
Yaron Kerencf24bbb2015-11-21 06:33:54 +0000148 ${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD" OR
149 ${CMAKE_SYSTEM_NAME} MATCHES "OpenBSD") AND
Rafael Espindola19b53842015-01-22 20:57:30 +0000150 NOT LLVM_USE_SANITIZER)
Rafael Espindolabb5d09f2015-01-22 14:06:51 +0000151 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,-z,defs")
152endif()
153
Michal Gorny8eaa8ec2017-11-27 22:23:09 +0000154# Pass -Wl,-z,nodelete. This makes sure our shared libraries are not unloaded
155# by dlclose(). We need that since the CLI API relies on cross-references
156# between global objects which became horribly broken when one of the libraries
157# is unloaded.
158if(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
159 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,-z,nodelete")
160endif()
161
Rafael Espindolabb5d09f2015-01-22 14:06:51 +0000162
Duncan Sands71de6dc2013-03-25 13:25:34 +0000163function(append value)
164 foreach(variable ${ARGN})
Alexey Samsonov67065782013-03-13 20:50:23 +0000165 set(${variable} "${${variable}} ${value}" PARENT_SCOPE)
Duncan Sands71de6dc2013-03-25 13:25:34 +0000166 endforeach(variable)
167endfunction()
168
169function(append_if condition value)
170 if (${condition})
171 foreach(variable ${ARGN})
172 set(${variable} "${${variable}} ${value}" PARENT_SCOPE)
173 endforeach(variable)
Alexey Samsonov67065782013-03-13 20:50:23 +0000174 endif()
175endfunction()
176
Alp Toker00683972014-07-09 03:38:19 +0000177macro(add_flag_if_supported flag name)
178 check_c_compiler_flag("-Werror ${flag}" "C_SUPPORTS_${name}")
179 append_if("C_SUPPORTS_${name}" "${flag}" CMAKE_C_FLAGS)
180 check_cxx_compiler_flag("-Werror ${flag}" "CXX_SUPPORTS_${name}")
181 append_if("CXX_SUPPORTS_${name}" "${flag}" CMAKE_CXX_FLAGS)
Alexey Samsonov75789a22013-03-26 07:49:46 +0000182endmacro()
183
Alp Toker00683972014-07-09 03:38:19 +0000184function(add_flag_or_print_warning flag name)
185 check_c_compiler_flag("-Werror ${flag}" "C_SUPPORTS_${name}")
186 check_cxx_compiler_flag("-Werror ${flag}" "CXX_SUPPORTS_${name}")
Richard Smithca9ae102014-09-26 21:35:48 +0000187 if (C_SUPPORTS_${name} AND CXX_SUPPORTS_${name})
Alp Toker00683972014-07-09 03:38:19 +0000188 message(STATUS "Building with ${flag}")
189 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${flag}" PARENT_SCOPE)
190 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${flag}" PARENT_SCOPE)
Douglas Katzman280ee912015-07-28 14:43:53 +0000191 set(CMAKE_ASM_FLAGS "${CMAKE_ASM_FLAGS} ${flag}" PARENT_SCOPE)
Alp Toker00683972014-07-09 03:38:19 +0000192 else()
193 message(WARNING "${flag} is not supported.")
194 endif()
195endfunction()
196
Mehdi Amini284ac3c92017-01-15 03:21:30 +0000197if( LLVM_ENABLE_LLD )
198 if ( LLVM_USE_LINKER )
199 message(FATAL_ERROR "LLVM_ENABLE_LLD and LLVM_USE_LINKER can't be set at the same time")
200 endif()
201 set(LLVM_USE_LINKER "lld")
202endif()
203
204if( LLVM_USE_LINKER )
Rui Ueyamab7da57c2017-10-30 21:19:54 +0000205 set(OLD_CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS})
206 set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} -fuse-ld=${LLVM_USE_LINKER}")
207 check_cxx_source_compiles("int main() { return 0; }" CXX_SUPPORTS_CUSTOM_LINKER)
Mehdi Amini284ac3c92017-01-15 03:21:30 +0000208 if ( NOT CXX_SUPPORTS_CUSTOM_LINKER )
209 message(FATAL_ERROR "Host compiler does not support '-fuse-ld=${LLVM_USE_LINKER}'")
210 endif()
Rui Ueyamab7da57c2017-10-30 21:19:54 +0000211 set(CMAKE_REQUIRED_FLAGS ${OLD_CMAKE_REQUIRED_FLAGS})
Mehdi Amini284ac3c92017-01-15 03:21:30 +0000212 append("-fuse-ld=${LLVM_USE_LINKER}"
Eugene Zelenkobbbf7b52016-07-29 00:46:13 +0000213 CMAKE_EXE_LINKER_FLAGS CMAKE_MODULE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS)
214endif()
215
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000216if( LLVM_ENABLE_PIC )
217 if( XCODE )
218 # Xcode has -mdynamic-no-pic on by default, which overrides -fPIC. I don't
219 # know how to disable this, so just force ENABLE_PIC off for now.
220 message(WARNING "-fPIC not supported with Xcode.")
NAKAMURA Takumi1b745d02011-12-16 06:21:08 +0000221 elseif( WIN32 OR CYGWIN)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000222 # On Windows all code is PIC. MinGW warns if -fPIC is used.
223 else()
Alp Toker00683972014-07-09 03:38:19 +0000224 add_flag_or_print_warning("-fPIC" FPIC)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000225 endif()
226endif()
227
Chris Bieneman6b43f1f2015-11-18 22:49:26 +0000228if(NOT WIN32 AND NOT CYGWIN)
229 # MinGW warns if -fvisibility-inlines-hidden is used.
230 check_cxx_compiler_flag("-fvisibility-inlines-hidden" SUPPORTS_FVISIBILITY_INLINES_HIDDEN_FLAG)
231 append_if(SUPPORTS_FVISIBILITY_INLINES_HIDDEN_FLAG "-fvisibility-inlines-hidden" CMAKE_CXX_FLAGS)
232endif()
233
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000234if( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
235 # TODO: support other platforms and toolchains.
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000236 if( LLVM_BUILD_32_BITS )
237 message(STATUS "Building 32 bits executables and libraries.")
NAKAMURA Takumi500b0a42016-06-06 05:54:55 +0000238 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -m32")
239 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -m32")
Tim Northoverf6e29c42012-05-23 18:42:02 +0000240 set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -m32")
241 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -m32")
Tobias Grosserb32ad402012-06-08 09:41:23 +0000242 set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -m32")
NAKAMURA Takumi965429e2017-11-04 06:03:29 +0000243
244 # FIXME: CMAKE_SIZEOF_VOID_P is still 8
245 add_definitions(-D_LARGEFILE_SOURCE)
246 add_definitions(-D_FILE_OFFSET_BITS=64)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000247 endif( LLVM_BUILD_32_BITS )
248endif( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
249
Nitesh Jain0032fae2017-04-24 10:36:46 +0000250# If building on a GNU specific 32-bit system, make sure off_t is 64 bits
Eugene Zemtsov66395c92017-09-01 23:12:43 +0000251# so that off_t can stored offset > 2GB.
252# Android until version N (API 24) doesn't support it.
253if (ANDROID AND (ANDROID_NATIVE_API_LEVEL LESS 24))
254 set(LLVM_FORCE_SMALLFILE_FOR_ANDROID TRUE)
255endif()
256if( CMAKE_SIZEOF_VOID_P EQUAL 4 AND NOT LLVM_FORCE_SMALLFILE_FOR_ANDROID)
NAKAMURA Takumi965429e2017-11-04 06:03:29 +0000257 # FIXME: It isn't handled in LLVM_BUILD_32_BITS.
Nitesh Jain0032fae2017-04-24 10:36:46 +0000258 add_definitions( -D_LARGEFILE_SOURCE )
259 add_definitions( -D_FILE_OFFSET_BITS=64 )
260endif()
261
Ted Kremenek68af8452014-03-13 06:37:28 +0000262if( XCODE )
263 # For Xcode enable several build settings that correspond to
264 # many warnings that are on by default in Clang but are
265 # not enabled for historical reasons. For versions of Xcode
266 # that do not support these options they will simply
267 # be ignored.
268 set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_ABOUT_RETURN_TYPE "YES")
269 set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_ABOUT_MISSING_NEWLINE "YES")
270 set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_UNUSED_VALUE "YES")
271 set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_UNUSED_VARIABLE "YES")
272 set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_SIGN_COMPARE "YES")
273 set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_UNUSED_FUNCTION "YES")
274 set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED "YES")
275 set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_HIDDEN_VIRTUAL_FUNCTIONS "YES")
276 set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_UNINITIALIZED_AUTOS "YES")
277 set(CMAKE_XCODE_ATTRIBUTE_CLANG_WARN_BOOL_CONVERSION "YES")
278 set(CMAKE_XCODE_ATTRIBUTE_CLANG_WARN_EMPTY_BODY "YES")
279 set(CMAKE_XCODE_ATTRIBUTE_CLANG_WARN_ENUM_CONVERSION "YES")
280 set(CMAKE_XCODE_ATTRIBUTE_CLANG_WARN_INT_CONVERSION "YES")
281 set(CMAKE_XCODE_ATTRIBUTE_CLANG_WARN_CONSTANT_CONVERSION "YES")
282 set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_NON_VIRTUAL_DESTRUCTOR "YES")
283endif()
284
NAKAMURA Takumia83601d2012-04-21 14:50:56 +0000285# On Win32 using MS tools, provide an option to set the number of parallel jobs
286# to use.
NAKAMURA Takumi75bfe692012-04-21 14:51:02 +0000287if( MSVC_IDE )
Oscar Fuentes318c3f12011-03-02 17:47:37 +0000288 set(LLVM_COMPILER_JOBS "0" CACHE STRING
289 "Number of parallel compiler jobs. 0 means use all processors. Default is 0.")
290 if( NOT LLVM_COMPILER_JOBS STREQUAL "1" )
291 if( LLVM_COMPILER_JOBS STREQUAL "0" )
Serge Pavlov23be9452017-03-21 04:03:24 +0000292 add_definitions( /MP )
Oscar Fuentes318c3f12011-03-02 17:47:37 +0000293 else()
Yaron Kerene4855112014-03-25 09:34:20 +0000294 message(STATUS "Number of parallel compiler jobs set to " ${LLVM_COMPILER_JOBS})
Serge Pavlov23be9452017-03-21 04:03:24 +0000295 add_definitions( /MP${LLVM_COMPILER_JOBS} )
Oscar Fuentes318c3f12011-03-02 17:47:37 +0000296 endif()
297 else()
298 message(STATUS "Parallel compilation disabled")
299 endif()
300endif()
301
NAKAMURA Takumi96a6c492016-08-31 22:43:23 +0000302# set stack reserved size to ~10MB
303if(MSVC)
304 # CMake previously automatically set this value for MSVC builds, but the
305 # behavior was changed in CMake 2.8.11 (Issue 12437) to use the MSVC default
306 # value (1 MB) which is not enough for us in tasks such as parsing recursive
307 # C++ templates in Clang.
308 set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /STACK:10000000")
309elseif(MINGW) # FIXME: Also cygwin?
310 set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,--stack,16777216")
Reid Klecknerc2b56632016-12-22 19:12:14 +0000311
312 # Pass -mbig-obj to mingw gas on Win64. COFF has a 2**16 section limit, and
313 # on Win64, every COMDAT function creates at least 3 sections: .text, .pdata,
314 # and .xdata.
315 if (CMAKE_SIZEOF_VOID_P EQUAL 8)
316 append("-Wa,-mbig-obj" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
317 endif()
NAKAMURA Takumi96a6c492016-08-31 22:43:23 +0000318endif()
319
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000320if( MSVC )
Yaron Keren528d8d62015-08-21 17:31:03 +0000321 if( CMAKE_CXX_COMPILER_VERSION VERSION_LESS 19.0 )
322 # For MSVC 2013, disable iterator null pointer checking in debug mode,
323 # especially so std::equal(nullptr, nullptr, nullptr) will not assert.
Serge Pavlov23be9452017-03-21 04:03:24 +0000324 add_definitions("-D_DEBUG_POINTER_IMPL=")
Yaron Keren528d8d62015-08-21 17:31:03 +0000325 endif()
Eugene Zemtsov66395c92017-09-01 23:12:43 +0000326
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000327 include(ChooseMSVCCRT)
328
Yaron Kerene4855112014-03-25 09:34:20 +0000329 if( MSVC11 )
Serge Pavlov23be9452017-03-21 04:03:24 +0000330 add_definitions(-D_VARIADIC_MAX=10)
Michael J. Spencer35145f82012-03-01 22:42:52 +0000331 endif()
Eugene Zemtsov66395c92017-09-01 23:12:43 +0000332
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000333 # Add definitions that make MSVC much less annoying.
Serge Pavlov23be9452017-03-21 04:03:24 +0000334 add_definitions(
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000335 # For some reason MS wants to deprecate a bunch of standard functions...
336 -D_CRT_SECURE_NO_DEPRECATE
337 -D_CRT_SECURE_NO_WARNINGS
338 -D_CRT_NONSTDC_NO_DEPRECATE
339 -D_CRT_NONSTDC_NO_WARNINGS
340 -D_SCL_SECURE_NO_DEPRECATE
341 -D_SCL_SECURE_NO_WARNINGS
Greg Bedwell8aa30002015-03-19 16:32:47 +0000342 )
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000343
Aaron Ballman2cd2a182016-06-23 19:02:09 +0000344 # Tell MSVC to use the Unicode version of the Win32 APIs instead of ANSI.
Serge Pavlov23be9452017-03-21 04:03:24 +0000345 add_definitions(
Aaron Ballman2cd2a182016-06-23 19:02:09 +0000346 -DUNICODE
347 -D_UNICODE
348 )
349
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000350 if (LLVM_ENABLE_WERROR)
Reid Kleckner9f3585d2017-03-16 17:05:16 +0000351 append("/WX" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000352 endif (LLVM_ENABLE_WERROR)
Greg Bedwell8aa30002015-03-19 16:32:47 +0000353
Rafael Espindolaf8465572015-08-12 17:09:25 +0000354 append("/Zc:inline" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
355
Reid Klecknerb97ff922018-02-15 21:25:23 +0000356 # Allow users to request PDBs in release mode. CMake offeres the
357 # RelWithDebInfo configuration, but it uses different optimization settings
358 # (/Ob1 vs /Ob2 or -O2 vs -O3). LLVM provides this flag so that users can get
359 # PDBs without changing codegen.
360 option(LLVM_ENABLE_PDB OFF)
361 if (LLVM_ENABLE_PDB AND uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE")
Zachary Turner876dc712018-02-07 19:37:52 +0000362 append("/Zi" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Reid Klecknerb97ff922018-02-15 21:25:23 +0000363 # /DEBUG disables linker GC and ICF, but we want those in Release mode.
364 append("/DEBUG /OPT:REF /OPT:ICF"
365 CMAKE_EXE_LINKER_FLAGS CMAKE_MODULE_LINKER_FLAGS
366 CMAKE_SHARED_LINKER_FLAGS)
367 endif()
Zachary Turner876dc712018-02-07 19:37:52 +0000368
Aaron Ballmance625e82016-01-25 14:17:39 +0000369 # /Zc:strictStrings is incompatible with VS12's (Visual Studio 2013's)
370 # debug mode headers. Instead of only enabling them in VS2013's debug mode,
371 # we'll just enable them for Visual Studio 2015 (VS 14, MSVC_VERSION 1900)
372 # and up.
373 if (NOT (MSVC_VERSION LESS 1900))
374 # Disable string literal const->non-const type conversion.
375 # "When specified, the compiler requires strict const-qualification
376 # conformance for pointers initialized by using string literals."
377 append("/Zc:strictStrings" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
378 endif(NOT (MSVC_VERSION LESS 1900))
379
380 # "Generate Intrinsic Functions".
381 append("/Oi" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
382
383 # "Enforce type conversion rules".
384 append("/Zc:rvalueCast" CMAKE_CXX_FLAGS)
385
Bob Haarmanf947d8d2017-03-01 19:22:18 +0000386 if (CMAKE_CXX_COMPILER_ID MATCHES "Clang" AND NOT LLVM_ENABLE_LTO)
Nico Weber891419a2016-01-06 19:05:19 +0000387 # clang-cl and cl by default produce non-deterministic binaries because
388 # link.exe /incremental requires a timestamp in the .obj file. clang-cl
Chris Bieneman62de33c2016-05-05 19:57:03 +0000389 # has the flag /Brepro to force deterministic binaries. We want to pass that
Bob Haarmanf947d8d2017-03-01 19:22:18 +0000390 # whenever you're building with clang unless you're passing /incremental
391 # or using LTO (/Brepro with LTO would result in a warning about the flag
392 # being unused, because we're not generating object files).
Nico Weber891419a2016-01-06 19:05:19 +0000393 # This checks CMAKE_CXX_COMPILER_ID in addition to check_cxx_compiler_flag()
394 # because cl.exe does not emit an error on flags it doesn't understand,
395 # letting check_cxx_compiler_flag() claim it understands all flags.
396 check_cxx_compiler_flag("/Brepro" SUPPORTS_BREPRO)
Nico Weber891419a2016-01-06 19:05:19 +0000397 if (SUPPORTS_BREPRO)
398 # Check if /INCREMENTAL is passed to the linker and complain that it
399 # won't work with /Brepro.
400 string(TOUPPER "${CMAKE_EXE_LINKER_FLAGS}" upper_exe_flags)
401 string(TOUPPER "${CMAKE_MODULE_LINKER_FLAGS}" upper_module_flags)
402 string(TOUPPER "${CMAKE_SHARED_LINKER_FLAGS}" upper_shared_flags)
403
Chris Bieneman62de33c2016-05-05 19:57:03 +0000404 string(FIND "${upper_exe_flags} ${upper_module_flags} ${upper_shared_flags}"
405 "/INCREMENTAL" linker_flag_idx)
Eugene Zemtsov66395c92017-09-01 23:12:43 +0000406
Chris Bieneman62de33c2016-05-05 19:57:03 +0000407 if (${linker_flag_idx} GREATER -1)
408 message(WARNING "/Brepro not compatible with /INCREMENTAL linking - builds will be non-deterministic")
409 else()
410 append("/Brepro" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Nico Weber891419a2016-01-06 19:05:19 +0000411 endif()
412 endif()
413 endif()
414
Oscar Fuentesab84a7b2011-05-11 13:53:08 +0000415elseif( LLVM_COMPILER_IS_GCC_COMPATIBLE )
Alexey Samsonovcd083fe2014-03-13 13:08:47 +0000416 append_if(LLVM_ENABLE_WERROR "-Werror" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Petr Hosekb88afb32017-07-26 23:49:18 +0000417 append_if(LLVM_ENABLE_WERROR "-Wno-error" CMAKE_REQUIRED_FLAGS)
Chris Bieneman62de33c2016-05-05 19:57:03 +0000418 add_flag_if_supported("-Werror=date-time" WERROR_DATE_TIME)
Juergen Ributzkac0fc2192017-08-29 00:34:56 +0000419 add_flag_if_supported("-Werror=unguarded-availability-new" WERROR_UNGUARDED_AVAILABILITY_NEW)
Chandler Carruth25eacf72014-03-01 03:16:07 +0000420 if (LLVM_ENABLE_CXX1Y)
421 check_cxx_compiler_flag("-std=c++1y" CXX_SUPPORTS_CXX1Y)
422 append_if(CXX_SUPPORTS_CXX1Y "-std=c++1y" CMAKE_CXX_FLAGS)
Vassil Vassilevd3352332017-06-09 22:09:57 +0000423 elseif(LLVM_ENABLE_CXX1Z)
424 check_cxx_compiler_flag("-std=c++1z" CXX_SUPPORTS_CXX1Z)
425 append_if(CXX_SUPPORTS_CXX1Z "-std=c++1z" CMAKE_CXX_FLAGS)
Chandler Carruth25eacf72014-03-01 03:16:07 +0000426 else()
Arnaud A. de Grandmaisonb697b532013-11-26 10:33:53 +0000427 check_cxx_compiler_flag("-std=c++11" CXX_SUPPORTS_CXX11)
Chandler Carruth25eacf72014-03-01 03:16:07 +0000428 if (CXX_SUPPORTS_CXX11)
Rafael Espindola8b350742014-03-12 20:01:15 +0000429 if (CYGWIN OR MINGW)
430 # MinGW and Cygwin are a bit stricter and lack things like
431 # 'strdup', 'stricmp', etc in c++11 mode.
432 append("-std=gnu++11" CMAKE_CXX_FLAGS)
433 else()
434 append("-std=c++11" CMAKE_CXX_FLAGS)
435 endif()
Chandler Carruth25eacf72014-03-01 03:16:07 +0000436 else()
437 message(FATAL_ERROR "LLVM requires C++11 support but the '-std=c++11' flag isn't supported.")
438 endif()
439 endif()
Richard Smithcdbecda2016-04-17 20:58:01 +0000440 if (LLVM_ENABLE_MODULES)
441 set(OLD_CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS})
Vassil Vassilev71e9e442016-09-29 08:14:06 +0000442 set(module_flags "-fmodules -fmodules-cache-path=${PROJECT_BINARY_DIR}/module.cache")
Adrian Prantl48e7cbd2016-06-30 01:46:49 +0000443 if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
444 # On Darwin -fmodules does not imply -fcxx-modules.
445 set(module_flags "${module_flags} -fcxx-modules")
446 endif()
447 if (LLVM_ENABLE_LOCAL_SUBMODULE_VISIBILITY)
Adrian Prantl8a75ee92016-06-30 15:58:36 +0000448 set(module_flags "${module_flags} -Xclang -fmodules-local-submodule-visibility")
Adrian Prantl48e7cbd2016-06-30 01:46:49 +0000449 endif()
Adrian Prantl9f4ef632016-06-30 17:15:44 +0000450 if (LLVM_ENABLE_MODULE_DEBUGGING AND
451 ((uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG") OR
452 (uppercase_CMAKE_BUILD_TYPE STREQUAL "RELWITHDEBINFO")))
453 set(module_flags "${module_flags} -gmodules")
454 endif()
Adrian Prantl48e7cbd2016-06-30 01:46:49 +0000455 set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} ${module_flags}")
456
Richard Smithcdbecda2016-04-17 20:58:01 +0000457 # Check that we can build code with modules enabled, and that repeatedly
458 # including <cassert> still manages to respect NDEBUG properly.
459 CHECK_CXX_SOURCE_COMPILES("#undef NDEBUG
460 #include <cassert>
461 #define NDEBUG
462 #include <cassert>
463 int main() { assert(this code is not compiled); }"
464 CXX_SUPPORTS_MODULES)
465 set(CMAKE_REQUIRED_FLAGS ${OLD_CMAKE_REQUIRED_FLAGS})
466 if (CXX_SUPPORTS_MODULES)
Adrian Prantl48e7cbd2016-06-30 01:46:49 +0000467 append("${module_flags}" CMAKE_CXX_FLAGS)
Richard Smithcdbecda2016-04-17 20:58:01 +0000468 else()
469 message(FATAL_ERROR "LLVM_ENABLE_MODULES is not supported by this compiler")
470 endif()
471 endif(LLVM_ENABLE_MODULES)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000472endif( MSVC )
473
Greg Bedwell57649972017-11-29 18:05:32 +0000474if (MSVC)
475 if (NOT CLANG_CL)
476 set(msvc_warning_flags
477 # Disabled warnings.
478 -wd4141 # Suppress ''modifier' : used more than once' (because of __forceinline combined with inline)
479 -wd4146 # Suppress 'unary minus operator applied to unsigned type, result still unsigned'
480 -wd4180 # Suppress 'qualifier applied to function type has no meaning; ignored'
481 -wd4244 # Suppress ''argument' : conversion from 'type1' to 'type2', possible loss of data'
482 -wd4258 # Suppress ''var' : definition from the for loop is ignored; the definition from the enclosing scope is used'
483 -wd4267 # Suppress ''var' : conversion from 'size_t' to 'type', possible loss of data'
484 -wd4291 # Suppress ''declaration' : no matching operator delete found; memory will not be freed if initialization throws an exception'
485 -wd4345 # Suppress 'behavior change: an object of POD type constructed with an initializer of the form () will be default-initialized'
486 -wd4351 # Suppress 'new behavior: elements of array 'array' will be default initialized'
487 -wd4355 # Suppress ''this' : used in base member initializer list'
488 -wd4456 # Suppress 'declaration of 'var' hides local variable'
489 -wd4457 # Suppress 'declaration of 'var' hides function parameter'
490 -wd4458 # Suppress 'declaration of 'var' hides class member'
491 -wd4459 # Suppress 'declaration of 'var' hides global declaration'
492 -wd4503 # Suppress ''identifier' : decorated name length exceeded, name was truncated'
493 -wd4624 # Suppress ''derived class' : destructor could not be generated because a base class destructor is inaccessible'
494 -wd4722 # Suppress 'function' : destructor never returns, potential memory leak
495 -wd4800 # Suppress ''type' : forcing value to bool 'true' or 'false' (performance warning)'
496 -wd4100 # Suppress 'unreferenced formal parameter'
497 -wd4127 # Suppress 'conditional expression is constant'
498 -wd4512 # Suppress 'assignment operator could not be generated'
499 -wd4505 # Suppress 'unreferenced local function has been removed'
500 -wd4610 # Suppress '<class> can never be instantiated'
501 -wd4510 # Suppress 'default constructor could not be generated'
502 -wd4702 # Suppress 'unreachable code'
503 -wd4245 # Suppress 'signed/unsigned mismatch'
504 -wd4706 # Suppress 'assignment within conditional expression'
505 -wd4310 # Suppress 'cast truncates constant value'
506 -wd4701 # Suppress 'potentially uninitialized local variable'
507 -wd4703 # Suppress 'potentially uninitialized local pointer variable'
508 -wd4389 # Suppress 'signed/unsigned mismatch'
509 -wd4611 # Suppress 'interaction between '_setjmp' and C++ object destruction is non-portable'
510 -wd4805 # Suppress 'unsafe mix of type <type> and type <type> in operation'
511 -wd4204 # Suppress 'nonstandard extension used : non-constant aggregate initializer'
512 -wd4577 # Suppress 'noexcept used with no exception handling mode specified; termination on exception is not guaranteed'
513 -wd4091 # Suppress 'typedef: ignored on left of '' when no variable is declared'
514 # C4592 is disabled because of false positives in Visual Studio 2015
515 # Update 1. Re-evaluate the usefulness of this diagnostic with Update 2.
516 -wd4592 # Suppress ''var': symbol will be dynamically initialized (implementation limitation)
517 -wd4319 # Suppress ''operator' : zero extending 'type' to 'type' of greater size'
Reid Kleckner9f3585d2017-03-16 17:05:16 +0000518
Greg Bedwell57649972017-11-29 18:05:32 +0000519 # Ideally, we'd like this warning to be enabled, but MSVC 2013 doesn't
520 # support the 'aligned' attribute in the way that clang sources requires (for
521 # any code that uses the LLVM_ALIGNAS macro), so this is must be disabled to
522 # avoid unwanted alignment warnings.
523 # When we switch to requiring a version of MSVC that supports the 'alignas'
524 # specifier (MSVC 2015?) this warning can be re-enabled.
525 -wd4324 # Suppress 'structure was padded due to __declspec(align())'
Reid Kleckner9f3585d2017-03-16 17:05:16 +0000526
Greg Bedwell57649972017-11-29 18:05:32 +0000527 # Promoted warnings.
528 -w14062 # Promote 'enumerator in switch of enum is not handled' to level 1 warning.
Reid Kleckner9f3585d2017-03-16 17:05:16 +0000529
Greg Bedwell57649972017-11-29 18:05:32 +0000530 # Promoted warnings to errors.
531 -we4238 # Promote 'nonstandard extension used : class rvalue used as lvalue' to error.
532 )
533 endif(NOT CLANG_CL)
Reid Kleckner9f3585d2017-03-16 17:05:16 +0000534
535 # Enable warnings
536 if (LLVM_ENABLE_WARNINGS)
537 # Put /W4 in front of all the -we flags. cl.exe doesn't care, but for
538 # clang-cl having /W4 after the -we flags will re-enable the warnings
539 # disabled by -we.
540 set(msvc_warning_flags "/W4 ${msvc_warning_flags}")
541 # CMake appends /W3 by default, and having /W3 followed by /W4 will result in
542 # cl : Command line warning D9025 : overriding '/W3' with '/W4'. Since this is
543 # a command line warning and not a compiler warning, it cannot be suppressed except
544 # by fixing the command line.
545 string(REGEX REPLACE " /W[0-4]" "" CMAKE_C_FLAGS "${CMAKE_C_FLAGS}")
546 string(REGEX REPLACE " /W[0-4]" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
547
548 if (LLVM_ENABLE_PEDANTIC)
549 # No MSVC equivalent available
550 endif (LLVM_ENABLE_PEDANTIC)
551 endif (LLVM_ENABLE_WARNINGS)
552
553 foreach(flag ${msvc_warning_flags})
554 append("${flag}" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
555 endforeach(flag)
Greg Bedwell57649972017-11-29 18:05:32 +0000556endif (MSVC)
Reid Kleckner9f3585d2017-03-16 17:05:16 +0000557
558if (LLVM_ENABLE_WARNINGS AND (LLVM_COMPILER_IS_GCC_COMPATIBLE OR CLANG_CL))
Greg Bedwell57649972017-11-29 18:05:32 +0000559
560 # Don't add -Wall for clang-cl, because it maps -Wall to -Weverything for
561 # MSVC compatibility. /W4 is added above instead.
562 if (NOT CLANG_CL)
563 append("-Wall" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
564 endif()
565
566 append("-W -Wno-unused-parameter -Wwrite-strings" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Reid Kleckner9f3585d2017-03-16 17:05:16 +0000567 append("-Wcast-qual" CMAKE_CXX_FLAGS)
568
569 # Turn off missing field initializer warnings for gcc to avoid noise from
570 # false positives with empty {}. Turn them on otherwise (they're off by
571 # default for clang).
572 check_cxx_compiler_flag("-Wmissing-field-initializers" CXX_SUPPORTS_MISSING_FIELD_INITIALIZERS_FLAG)
573 if (CXX_SUPPORTS_MISSING_FIELD_INITIALIZERS_FLAG)
574 if (CMAKE_COMPILER_IS_GNUCXX)
575 append("-Wno-missing-field-initializers" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
576 else()
577 append("-Wmissing-field-initializers" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
578 endif()
579 endif()
580
581 if (LLVM_ENABLE_PEDANTIC AND LLVM_COMPILER_IS_GCC_COMPATIBLE)
582 append("-pedantic" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
583 append("-Wno-long-long" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
584 endif()
585
586 add_flag_if_supported("-Wcovered-switch-default" COVERED_SWITCH_DEFAULT_FLAG)
587 append_if(USE_NO_UNINITIALIZED "-Wno-uninitialized" CMAKE_CXX_FLAGS)
588 append_if(USE_NO_MAYBE_UNINITIALIZED "-Wno-maybe-uninitialized" CMAKE_CXX_FLAGS)
589
590 # Check if -Wnon-virtual-dtor warns even though the class is marked final.
591 # If it does, don't add it. So it won't be added on clang 3.4 and older.
592 # This also catches cases when -Wnon-virtual-dtor isn't supported by
593 # the compiler at all. This flag is not activated for gcc since it will
594 # incorrectly identify a protected non-virtual base when there is a friend
595 # declaration. Don't activate this in general on Windows as this warning has
596 # too many false positives on COM-style classes, which are destroyed with
597 # Release() (PR32286).
598 if (NOT CMAKE_COMPILER_IS_GNUCXX AND NOT WIN32)
599 set(OLD_CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS})
600 set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} -std=c++11 -Werror=non-virtual-dtor")
601 CHECK_CXX_SOURCE_COMPILES("class base {public: virtual void anchor();protected: ~base();};
602 class derived final : public base { public: ~derived();};
603 int main() { return 0; }"
604 CXX_WONT_WARN_ON_FINAL_NONVIRTUALDTOR)
605 set(CMAKE_REQUIRED_FLAGS ${OLD_CMAKE_REQUIRED_FLAGS})
606 append_if(CXX_WONT_WARN_ON_FINAL_NONVIRTUALDTOR
607 "-Wnon-virtual-dtor" CMAKE_CXX_FLAGS)
608 endif()
609
610 # Enable -Wdelete-non-virtual-dtor if available.
611 add_flag_if_supported("-Wdelete-non-virtual-dtor" DELETE_NON_VIRTUAL_DTOR_FLAG)
612
613 # Check if -Wcomment is OK with an // comment ending with '\' if the next
614 # line is also a // comment.
615 set(OLD_CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS})
616 set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} -Werror -Wcomment")
617 CHECK_C_SOURCE_COMPILES("// \\\\\\n//\\nint main() {return 0;}"
618 C_WCOMMENT_ALLOWS_LINE_WRAP)
619 set(CMAKE_REQUIRED_FLAGS ${OLD_CMAKE_REQUIRED_FLAGS})
620 if (NOT C_WCOMMENT_ALLOWS_LINE_WRAP)
621 append("-Wno-comment" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
622 endif()
623
624 # Enable -Wstring-conversion to catch misuse of string literals.
625 add_flag_if_supported("-Wstring-conversion" STRING_CONVERSION_FLAG)
626endif (LLVM_ENABLE_WARNINGS AND (LLVM_COMPILER_IS_GCC_COMPATIBLE OR CLANG_CL))
627
Vassil Vassilev7a3a6e22017-04-12 20:43:11 +0000628if (LLVM_COMPILER_IS_GCC_COMPATIBLE AND NOT LLVM_ENABLE_WARNINGS)
629 append("-w" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
630endif()
631
Alexey Samsonov75789a22013-03-26 07:49:46 +0000632macro(append_common_sanitizer_flags)
Reid Klecknerd7a568f2015-08-14 16:48:34 +0000633 if (NOT MSVC)
634 # Append -fno-omit-frame-pointer and turn on debug info to get better
635 # stack traces.
636 add_flag_if_supported("-fno-omit-frame-pointer" FNO_OMIT_FRAME_POINTER)
637 if (NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG" AND
Reid Kleckner38b89382015-08-25 16:06:40 +0000638 NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "RELWITHDEBINFO")
Reid Klecknerd7a568f2015-08-14 16:48:34 +0000639 add_flag_if_supported("-gline-tables-only" GLINE_TABLES_ONLY)
640 endif()
641 # Use -O1 even in debug mode, otherwise sanitizers slowdown is too large.
Chris Bienemanc2e8e202018-05-17 16:55:29 +0000642 if (uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG" AND LLVM_OPTIMIZE_SANITIZED_BUILDS)
Reid Klecknerd7a568f2015-08-14 16:48:34 +0000643 add_flag_if_supported("-O1" O1)
644 endif()
645 elseif (CLANG_CL)
646 # Keep frame pointers around.
647 append("/Oy-" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Bob Haarmanf947d8d2017-03-01 19:22:18 +0000648 if (LINKER_IS_LLD_LINK)
Reid Klecknerd7a568f2015-08-14 16:48:34 +0000649 # Use DWARF debug info with LLD.
650 append("-gdwarf" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
651 else()
652 # Enable codeview otherwise.
653 append("/Z7" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
654 endif()
655 # Always ask the linker to produce symbols with asan.
656 append("-debug" CMAKE_EXE_LINKER_FLAGS CMAKE_MODULE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS)
Alexey Samsonovf9ab3512013-09-02 09:15:01 +0000657 endif()
Alexey Samsonov75789a22013-03-26 07:49:46 +0000658endmacro()
659
660# Turn on sanitizers if necessary.
661if(LLVM_USE_SANITIZER)
662 if (LLVM_ON_UNIX)
663 if (LLVM_USE_SANITIZER STREQUAL "Address")
664 append_common_sanitizer_flags()
Alp Toker696b4a02014-07-09 06:27:05 +0000665 append("-fsanitize=address" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Alexey Samsonov75789a22013-03-26 07:49:46 +0000666 elseif (LLVM_USE_SANITIZER MATCHES "Memory(WithOrigins)?")
667 append_common_sanitizer_flags()
Alp Toker696b4a02014-07-09 06:27:05 +0000668 append("-fsanitize=memory" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Alexey Samsonov75789a22013-03-26 07:49:46 +0000669 if(LLVM_USE_SANITIZER STREQUAL "MemoryWithOrigins")
Alp Toker696b4a02014-07-09 06:27:05 +0000670 append("-fsanitize-memory-track-origins" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Alexey Samsonov75789a22013-03-26 07:49:46 +0000671 endif()
Alexey Samsonov4ee26752014-08-29 00:50:36 +0000672 elseif (LLVM_USE_SANITIZER STREQUAL "Undefined")
673 append_common_sanitizer_flags()
Justin Bogner8c8fb162015-05-14 04:52:57 +0000674 append("-fsanitize=undefined -fno-sanitize=vptr,function -fno-sanitize-recover=all"
Alexey Samsonov4ee26752014-08-29 00:50:36 +0000675 CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Eric Fiselierbd9a8252017-02-07 22:48:20 +0000676 set(BLACKLIST_FILE "${CMAKE_SOURCE_DIR}/utils/sanitizers/ubsan_blacklist.txt")
677 if (EXISTS "${BLACKLIST_FILE}")
678 append("-fsanitize-blacklist=${BLACKLIST_FILE}"
679 CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
680 endif()
Eric Fiselierbe6705d2014-11-18 21:23:38 +0000681 elseif (LLVM_USE_SANITIZER STREQUAL "Thread")
682 append_common_sanitizer_flags()
683 append("-fsanitize=thread" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Filipe Cabecinhasb36685e2015-02-04 22:33:31 +0000684 elseif (LLVM_USE_SANITIZER STREQUAL "Address;Undefined" OR
685 LLVM_USE_SANITIZER STREQUAL "Undefined;Address")
686 append_common_sanitizer_flags()
Justin Bogner8c8fb162015-05-14 04:52:57 +0000687 append("-fsanitize=address,undefined -fno-sanitize=vptr,function -fno-sanitize-recover=all"
Filipe Cabecinhasb36685e2015-02-04 22:33:31 +0000688 CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Michael Gottesman7265da82017-06-20 20:28:07 +0000689 elseif (LLVM_USE_SANITIZER STREQUAL "Leaks")
690 append_common_sanitizer_flags()
691 append("-fsanitize=leak" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Alexey Samsonov75789a22013-03-26 07:49:46 +0000692 else()
Justin Bogner1ded6982015-09-01 05:45:07 +0000693 message(FATAL_ERROR "Unsupported value of LLVM_USE_SANITIZER: ${LLVM_USE_SANITIZER}")
Alexey Samsonov75789a22013-03-26 07:49:46 +0000694 endif()
Reid Klecknerd7a568f2015-08-14 16:48:34 +0000695 elseif(MSVC)
696 if (LLVM_USE_SANITIZER STREQUAL "Address")
697 append_common_sanitizer_flags()
698 append("-fsanitize=address" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
699 else()
Justin Bogner1ded6982015-09-01 05:45:07 +0000700 message(FATAL_ERROR "This sanitizer not yet supported in the MSVC environment: ${LLVM_USE_SANITIZER}")
Reid Klecknerd7a568f2015-08-14 16:48:34 +0000701 endif()
Alexey Samsonov75789a22013-03-26 07:49:46 +0000702 else()
Justin Bogner1ded6982015-09-01 05:45:07 +0000703 message(FATAL_ERROR "LLVM_USE_SANITIZER is not supported on this platform.")
Alexey Samsonov75789a22013-03-26 07:49:46 +0000704 endif()
Vitaly Buka729a0392017-01-17 21:04:23 +0000705 if (LLVM_USE_SANITIZER MATCHES "(Undefined;)?Address(;Undefined)?")
Justin Bogner2ceeb302017-01-18 19:01:58 +0000706 add_flag_if_supported("-fsanitize-address-use-after-scope"
707 FSANITIZE_USE_AFTER_SCOPE_FLAG)
Vitaly Buka729a0392017-01-17 21:04:23 +0000708 endif()
Kostya Serebryany869b8672015-01-27 17:59:28 +0000709 if (LLVM_USE_SANITIZE_COVERAGE)
George Karpenkov0ac90d32017-08-23 00:40:58 +0000710 append("-fsanitize=fuzzer-no-link" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Kostya Serebryany869b8672015-01-27 17:59:28 +0000711 endif()
Alexey Samsonov75789a22013-03-26 07:49:46 +0000712endif()
713
Eric Christopher39878062013-07-30 21:44:10 +0000714# Turn on -gsplit-dwarf if requested
715if(LLVM_USE_SPLIT_DWARF)
Peter Collingbournea7d17512014-10-22 19:49:19 +0000716 add_definitions("-gsplit-dwarf")
Eric Christopher39878062013-07-30 21:44:10 +0000717endif()
718
Serge Pavlov23be9452017-03-21 04:03:24 +0000719add_definitions( -D__STDC_CONSTANT_MACROS )
720add_definitions( -D__STDC_FORMAT_MACROS )
721add_definitions( -D__STDC_LIMIT_MACROS )
Arnaud A. de Grandmaison916f3cc2013-05-29 20:41:35 +0000722
723# clang doesn't print colored diagnostics when invoked from Ninja
Rafael Espindola6f2564c2013-06-14 19:41:05 +0000724if (UNIX AND
Justin Bogner13440b92016-06-01 23:29:26 +0000725 CMAKE_CXX_COMPILER_ID MATCHES "Clang" AND
Rafael Espindola6f2564c2013-06-14 19:41:05 +0000726 CMAKE_GENERATOR STREQUAL "Ninja")
727 append("-fcolor-diagnostics" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Arnaud A. de Grandmaison916f3cc2013-05-29 20:41:35 +0000728endif()
NAKAMURA Takumibb50bce2014-01-28 09:43:55 +0000729
Rui Ueyamad6a005a2017-01-11 22:55:35 +0000730# lld doesn't print colored diagnostics when invoked from Ninja
Saleem Abdulrasoolaca6d002018-04-16 21:57:10 +0000731if (UNIX AND CMAKE_GENERATOR STREQUAL "Ninja")
Rui Ueyamad6a005a2017-01-11 22:55:35 +0000732 include(CheckLinkerFlag)
Rui Ueyama00278732017-07-12 21:37:02 +0000733 check_linker_flag("-Wl,--color-diagnostics" LINKER_SUPPORTS_COLOR_DIAGNOSTICS)
734 append_if(LINKER_SUPPORTS_COLOR_DIAGNOSTICS "-Wl,--color-diagnostics"
Rui Ueyamad6a005a2017-01-11 22:55:35 +0000735 CMAKE_EXE_LINKER_FLAGS CMAKE_MODULE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS)
736endif()
737
NAKAMURA Takumibb50bce2014-01-28 09:43:55 +0000738# Add flags for add_dead_strip().
739# FIXME: With MSVS, consider compiling with /Gy and linking with /OPT:REF?
740# But MinSizeRel seems to add that automatically, so maybe disable these
741# flags instead if LLVM_NO_DEAD_STRIP is set.
742if(NOT CYGWIN AND NOT WIN32)
Rafael Espindola9c5701f2015-04-06 14:34:43 +0000743 if(NOT ${CMAKE_SYSTEM_NAME} MATCHES "Darwin" AND
744 NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG")
Alexey Samsonov482beff2014-02-04 08:15:46 +0000745 check_c_compiler_flag("-Werror -fno-function-sections" C_SUPPORTS_FNO_FUNCTION_SECTIONS)
746 if (C_SUPPORTS_FNO_FUNCTION_SECTIONS)
747 # Don't add -ffunction-section if it can be disabled with -fno-function-sections.
748 # Doing so will break sanitizers.
Alp Toker00683972014-07-09 03:38:19 +0000749 add_flag_if_supported("-ffunction-sections" FFUNCTION_SECTIONS)
Evgeniy Stepanovc7b7e252014-02-03 13:57:09 +0000750 endif()
Alp Toker00683972014-07-09 03:38:19 +0000751 add_flag_if_supported("-fdata-sections" FDATA_SECTIONS)
NAKAMURA Takumibb50bce2014-01-28 09:43:55 +0000752 endif()
753endif()
NAKAMURA Takumia679f432014-01-28 09:44:06 +0000754
755if(MSVC)
756 # Remove flags here, for exceptions and RTTI.
NAKAMURA Takumiac624642014-01-31 17:32:36 +0000757 # Each target property or source property should be responsible to control
758 # them.
NAKAMURA Takumia679f432014-01-28 09:44:06 +0000759 # CL.EXE complains to override flags like "/GR /GR-".
760 string(REGEX REPLACE "(^| ) */EH[-cs]+ *( |$)" "\\1 \\2" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
761 string(REGEX REPLACE "(^| ) */GR-? *( |$)" "\\1 \\2" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
762endif()
NAKAMURA Takumi8d7a1732014-07-04 04:45:40 +0000763
Dan Liewa5bdc842014-07-22 15:41:18 +0000764# Provide public options to globally control RTTI and EH
765option(LLVM_ENABLE_EH "Enable Exception handling" OFF)
766option(LLVM_ENABLE_RTTI "Enable run time type information" OFF)
767if(LLVM_ENABLE_EH AND NOT LLVM_ENABLE_RTTI)
768 message(FATAL_ERROR "Exception handling requires RTTI. You must set LLVM_ENABLE_RTTI to ON")
769endif()
770
Vedant Kumara702fa12017-11-08 21:26:40 +0000771option(LLVM_ENABLE_IR_PGO "Build LLVM and tools with IR PGO instrumentation (deprecated)" Off)
Vedant Kumar9aaaeb32017-09-20 17:16:01 +0000772mark_as_advanced(LLVM_ENABLE_IR_PGO)
773
Vedant Kumara702fa12017-11-08 21:26:40 +0000774set(LLVM_BUILD_INSTRUMENTED OFF CACHE STRING "Build LLVM and tools with PGO instrumentation. May be specified as IR or Frontend")
Chris Bienemandbdec572015-12-10 21:19:07 +0000775mark_as_advanced(LLVM_BUILD_INSTRUMENTED)
Vedant Kumara702fa12017-11-08 21:26:40 +0000776string(TOUPPER "${LLVM_BUILD_INSTRUMENTED}" uppercase_LLVM_BUILD_INSTRUMENTED)
Vedant Kumar9aaaeb32017-09-20 17:16:01 +0000777
778if (LLVM_BUILD_INSTRUMENTED)
Vedant Kumara702fa12017-11-08 21:26:40 +0000779 if (LLVM_ENABLE_IR_PGO OR uppercase_LLVM_BUILD_INSTRUMENTED STREQUAL "IR")
Vedant Kumar9aaaeb32017-09-20 17:16:01 +0000780 append("-fprofile-generate='${LLVM_PROFILE_DATA_DIR}'"
781 CMAKE_CXX_FLAGS
782 CMAKE_C_FLAGS
783 CMAKE_EXE_LINKER_FLAGS
784 CMAKE_SHARED_LINKER_FLAGS)
785 else()
786 append("-fprofile-instr-generate='${LLVM_PROFILE_FILE_PATTERN}'"
787 CMAKE_CXX_FLAGS
788 CMAKE_C_FLAGS
789 CMAKE_EXE_LINKER_FLAGS
790 CMAKE_SHARED_LINKER_FLAGS)
791 endif()
792endif()
Vedant Kumard9aed822016-06-13 23:33:48 +0000793
Vedant Kumar0b7cb322017-09-20 17:16:00 +0000794option(LLVM_BUILD_INSTRUMENTED_COVERAGE "Build LLVM and tools with Code Coverage instrumentation" Off)
Vedant Kumard9aed822016-06-13 23:33:48 +0000795mark_as_advanced(LLVM_BUILD_INSTRUMENTED_COVERAGE)
796append_if(LLVM_BUILD_INSTRUMENTED_COVERAGE "-fprofile-instr-generate='${LLVM_PROFILE_FILE_PATTERN}' -fcoverage-mapping"
Chris Bienemandbdec572015-12-10 21:19:07 +0000797 CMAKE_CXX_FLAGS
798 CMAKE_C_FLAGS
799 CMAKE_EXE_LINKER_FLAGS
800 CMAKE_SHARED_LINKER_FLAGS)
801
Vedant Kumara702fa12017-11-08 21:26:40 +0000802if (LLVM_BUILD_INSTRUMENTED AND LLVM_BUILD_INSTRUMENTED_COVERAGE)
803 message(FATAL_ERROR "LLVM_BUILD_INSTRUMENTED and LLVM_BUILD_INSTRUMENTED_COVERAGE cannot both be specified")
804endif()
805
Bob Haarmanf947d8d2017-03-01 19:22:18 +0000806if(LLVM_ENABLE_LTO AND LLVM_ON_WIN32 AND NOT LINKER_IS_LLD_LINK)
807 message(FATAL_ERROR "When compiling for Windows, LLVM_ENABLE_LTO requires using lld as the linker (point CMAKE_LINKER at lld-link.exe)")
808endif()
Justin Bogner9fd20392016-02-08 21:01:24 +0000809if(uppercase_LLVM_ENABLE_LTO STREQUAL "THIN")
Bob Haarmanf947d8d2017-03-01 19:22:18 +0000810 append("-flto=thin" CMAKE_CXX_FLAGS CMAKE_C_FLAGS)
811 if(NOT LINKER_IS_LLD_LINK)
812 append("-flto=thin" CMAKE_EXE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS)
813 endif()
Peter Collingbourne11c03c32017-03-15 16:28:43 +0000814 # If the linker supports it, enable the lto cache. This improves initial build
815 # time a little since we re-link a lot of the same objects, and significantly
816 # improves incremental build time.
817 # FIXME: We should move all this logic into the clang driver.
818 if(APPLE)
819 append("-Wl,-cache_path_lto,${PROJECT_BINARY_DIR}/lto.cache"
820 CMAKE_EXE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS)
821 elseif(UNIX AND LLVM_USE_LINKER STREQUAL "lld")
822 append("-Wl,--thinlto-cache-dir=${PROJECT_BINARY_DIR}/lto.cache"
823 CMAKE_EXE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS)
824 elseif(LLVM_USE_LINKER STREQUAL "gold")
825 append("-Wl,--plugin-opt,cache-dir=${PROJECT_BINARY_DIR}/lto.cache"
826 CMAKE_EXE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS)
827 endif()
Justin Bogner9fd20392016-02-08 21:01:24 +0000828elseif(uppercase_LLVM_ENABLE_LTO STREQUAL "FULL")
Bob Haarmanf947d8d2017-03-01 19:22:18 +0000829 append("-flto=full" CMAKE_CXX_FLAGS CMAKE_C_FLAGS)
830 if(NOT LINKER_IS_LLD_LINK)
831 append("-flto=full" CMAKE_EXE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS)
832 endif()
Justin Bogner9fd20392016-02-08 21:01:24 +0000833elseif(LLVM_ENABLE_LTO)
Bob Haarmanf947d8d2017-03-01 19:22:18 +0000834 append("-flto" CMAKE_CXX_FLAGS CMAKE_C_FLAGS)
835 if(NOT LINKER_IS_LLD_LINK)
836 append("-flto" CMAKE_EXE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS)
837 endif()
Justin Bogner9fd20392016-02-08 21:01:24 +0000838endif()
Justin Bognere12385b2016-02-04 07:28:30 +0000839
John Brawn3546c2f2016-05-26 11:16:43 +0000840# This option makes utils/extract_symbols.py be used to determine the list of
841# symbols to export from LLVM tools. This is necessary when using MSVC if you
842# want to allow plugins, though note that the plugin has to explicitly link
843# against (exactly one) tool so we can't unilaterally turn on
844# LLVM_ENABLE_PLUGINS when it's enabled.
845option(LLVM_EXPORT_SYMBOLS_FOR_PLUGINS "Export symbols from LLVM tools so that plugins can import them" OFF)
846if(BUILD_SHARED_LIBS AND LLVM_EXPORT_SYMBOLS_FOR_PLUGINS)
847 message(FATAL_ERROR "BUILD_SHARED_LIBS not compatible with LLVM_EXPORT_SYMBOLS_FOR_PLUGINS")
848endif()
849if(LLVM_LINK_LLVM_DYLIB AND LLVM_EXPORT_SYMBOLS_FOR_PLUGINS)
850 message(FATAL_ERROR "LLVM_LINK_LLVM_DYLIB not compatible with LLVM_EXPORT_SYMBOLS_FOR_PLUGINS")
851endif()
852
NAKAMURA Takumi8d7a1732014-07-04 04:45:40 +0000853# Plugin support
854# FIXME: Make this configurable.
Reid Klecknerb7a13822016-02-10 01:06:37 +0000855if(WIN32 OR CYGWIN)
Stephen Hinesde8ef132017-08-29 02:07:28 +0000856 if(BUILD_SHARED_LIBS OR LLVM_BUILD_LLVM_DYLIB)
NAKAMURA Takumib5bb1e22014-07-13 13:47:37 +0000857 set(LLVM_ENABLE_PLUGINS ON)
858 else()
859 set(LLVM_ENABLE_PLUGINS OFF)
860 endif()
NAKAMURA Takumi8d7a1732014-07-04 04:45:40 +0000861else()
862 set(LLVM_ENABLE_PLUGINS ON)
863endif()
Serge Pavlov23be9452017-03-21 04:03:24 +0000864
Eric Fiselier64a0db72018-01-12 04:01:41 +0000865set(LLVM_ENABLE_IDE_default OFF)
866if (XCODE OR MSVC_IDE OR CMAKE_EXTRA_GENERATOR)
867 set(LLVM_ENABLE_IDE_default ON)
868endif()
869option(LLVM_ENABLE_IDE "Generate targets and process sources for use with an IDE"
870 ${LLVM_ENABLE_IDE_default})
871
Serge Pavlov23be9452017-03-21 04:03:24 +0000872function(get_compile_definitions)
873 get_directory_property(top_dir_definitions DIRECTORY ${CMAKE_SOURCE_DIR} COMPILE_DEFINITIONS)
874 foreach(definition ${top_dir_definitions})
875 if(DEFINED result)
876 string(APPEND result " -D${definition}")
877 else()
878 set(result "-D${definition}")
879 endif()
880 endforeach()
881 set(LLVM_DEFINITIONS "${result}" PARENT_SCOPE)
882endfunction()
883get_compile_definitions()
Daniel Sandersa09751e2018-03-05 19:38:16 +0000884
Daniel Sanders6cf299c2018-03-07 19:32:36 +0000885option(LLVM_FORCE_ENABLE_STATS "Enable statistics collection for builds that wouldn't normally enable it" OFF)