Daniel Dunbar | 10fa2df | 2011-11-04 19:04:35 +0000 | [diff] [blame] | 1 | # 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 Fiselier | ebf091d | 2014-11-15 07:45:31 +0000 | [diff] [blame] | 5 | # This is commonly needed so make sure it's defined before we include anything |
| 6 | # else. |
| 7 | string(TOUPPER "${CMAKE_BUILD_TYPE}" uppercase_CMAKE_BUILD_TYPE) |
| 8 | |
Reid Kleckner | 9fac19f | 2016-03-02 16:42:56 +0000 | [diff] [blame] | 9 | include(CheckCompilerVersion) |
Jordan Rose | 31c5b7b | 2014-02-05 00:02:37 +0000 | [diff] [blame] | 10 | include(HandleLLVMStdlib) |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 11 | include(AddLLVMDefinitions) |
Joe Abbey | 15d9834 | 2012-11-26 02:02:08 +0000 | [diff] [blame] | 12 | include(CheckCCompilerFlag) |
Jordan Rose | 643aa0e | 2013-03-02 01:00:40 +0000 | [diff] [blame] | 13 | include(CheckCXXCompilerFlag) |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 14 | |
Chandler Carruth | 8388597 | 2014-01-13 22:21:34 +0000 | [diff] [blame] | 15 | |
Reid Kleckner | 841e5a0 | 2016-01-22 23:27:13 +0000 | [diff] [blame] | 16 | if (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) |
| 22 | endif() |
| 23 | |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 24 | if( 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 Sands | 80f122f | 2013-07-17 09:34:51 +0000 | [diff] [blame] | 29 | # On non-Debug builds cmake automatically defines NDEBUG, so we |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 30 | # explicitly undefine it: |
Duncan Sands | 80f122f | 2013-07-17 09:34:51 +0000 | [diff] [blame] | 31 | if( NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG" ) |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 32 | add_definitions( -UNDEBUG ) |
Reid Kleckner | c1c01d5 | 2013-04-07 01:45:01 +0000 | [diff] [blame] | 33 | # Also remove /D NDEBUG to avoid MSVC warnings about conflicting defines. |
Reid Kleckner | 472e6b4 | 2014-05-19 21:13:41 +0000 | [diff] [blame] | 34 | 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 Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 44 | endif() |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 45 | endif() |
| 46 | |
Sanjoy Das | 8ce6499 | 2015-03-26 19:25:01 +0000 | [diff] [blame] | 47 | string(TOUPPER "${LLVM_ABI_BREAKING_CHECKS}" uppercase_LLVM_ABI_BREAKING_CHECKS) |
| 48 | |
| 49 | if( uppercase_LLVM_ABI_BREAKING_CHECKS STREQUAL "WITH_ASSERTS" ) |
| 50 | if( LLVM_ENABLE_ASSERTIONS ) |
| 51 | set( LLVM_ENABLE_ABI_BREAKING_CHECKS 1 ) |
| 52 | endif() |
| 53 | elseif( uppercase_LLVM_ABI_BREAKING_CHECKS STREQUAL "FORCE_ON" ) |
| 54 | set( LLVM_ENABLE_ABI_BREAKING_CHECKS 1 ) |
| 55 | elseif( uppercase_LLVM_ABI_BREAKING_CHECKS STREQUAL "FORCE_OFF" ) |
| 56 | # We don't need to do anything special to turn off ABI breaking checks. |
Eric Fiselier | 8e2f0a8 | 2015-05-12 22:49:18 +0000 | [diff] [blame] | 57 | elseif( NOT DEFINED LLVM_ABI_BREAKING_CHECKS ) |
| 58 | # Treat LLVM_ABI_BREAKING_CHECKS like "FORCE_OFF" when it has not been |
| 59 | # defined. |
Sanjoy Das | 8ce6499 | 2015-03-26 19:25:01 +0000 | [diff] [blame] | 60 | else() |
| 61 | message(FATAL_ERROR "Unknown value for LLVM_ABI_BREAKING_CHECKS: \"${LLVM_ABI_BREAKING_CHECKS}\"!") |
| 62 | endif() |
| 63 | |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 64 | if(WIN32) |
Nico Weber | c27118d | 2013-12-28 23:31:44 +0000 | [diff] [blame] | 65 | set(LLVM_HAVE_LINK_VERSION_SCRIPT 0) |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 66 | if(CYGWIN) |
| 67 | set(LLVM_ON_WIN32 0) |
| 68 | set(LLVM_ON_UNIX 1) |
| 69 | else(CYGWIN) |
| 70 | set(LLVM_ON_WIN32 1) |
| 71 | set(LLVM_ON_UNIX 0) |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 72 | endif(CYGWIN) |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 73 | else(WIN32) |
| 74 | if(UNIX) |
| 75 | set(LLVM_ON_WIN32 0) |
| 76 | set(LLVM_ON_UNIX 1) |
| 77 | if(APPLE) |
Nico Weber | c27118d | 2013-12-28 23:31:44 +0000 | [diff] [blame] | 78 | set(LLVM_HAVE_LINK_VERSION_SCRIPT 0) |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 79 | else(APPLE) |
Nico Weber | c27118d | 2013-12-28 23:31:44 +0000 | [diff] [blame] | 80 | set(LLVM_HAVE_LINK_VERSION_SCRIPT 1) |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 81 | endif(APPLE) |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 82 | else(UNIX) |
| 83 | MESSAGE(SEND_ERROR "Unable to determine platform") |
| 84 | endif(UNIX) |
| 85 | endif(WIN32) |
| 86 | |
Alp Toker | c0b7bb5 | 2014-01-08 11:10:24 +0000 | [diff] [blame] | 87 | set(EXEEXT ${CMAKE_EXECUTABLE_SUFFIX}) |
| 88 | set(LTDL_SHLIB_EXT ${CMAKE_SHARED_LIBRARY_SUFFIX}) |
NAKAMURA Takumi | 92d6580 | 2014-02-13 11:19:00 +0000 | [diff] [blame] | 89 | |
| 90 | # We use *.dylib rather than *.so on darwin. |
| 91 | set(LLVM_PLUGIN_EXT ${CMAKE_SHARED_LIBRARY_SUFFIX}) |
Alp Toker | c0b7bb5 | 2014-01-08 11:10:24 +0000 | [diff] [blame] | 92 | |
NAKAMURA Takumi | 58f6e74 | 2014-02-13 11:19:11 +0000 | [diff] [blame] | 93 | if(APPLE) |
| 94 | # Darwin-specific linker flags for loadable modules. |
| 95 | set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,-flat_namespace -Wl,-undefined -Wl,suppress") |
| 96 | endif() |
| 97 | |
Rafael Espindola | bb5d09f | 2015-01-22 14:06:51 +0000 | [diff] [blame] | 98 | # Pass -Wl,-z,defs. This makes sure all symbols are defined. Otherwise a DSO |
| 99 | # build might work on ELF but fail on MachO/COFF. |
Yaron Keren | 5519ad3 | 2015-07-23 08:06:12 +0000 | [diff] [blame] | 100 | if(NOT (${CMAKE_SYSTEM_NAME} MATCHES "Darwin" OR WIN32 OR CYGWIN OR |
Yaron Keren | cf24bbb | 2015-11-21 06:33:54 +0000 | [diff] [blame] | 101 | ${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD" OR |
| 102 | ${CMAKE_SYSTEM_NAME} MATCHES "OpenBSD") AND |
Rafael Espindola | 19b5384 | 2015-01-22 20:57:30 +0000 | [diff] [blame] | 103 | NOT LLVM_USE_SANITIZER) |
Rafael Espindola | bb5d09f | 2015-01-22 14:06:51 +0000 | [diff] [blame] | 104 | set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,-z,defs") |
| 105 | endif() |
| 106 | |
| 107 | |
Duncan Sands | 71de6dc | 2013-03-25 13:25:34 +0000 | [diff] [blame] | 108 | function(append value) |
| 109 | foreach(variable ${ARGN}) |
Alexey Samsonov | 6706578 | 2013-03-13 20:50:23 +0000 | [diff] [blame] | 110 | set(${variable} "${${variable}} ${value}" PARENT_SCOPE) |
Duncan Sands | 71de6dc | 2013-03-25 13:25:34 +0000 | [diff] [blame] | 111 | endforeach(variable) |
| 112 | endfunction() |
| 113 | |
| 114 | function(append_if condition value) |
| 115 | if (${condition}) |
| 116 | foreach(variable ${ARGN}) |
| 117 | set(${variable} "${${variable}} ${value}" PARENT_SCOPE) |
| 118 | endforeach(variable) |
Alexey Samsonov | 6706578 | 2013-03-13 20:50:23 +0000 | [diff] [blame] | 119 | endif() |
| 120 | endfunction() |
| 121 | |
Alp Toker | 0068397 | 2014-07-09 03:38:19 +0000 | [diff] [blame] | 122 | macro(add_flag_if_supported flag name) |
| 123 | check_c_compiler_flag("-Werror ${flag}" "C_SUPPORTS_${name}") |
| 124 | append_if("C_SUPPORTS_${name}" "${flag}" CMAKE_C_FLAGS) |
| 125 | check_cxx_compiler_flag("-Werror ${flag}" "CXX_SUPPORTS_${name}") |
| 126 | append_if("CXX_SUPPORTS_${name}" "${flag}" CMAKE_CXX_FLAGS) |
Alexey Samsonov | 75789a2 | 2013-03-26 07:49:46 +0000 | [diff] [blame] | 127 | endmacro() |
| 128 | |
Alp Toker | 0068397 | 2014-07-09 03:38:19 +0000 | [diff] [blame] | 129 | function(add_flag_or_print_warning flag name) |
| 130 | check_c_compiler_flag("-Werror ${flag}" "C_SUPPORTS_${name}") |
| 131 | check_cxx_compiler_flag("-Werror ${flag}" "CXX_SUPPORTS_${name}") |
Richard Smith | ca9ae10 | 2014-09-26 21:35:48 +0000 | [diff] [blame] | 132 | if (C_SUPPORTS_${name} AND CXX_SUPPORTS_${name}) |
Alp Toker | 0068397 | 2014-07-09 03:38:19 +0000 | [diff] [blame] | 133 | message(STATUS "Building with ${flag}") |
| 134 | set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${flag}" PARENT_SCOPE) |
| 135 | set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${flag}" PARENT_SCOPE) |
Douglas Katzman | 280ee91 | 2015-07-28 14:43:53 +0000 | [diff] [blame] | 136 | set(CMAKE_ASM_FLAGS "${CMAKE_ASM_FLAGS} ${flag}" PARENT_SCOPE) |
Alp Toker | 0068397 | 2014-07-09 03:38:19 +0000 | [diff] [blame] | 137 | else() |
| 138 | message(WARNING "${flag} is not supported.") |
| 139 | endif() |
| 140 | endfunction() |
| 141 | |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 142 | if( LLVM_ENABLE_PIC ) |
| 143 | if( XCODE ) |
| 144 | # Xcode has -mdynamic-no-pic on by default, which overrides -fPIC. I don't |
| 145 | # know how to disable this, so just force ENABLE_PIC off for now. |
| 146 | message(WARNING "-fPIC not supported with Xcode.") |
NAKAMURA Takumi | 1b745d0 | 2011-12-16 06:21:08 +0000 | [diff] [blame] | 147 | elseif( WIN32 OR CYGWIN) |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 148 | # On Windows all code is PIC. MinGW warns if -fPIC is used. |
| 149 | else() |
Alp Toker | 0068397 | 2014-07-09 03:38:19 +0000 | [diff] [blame] | 150 | add_flag_or_print_warning("-fPIC" FPIC) |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 151 | endif() |
| 152 | endif() |
| 153 | |
Chris Bieneman | 6b43f1f | 2015-11-18 22:49:26 +0000 | [diff] [blame] | 154 | if(NOT WIN32 AND NOT CYGWIN) |
| 155 | # MinGW warns if -fvisibility-inlines-hidden is used. |
| 156 | check_cxx_compiler_flag("-fvisibility-inlines-hidden" SUPPORTS_FVISIBILITY_INLINES_HIDDEN_FLAG) |
| 157 | append_if(SUPPORTS_FVISIBILITY_INLINES_HIDDEN_FLAG "-fvisibility-inlines-hidden" CMAKE_CXX_FLAGS) |
| 158 | endif() |
| 159 | |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 160 | if( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 ) |
| 161 | # TODO: support other platforms and toolchains. |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 162 | if( LLVM_BUILD_32_BITS ) |
| 163 | message(STATUS "Building 32 bits executables and libraries.") |
| 164 | add_llvm_definitions( -m32 ) |
Tim Northover | f6e29c4 | 2012-05-23 18:42:02 +0000 | [diff] [blame] | 165 | set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -m32") |
| 166 | set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -m32") |
Tobias Grosser | b32ad40 | 2012-06-08 09:41:23 +0000 | [diff] [blame] | 167 | set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -m32") |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 168 | endif( LLVM_BUILD_32_BITS ) |
| 169 | endif( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 ) |
| 170 | |
Rafael Espindola | ef4edf4 | 2014-11-05 14:03:58 +0000 | [diff] [blame] | 171 | if (LLVM_BUILD_STATIC) |
| 172 | set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -static") |
| 173 | endif() |
| 174 | |
Ted Kremenek | 68af845 | 2014-03-13 06:37:28 +0000 | [diff] [blame] | 175 | if( XCODE ) |
| 176 | # For Xcode enable several build settings that correspond to |
| 177 | # many warnings that are on by default in Clang but are |
| 178 | # not enabled for historical reasons. For versions of Xcode |
| 179 | # that do not support these options they will simply |
| 180 | # be ignored. |
| 181 | set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_ABOUT_RETURN_TYPE "YES") |
| 182 | set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_ABOUT_MISSING_NEWLINE "YES") |
| 183 | set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_UNUSED_VALUE "YES") |
| 184 | set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_UNUSED_VARIABLE "YES") |
| 185 | set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_SIGN_COMPARE "YES") |
| 186 | set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_UNUSED_FUNCTION "YES") |
| 187 | set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED "YES") |
| 188 | set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_HIDDEN_VIRTUAL_FUNCTIONS "YES") |
| 189 | set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_UNINITIALIZED_AUTOS "YES") |
| 190 | set(CMAKE_XCODE_ATTRIBUTE_CLANG_WARN_BOOL_CONVERSION "YES") |
| 191 | set(CMAKE_XCODE_ATTRIBUTE_CLANG_WARN_EMPTY_BODY "YES") |
| 192 | set(CMAKE_XCODE_ATTRIBUTE_CLANG_WARN_ENUM_CONVERSION "YES") |
| 193 | set(CMAKE_XCODE_ATTRIBUTE_CLANG_WARN_INT_CONVERSION "YES") |
| 194 | set(CMAKE_XCODE_ATTRIBUTE_CLANG_WARN_CONSTANT_CONVERSION "YES") |
| 195 | set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_NON_VIRTUAL_DESTRUCTOR "YES") |
| 196 | endif() |
| 197 | |
NAKAMURA Takumi | a83601d | 2012-04-21 14:50:56 +0000 | [diff] [blame] | 198 | # On Win32 using MS tools, provide an option to set the number of parallel jobs |
| 199 | # to use. |
NAKAMURA Takumi | 75bfe69 | 2012-04-21 14:51:02 +0000 | [diff] [blame] | 200 | if( MSVC_IDE ) |
Oscar Fuentes | 318c3f1 | 2011-03-02 17:47:37 +0000 | [diff] [blame] | 201 | set(LLVM_COMPILER_JOBS "0" CACHE STRING |
| 202 | "Number of parallel compiler jobs. 0 means use all processors. Default is 0.") |
| 203 | if( NOT LLVM_COMPILER_JOBS STREQUAL "1" ) |
| 204 | if( LLVM_COMPILER_JOBS STREQUAL "0" ) |
| 205 | add_llvm_definitions( /MP ) |
| 206 | else() |
Yaron Keren | e485511 | 2014-03-25 09:34:20 +0000 | [diff] [blame] | 207 | message(STATUS "Number of parallel compiler jobs set to " ${LLVM_COMPILER_JOBS}) |
| 208 | add_llvm_definitions( /MP${LLVM_COMPILER_JOBS} ) |
Oscar Fuentes | 318c3f1 | 2011-03-02 17:47:37 +0000 | [diff] [blame] | 209 | endif() |
| 210 | else() |
| 211 | message(STATUS "Parallel compilation disabled") |
| 212 | endif() |
| 213 | endif() |
| 214 | |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 215 | if( MSVC ) |
Yaron Keren | 528d8d6 | 2015-08-21 17:31:03 +0000 | [diff] [blame] | 216 | if( CMAKE_CXX_COMPILER_VERSION VERSION_LESS 19.0 ) |
| 217 | # For MSVC 2013, disable iterator null pointer checking in debug mode, |
| 218 | # especially so std::equal(nullptr, nullptr, nullptr) will not assert. |
| 219 | add_llvm_definitions("-D_DEBUG_POINTER_IMPL=") |
| 220 | endif() |
| 221 | |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 222 | include(ChooseMSVCCRT) |
| 223 | |
Hans Wennborg | bef50ab | 2013-10-17 18:39:47 +0000 | [diff] [blame] | 224 | if( NOT (${CMAKE_VERSION} VERSION_LESS 2.8.11) ) |
| 225 | # set stack reserved size to ~10MB |
| 226 | # CMake previously automatically set this value for MSVC builds, but the |
| 227 | # behavior was changed in CMake 2.8.11 (Issue 12437) to use the MSVC default |
| 228 | # value (1 MB) which is not enough for us in tasks such as parsing recursive |
| 229 | # C++ templates in Clang. |
| 230 | set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /STACK:10000000") |
| 231 | endif() |
Hans Wennborg | fd541f0 | 2013-10-17 17:49:57 +0000 | [diff] [blame] | 232 | |
Yaron Keren | e485511 | 2014-03-25 09:34:20 +0000 | [diff] [blame] | 233 | if( MSVC11 ) |
Michael J. Spencer | 35145f8 | 2012-03-01 22:42:52 +0000 | [diff] [blame] | 234 | add_llvm_definitions(-D_VARIADIC_MAX=10) |
| 235 | endif() |
Greg Bedwell | 580defb | 2015-03-11 14:57:48 +0000 | [diff] [blame] | 236 | |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 237 | # Add definitions that make MSVC much less annoying. |
| 238 | add_llvm_definitions( |
| 239 | # For some reason MS wants to deprecate a bunch of standard functions... |
| 240 | -D_CRT_SECURE_NO_DEPRECATE |
| 241 | -D_CRT_SECURE_NO_WARNINGS |
| 242 | -D_CRT_NONSTDC_NO_DEPRECATE |
| 243 | -D_CRT_NONSTDC_NO_WARNINGS |
| 244 | -D_SCL_SECURE_NO_DEPRECATE |
| 245 | -D_SCL_SECURE_NO_WARNINGS |
Greg Bedwell | 8aa3000 | 2015-03-19 16:32:47 +0000 | [diff] [blame] | 246 | ) |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 247 | |
Greg Bedwell | 8aa3000 | 2015-03-19 16:32:47 +0000 | [diff] [blame] | 248 | set(msvc_warning_flags |
Michael J. Spencer | 6d45d83 | 2012-06-07 21:34:15 +0000 | [diff] [blame] | 249 | # Disabled warnings. |
Aaron Ballman | e11ce62 | 2015-09-10 12:53:40 +0000 | [diff] [blame] | 250 | -wd4141 # Suppress ''modifier' : used more than once' (because of __forceinline combined with inline) |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 251 | -wd4146 # Suppress 'unary minus operator applied to unsigned type, result still unsigned' |
| 252 | -wd4180 # Suppress 'qualifier applied to function type has no meaning; ignored' |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 253 | -wd4244 # Suppress ''argument' : conversion from 'type1' to 'type2', possible loss of data' |
Aaron Ballman | dabe780 | 2014-08-18 14:54:22 +0000 | [diff] [blame] | 254 | -wd4258 # Suppress ''var' : definition from the for loop is ignored; the definition from the enclosing scope is used' |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 255 | -wd4267 # Suppress ''var' : conversion from 'size_t' to 'type', possible loss of data' |
Yaron Keren | 24fdbe5 | 2014-03-25 08:42:49 +0000 | [diff] [blame] | 256 | -wd4291 # Suppress ''declaration' : no matching operator delete found; memory will not be freed if initialization throws an exception' |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 257 | -wd4345 # Suppress 'behavior change: an object of POD type constructed with an initializer of the form () will be default-initialized' |
| 258 | -wd4351 # Suppress 'new behavior: elements of array 'array' will be default initialized' |
| 259 | -wd4355 # Suppress ''this' : used in base member initializer list' |
Reid Kleckner | 19cb171 | 2014-10-31 22:55:57 +0000 | [diff] [blame] | 260 | -wd4456 # Suppress 'declaration of 'var' hides local variable' |
| 261 | -wd4457 # Suppress 'declaration of 'var' hides function parameter' |
| 262 | -wd4458 # Suppress 'declaration of 'var' hides class member' |
| 263 | -wd4459 # Suppress 'declaration of 'var' hides global declaration' |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 264 | -wd4503 # Suppress ''identifier' : decorated name length exceeded, name was truncated' |
| 265 | -wd4624 # Suppress ''derived class' : destructor could not be generated because a base class destructor is inaccessible' |
Yaron Keren | 24fdbe5 | 2014-03-25 08:42:49 +0000 | [diff] [blame] | 266 | -wd4722 # Suppress 'function' : destructor never returns, potential memory leak |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 267 | -wd4800 # Suppress ''type' : forcing value to bool 'true' or 'false' (performance warning)' |
Andrew Kaylor | 5c73e1f | 2015-03-24 23:37:10 +0000 | [diff] [blame] | 268 | -wd4100 # Suppress 'unreferenced formal parameter' |
| 269 | -wd4127 # Suppress 'conditional expression is constant' |
| 270 | -wd4512 # Suppress 'assignment operator could not be generated' |
| 271 | -wd4505 # Suppress 'unreferenced local function has been removed' |
| 272 | -wd4610 # Suppress '<class> can never be instantiated' |
| 273 | -wd4510 # Suppress 'default constructor could not be generated' |
| 274 | -wd4702 # Suppress 'unreachable code' |
| 275 | -wd4245 # Suppress 'signed/unsigned mismatch' |
| 276 | -wd4706 # Suppress 'assignment within conditional expression' |
| 277 | -wd4310 # Suppress 'cast truncates constant value' |
| 278 | -wd4701 # Suppress 'potentially uninitialized local variable' |
| 279 | -wd4703 # Suppress 'potentially uninitialized local pointer variable' |
| 280 | -wd4389 # Suppress 'signed/unsigned mismatch' |
| 281 | -wd4611 # Suppress 'interaction between '_setjmp' and C++ object destruction is non-portable' |
| 282 | -wd4805 # Suppress 'unsafe mix of type <type> and type <type> in operation' |
| 283 | -wd4204 # Suppress 'nonstandard extension used : non-constant aggregate initializer' |
Aaron Ballman | 0cba642 | 2015-07-20 21:14:14 +0000 | [diff] [blame] | 284 | -wd4577 # Suppress 'noexcept used with no exception handling mode specified; termination on exception is not guaranteed' |
| 285 | -wd4091 # Suppress 'typedef: ignored on left of '' when no variable is declared' |
Aaron Ballman | 5cbf37f | 2015-12-07 15:44:34 +0000 | [diff] [blame] | 286 | # C4592 is disabled because of false positives in Visual Studio 2015 |
| 287 | # Update 1. Re-evaluate the usefulness of this diagnostic with Update 2. |
| 288 | -wd4592 # Suppress ''var': symbol will be dynamically initialized (implementation limitation) |
Reid Kleckner | cf5414e | 2016-02-10 19:25:51 +0000 | [diff] [blame] | 289 | -wd4319 # Suppress ''operator' : zero extending 'type' to 'type' of greater size' |
Andrew Kaylor | 84e55fc | 2015-04-21 22:29:38 +0000 | [diff] [blame] | 290 | |
Douglas Katzman | b5fb2d4 | 2015-06-24 21:46:53 +0000 | [diff] [blame] | 291 | # Ideally, we'd like this warning to be enabled, but MSVC 2013 doesn't |
Andrew Kaylor | 84e55fc | 2015-04-21 22:29:38 +0000 | [diff] [blame] | 292 | # support the 'aligned' attribute in the way that clang sources requires (for |
Douglas Katzman | b5fb2d4 | 2015-06-24 21:46:53 +0000 | [diff] [blame] | 293 | # any code that uses the LLVM_ALIGNAS macro), so this is must be disabled to |
Andrew Kaylor | 84e55fc | 2015-04-21 22:29:38 +0000 | [diff] [blame] | 294 | # avoid unwanted alignment warnings. |
| 295 | # When we switch to requiring a version of MSVC that supports the 'alignas' |
| 296 | # specifier (MSVC 2015?) this warning can be re-enabled. |
| 297 | -wd4324 # Suppress 'structure was padded due to __declspec(align())' |
Reid Kleckner | cf5414e | 2016-02-10 19:25:51 +0000 | [diff] [blame] | 298 | |
Michael J. Spencer | 6d45d83 | 2012-06-07 21:34:15 +0000 | [diff] [blame] | 299 | # Promoted warnings. |
| 300 | -w14062 # Promote 'enumerator in switch of enum is not handled' to level 1 warning. |
Michael J. Spencer | aeb59e1 | 2012-06-07 23:33:56 +0000 | [diff] [blame] | 301 | |
| 302 | # Promoted warnings to errors. |
| 303 | -we4238 # Promote 'nonstandard extension used : class rvalue used as lvalue' to error. |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 304 | ) |
| 305 | |
| 306 | # Enable warnings |
| 307 | if (LLVM_ENABLE_WARNINGS) |
Nico Weber | d23b400 | 2015-12-23 02:38:31 +0000 | [diff] [blame] | 308 | # Put /W4 in front of all the -we flags. cl.exe doesn't care, but for |
| 309 | # clang-cl having /W4 after the -we flags will re-enable the warnings |
| 310 | # disabled by -we. |
| 311 | set(msvc_warning_flags "/W4 ${msvc_warning_flags}") |
Zachary Turner | ad84bc4 | 2015-04-14 16:57:54 +0000 | [diff] [blame] | 312 | # CMake appends /W3 by default, and having /W3 followed by /W4 will result in |
| 313 | # cl : Command line warning D9025 : overriding '/W3' with '/W4'. Since this is |
| 314 | # a command line warning and not a compiler warning, it cannot be suppressed except |
| 315 | # by fixing the command line. |
| 316 | string(REGEX REPLACE " /W[0-4]" "" CMAKE_C_FLAGS "${CMAKE_C_FLAGS}") |
| 317 | string(REGEX REPLACE " /W[0-4]" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}") |
| 318 | |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 319 | if (LLVM_ENABLE_PEDANTIC) |
| 320 | # No MSVC equivalent available |
| 321 | endif (LLVM_ENABLE_PEDANTIC) |
| 322 | endif (LLVM_ENABLE_WARNINGS) |
| 323 | if (LLVM_ENABLE_WERROR) |
Greg Bedwell | 8aa3000 | 2015-03-19 16:32:47 +0000 | [diff] [blame] | 324 | append("/WX" msvc_warning_flags) |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 325 | endif (LLVM_ENABLE_WERROR) |
Greg Bedwell | 8aa3000 | 2015-03-19 16:32:47 +0000 | [diff] [blame] | 326 | |
| 327 | foreach(flag ${msvc_warning_flags}) |
| 328 | append("${flag}" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
| 329 | endforeach(flag) |
| 330 | |
Rafael Espindola | f846557 | 2015-08-12 17:09:25 +0000 | [diff] [blame] | 331 | append("/Zc:inline" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
| 332 | |
Aaron Ballman | ce625e8 | 2016-01-25 14:17:39 +0000 | [diff] [blame] | 333 | # /Zc:strictStrings is incompatible with VS12's (Visual Studio 2013's) |
| 334 | # debug mode headers. Instead of only enabling them in VS2013's debug mode, |
| 335 | # we'll just enable them for Visual Studio 2015 (VS 14, MSVC_VERSION 1900) |
| 336 | # and up. |
| 337 | if (NOT (MSVC_VERSION LESS 1900)) |
| 338 | # Disable string literal const->non-const type conversion. |
| 339 | # "When specified, the compiler requires strict const-qualification |
| 340 | # conformance for pointers initialized by using string literals." |
| 341 | append("/Zc:strictStrings" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
| 342 | endif(NOT (MSVC_VERSION LESS 1900)) |
| 343 | |
| 344 | # "Generate Intrinsic Functions". |
| 345 | append("/Oi" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
| 346 | |
| 347 | # "Enforce type conversion rules". |
| 348 | append("/Zc:rvalueCast" CMAKE_CXX_FLAGS) |
| 349 | |
Reid Kleckner | 2b3db2c | 2016-03-30 17:30:26 +0000 | [diff] [blame] | 350 | if (CMAKE_CXX_COMPILER_ID MATCHES "Clang") |
Reid Kleckner | 88ad225 | 2016-03-30 18:19:39 +0000 | [diff] [blame] | 351 | # Find and run MSVC (not clang-cl) and get its version. This will tell |
| 352 | # clang-cl what version of MSVC to pretend to be so that the STL works. |
| 353 | execute_process(COMMAND "$ENV{VSINSTALLDIR}/VC/bin/cl.exe" |
| 354 | OUTPUT_QUIET |
| 355 | ERROR_VARIABLE MSVC_COMPAT_VERSION |
| 356 | ) |
| 357 | string(REGEX REPLACE "^.*Compiler Version ([0-9.]+) for .*$" "\\1" |
| 358 | MSVC_COMPAT_VERSION "${MSVC_COMPAT_VERSION}") |
| 359 | append("-fms-compatibility-version=${MSVC_COMPAT_VERSION}" |
| 360 | CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
Reid Kleckner | 2b3db2c | 2016-03-30 17:30:26 +0000 | [diff] [blame] | 361 | endif() |
| 362 | |
Nico Weber | 891419a | 2016-01-06 19:05:19 +0000 | [diff] [blame] | 363 | if (NOT LLVM_ENABLE_TIMESTAMPS AND CMAKE_CXX_COMPILER_ID MATCHES "Clang") |
| 364 | # clang-cl and cl by default produce non-deterministic binaries because |
| 365 | # link.exe /incremental requires a timestamp in the .obj file. clang-cl |
| 366 | # has the flag /Brepro to force deterministic binaries, so pass that when |
| 367 | # LLVM_ENABLE_TIMESTAMPS is turned off. |
| 368 | # This checks CMAKE_CXX_COMPILER_ID in addition to check_cxx_compiler_flag() |
| 369 | # because cl.exe does not emit an error on flags it doesn't understand, |
| 370 | # letting check_cxx_compiler_flag() claim it understands all flags. |
| 371 | check_cxx_compiler_flag("/Brepro" SUPPORTS_BREPRO) |
| 372 | append_if(SUPPORTS_BREPRO "/Brepro" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
| 373 | |
| 374 | if (SUPPORTS_BREPRO) |
| 375 | # Check if /INCREMENTAL is passed to the linker and complain that it |
| 376 | # won't work with /Brepro. |
| 377 | string(TOUPPER "${CMAKE_EXE_LINKER_FLAGS}" upper_exe_flags) |
| 378 | string(TOUPPER "${CMAKE_MODULE_LINKER_FLAGS}" upper_module_flags) |
| 379 | string(TOUPPER "${CMAKE_SHARED_LINKER_FLAGS}" upper_shared_flags) |
| 380 | |
| 381 | string(FIND "${upper_exe_flags}" "/INCREMENTAL" exe_index) |
| 382 | string(FIND "${upper_module_flags}" "/INCREMENTAL" module_index) |
| 383 | string(FIND "${upper_shared_flags}" "/INCREMENTAL" shared_index) |
| 384 | |
| 385 | if (${exe_index} GREATER -1 OR |
| 386 | ${module_index} GREATER -1 OR |
| 387 | ${shared_index} GREATER -1) |
| 388 | message(FATAL_ERROR "LLVM_ENABLE_TIMESTAMPS not compatible with /INCREMENTAL linking") |
| 389 | endif() |
| 390 | endif() |
| 391 | endif() |
| 392 | |
Reid Kleckner | 69411ce | 2015-05-19 23:28:23 +0000 | [diff] [blame] | 393 | # Disable sized deallocation if the flag is supported. MSVC fails to compile |
| 394 | # the operator new overload in User otherwise. |
| 395 | check_c_compiler_flag("/WX /Zc:sizedDealloc-" SUPPORTS_SIZED_DEALLOC) |
| 396 | append_if(SUPPORTS_SIZED_DEALLOC "/Zc:sizedDealloc-" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
| 397 | |
Oscar Fuentes | ab84a7b | 2011-05-11 13:53:08 +0000 | [diff] [blame] | 398 | elseif( LLVM_COMPILER_IS_GCC_COMPATIBLE ) |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 399 | if (LLVM_ENABLE_WARNINGS) |
David Blaikie | 74d8806 | 2015-10-01 00:44:21 +0000 | [diff] [blame] | 400 | append("-Wall -W -Wno-unused-parameter -Wwrite-strings" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
Roman Divacky | 2d64ef9 | 2014-11-13 19:45:27 +0000 | [diff] [blame] | 401 | append("-Wcast-qual" CMAKE_CXX_FLAGS) |
Edwin Vane | c641084 | 2013-01-31 18:05:54 +0000 | [diff] [blame] | 402 | |
| 403 | # Turn off missing field initializer warnings for gcc to avoid noise from |
| 404 | # false positives with empty {}. Turn them on otherwise (they're off by |
| 405 | # default for clang). |
| 406 | check_cxx_compiler_flag("-Wmissing-field-initializers" CXX_SUPPORTS_MISSING_FIELD_INITIALIZERS_FLAG) |
| 407 | if (CXX_SUPPORTS_MISSING_FIELD_INITIALIZERS_FLAG) |
| 408 | if (CMAKE_COMPILER_IS_GNUCXX) |
Duncan Sands | 71de6dc | 2013-03-25 13:25:34 +0000 | [diff] [blame] | 409 | append("-Wno-missing-field-initializers" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
Edwin Vane | c641084 | 2013-01-31 18:05:54 +0000 | [diff] [blame] | 410 | else() |
Duncan Sands | 71de6dc | 2013-03-25 13:25:34 +0000 | [diff] [blame] | 411 | append("-Wmissing-field-initializers" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
Edwin Vane | c641084 | 2013-01-31 18:05:54 +0000 | [diff] [blame] | 412 | endif() |
| 413 | endif() |
| 414 | |
Eric Fiselier | 2243d7b | 2015-10-13 23:51:58 +0000 | [diff] [blame] | 415 | append_if(LLVM_ENABLE_PEDANTIC "-pedantic" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
| 416 | append_if(LLVM_ENABLE_PEDANTIC "-Wno-long-long" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
Alp Toker | 0068397 | 2014-07-09 03:38:19 +0000 | [diff] [blame] | 417 | add_flag_if_supported("-Wcovered-switch-default" COVERED_SWITCH_DEFAULT_FLAG) |
Duncan Sands | 71de6dc | 2013-03-25 13:25:34 +0000 | [diff] [blame] | 418 | append_if(USE_NO_UNINITIALIZED "-Wno-uninitialized" CMAKE_CXX_FLAGS) |
| 419 | append_if(USE_NO_MAYBE_UNINITIALIZED "-Wno-maybe-uninitialized" CMAKE_CXX_FLAGS) |
Dylan Noblesmith | 367cef6 | 2014-08-23 21:10:56 +0000 | [diff] [blame] | 420 | |
| 421 | # Check if -Wnon-virtual-dtor warns even though the class is marked final. |
| 422 | # If it does, don't add it. So it won't be added on clang 3.4 and older. |
| 423 | # This also catches cases when -Wnon-virtual-dtor isn't supported by |
Andy Gibbs | 33a0eb7 | 2015-12-17 16:43:53 +0000 | [diff] [blame] | 424 | # the compiler at all. This flag is not activated for gcc since it will |
| 425 | # incorrectly identify a protected non-virtual base when there is a friend |
| 426 | # declaration. |
| 427 | if (NOT CMAKE_COMPILER_IS_GNUCXX) |
| 428 | set(OLD_CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS}) |
| 429 | set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} -std=c++11 -Werror=non-virtual-dtor") |
| 430 | CHECK_CXX_SOURCE_COMPILES("class base {public: virtual void anchor();protected: ~base();}; |
| 431 | class derived final : public base { public: ~derived();}; |
| 432 | int main() { return 0; }" |
| 433 | CXX_WONT_WARN_ON_FINAL_NONVIRTUALDTOR) |
| 434 | set(CMAKE_REQUIRED_FLAGS ${OLD_CMAKE_REQUIRED_FLAGS}) |
| 435 | append_if(CXX_WONT_WARN_ON_FINAL_NONVIRTUALDTOR |
| 436 | "-Wnon-virtual-dtor" CMAKE_CXX_FLAGS) |
| 437 | endif() |
| 438 | |
| 439 | # Enable -Wdelete-non-virtual-dtor if available. |
| 440 | add_flag_if_supported("-Wdelete-non-virtual-dtor" DELETE_NON_VIRTUAL_DTOR_FLAG) |
Evgeniy Stepanov | 1b5fd3e | 2014-05-06 09:46:06 +0000 | [diff] [blame] | 441 | |
| 442 | # Check if -Wcomment is OK with an // comment ending with '\' if the next |
| 443 | # line is also a // comment. |
| 444 | set(OLD_CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS}) |
Dylan Noblesmith | 63f9b57 | 2014-08-23 21:10:58 +0000 | [diff] [blame] | 445 | set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} -Werror -Wcomment") |
Evgeniy Stepanov | 1b5fd3e | 2014-05-06 09:46:06 +0000 | [diff] [blame] | 446 | CHECK_C_SOURCE_COMPILES("// \\\\\\n//\\nint main() {return 0;}" |
| 447 | C_WCOMMENT_ALLOWS_LINE_WRAP) |
| 448 | set(CMAKE_REQUIRED_FLAGS ${OLD_CMAKE_REQUIRED_FLAGS}) |
| 449 | if (NOT C_WCOMMENT_ALLOWS_LINE_WRAP) |
| 450 | append("-Wno-comment" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
| 451 | endif() |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 452 | endif (LLVM_ENABLE_WARNINGS) |
Alexey Samsonov | cd083fe | 2014-03-13 13:08:47 +0000 | [diff] [blame] | 453 | append_if(LLVM_ENABLE_WERROR "-Werror" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
Alp Toker | 7099cd7 | 2014-07-09 03:39:32 +0000 | [diff] [blame] | 454 | if (NOT LLVM_ENABLE_TIMESTAMPS) |
| 455 | add_flag_if_supported("-Werror=date-time" WERROR_DATE_TIME) |
| 456 | endif () |
Chandler Carruth | 25eacf7 | 2014-03-01 03:16:07 +0000 | [diff] [blame] | 457 | if (LLVM_ENABLE_CXX1Y) |
| 458 | check_cxx_compiler_flag("-std=c++1y" CXX_SUPPORTS_CXX1Y) |
| 459 | append_if(CXX_SUPPORTS_CXX1Y "-std=c++1y" CMAKE_CXX_FLAGS) |
| 460 | else() |
Arnaud A. de Grandmaison | b697b53 | 2013-11-26 10:33:53 +0000 | [diff] [blame] | 461 | check_cxx_compiler_flag("-std=c++11" CXX_SUPPORTS_CXX11) |
Chandler Carruth | 25eacf7 | 2014-03-01 03:16:07 +0000 | [diff] [blame] | 462 | if (CXX_SUPPORTS_CXX11) |
Rafael Espindola | 8b35074 | 2014-03-12 20:01:15 +0000 | [diff] [blame] | 463 | if (CYGWIN OR MINGW) |
| 464 | # MinGW and Cygwin are a bit stricter and lack things like |
| 465 | # 'strdup', 'stricmp', etc in c++11 mode. |
| 466 | append("-std=gnu++11" CMAKE_CXX_FLAGS) |
| 467 | else() |
| 468 | append("-std=c++11" CMAKE_CXX_FLAGS) |
| 469 | endif() |
Chandler Carruth | 25eacf7 | 2014-03-01 03:16:07 +0000 | [diff] [blame] | 470 | else() |
| 471 | message(FATAL_ERROR "LLVM requires C++11 support but the '-std=c++11' flag isn't supported.") |
| 472 | endif() |
| 473 | endif() |
Richard Smith | cdbecda | 2016-04-17 20:58:01 +0000 | [diff] [blame^] | 474 | if (LLVM_ENABLE_MODULES) |
| 475 | set(OLD_CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS}) |
| 476 | set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} -fmodules -Xclang -fmodules-local-submodule-visibility -fmodules-cache-path=module.cache") |
| 477 | # Check that we can build code with modules enabled, and that repeatedly |
| 478 | # including <cassert> still manages to respect NDEBUG properly. |
| 479 | CHECK_CXX_SOURCE_COMPILES("#undef NDEBUG |
| 480 | #include <cassert> |
| 481 | #define NDEBUG |
| 482 | #include <cassert> |
| 483 | int main() { assert(this code is not compiled); }" |
| 484 | CXX_SUPPORTS_MODULES) |
| 485 | set(CMAKE_REQUIRED_FLAGS ${OLD_CMAKE_REQUIRED_FLAGS}) |
| 486 | if (CXX_SUPPORTS_MODULES) |
| 487 | append_if(CXX_SUPPORTS_MODULES "-fmodules -Xclang -fmodules-local-submodule-visibility -fmodules-cache-path=module.cache" CMAKE_CXX_FLAGS) |
| 488 | else() |
| 489 | message(FATAL_ERROR "LLVM_ENABLE_MODULES is not supported by this compiler") |
| 490 | endif() |
| 491 | endif(LLVM_ENABLE_MODULES) |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 492 | endif( MSVC ) |
| 493 | |
Alexey Samsonov | 75789a2 | 2013-03-26 07:49:46 +0000 | [diff] [blame] | 494 | macro(append_common_sanitizer_flags) |
Reid Kleckner | d7a568f | 2015-08-14 16:48:34 +0000 | [diff] [blame] | 495 | if (NOT MSVC) |
| 496 | # Append -fno-omit-frame-pointer and turn on debug info to get better |
| 497 | # stack traces. |
| 498 | add_flag_if_supported("-fno-omit-frame-pointer" FNO_OMIT_FRAME_POINTER) |
| 499 | if (NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG" AND |
Reid Kleckner | 38b8938 | 2015-08-25 16:06:40 +0000 | [diff] [blame] | 500 | NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "RELWITHDEBINFO") |
Reid Kleckner | d7a568f | 2015-08-14 16:48:34 +0000 | [diff] [blame] | 501 | add_flag_if_supported("-gline-tables-only" GLINE_TABLES_ONLY) |
| 502 | endif() |
| 503 | # Use -O1 even in debug mode, otherwise sanitizers slowdown is too large. |
| 504 | if (uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG") |
| 505 | add_flag_if_supported("-O1" O1) |
| 506 | endif() |
| 507 | elseif (CLANG_CL) |
| 508 | # Keep frame pointers around. |
| 509 | append("/Oy-" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
| 510 | if (CMAKE_LINKER MATCHES "lld-link.exe") |
| 511 | # Use DWARF debug info with LLD. |
| 512 | append("-gdwarf" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
| 513 | else() |
| 514 | # Enable codeview otherwise. |
| 515 | append("/Z7" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
| 516 | endif() |
| 517 | # Always ask the linker to produce symbols with asan. |
| 518 | append("-debug" CMAKE_EXE_LINKER_FLAGS CMAKE_MODULE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS) |
Alexey Samsonov | f9ab351 | 2013-09-02 09:15:01 +0000 | [diff] [blame] | 519 | endif() |
Alexey Samsonov | 75789a2 | 2013-03-26 07:49:46 +0000 | [diff] [blame] | 520 | endmacro() |
| 521 | |
| 522 | # Turn on sanitizers if necessary. |
| 523 | if(LLVM_USE_SANITIZER) |
| 524 | if (LLVM_ON_UNIX) |
| 525 | if (LLVM_USE_SANITIZER STREQUAL "Address") |
| 526 | append_common_sanitizer_flags() |
Alp Toker | 696b4a0 | 2014-07-09 06:27:05 +0000 | [diff] [blame] | 527 | append("-fsanitize=address" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
Alexey Samsonov | 75789a2 | 2013-03-26 07:49:46 +0000 | [diff] [blame] | 528 | elseif (LLVM_USE_SANITIZER MATCHES "Memory(WithOrigins)?") |
| 529 | append_common_sanitizer_flags() |
Alp Toker | 696b4a0 | 2014-07-09 06:27:05 +0000 | [diff] [blame] | 530 | append("-fsanitize=memory" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
Alexey Samsonov | 75789a2 | 2013-03-26 07:49:46 +0000 | [diff] [blame] | 531 | if(LLVM_USE_SANITIZER STREQUAL "MemoryWithOrigins") |
Alp Toker | 696b4a0 | 2014-07-09 06:27:05 +0000 | [diff] [blame] | 532 | append("-fsanitize-memory-track-origins" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
Alexey Samsonov | 75789a2 | 2013-03-26 07:49:46 +0000 | [diff] [blame] | 533 | endif() |
Alexey Samsonov | 4ee2675 | 2014-08-29 00:50:36 +0000 | [diff] [blame] | 534 | elseif (LLVM_USE_SANITIZER STREQUAL "Undefined") |
| 535 | append_common_sanitizer_flags() |
Justin Bogner | 8c8fb16 | 2015-05-14 04:52:57 +0000 | [diff] [blame] | 536 | append("-fsanitize=undefined -fno-sanitize=vptr,function -fno-sanitize-recover=all" |
Alexey Samsonov | 4ee2675 | 2014-08-29 00:50:36 +0000 | [diff] [blame] | 537 | CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
Eric Fiselier | be6705d | 2014-11-18 21:23:38 +0000 | [diff] [blame] | 538 | elseif (LLVM_USE_SANITIZER STREQUAL "Thread") |
| 539 | append_common_sanitizer_flags() |
| 540 | append("-fsanitize=thread" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
Filipe Cabecinhas | b36685e | 2015-02-04 22:33:31 +0000 | [diff] [blame] | 541 | elseif (LLVM_USE_SANITIZER STREQUAL "Address;Undefined" OR |
| 542 | LLVM_USE_SANITIZER STREQUAL "Undefined;Address") |
| 543 | append_common_sanitizer_flags() |
Justin Bogner | 8c8fb16 | 2015-05-14 04:52:57 +0000 | [diff] [blame] | 544 | append("-fsanitize=address,undefined -fno-sanitize=vptr,function -fno-sanitize-recover=all" |
Filipe Cabecinhas | b36685e | 2015-02-04 22:33:31 +0000 | [diff] [blame] | 545 | CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
Alexey Samsonov | 75789a2 | 2013-03-26 07:49:46 +0000 | [diff] [blame] | 546 | else() |
Justin Bogner | 1ded698 | 2015-09-01 05:45:07 +0000 | [diff] [blame] | 547 | message(FATAL_ERROR "Unsupported value of LLVM_USE_SANITIZER: ${LLVM_USE_SANITIZER}") |
Alexey Samsonov | 75789a2 | 2013-03-26 07:49:46 +0000 | [diff] [blame] | 548 | endif() |
Reid Kleckner | d7a568f | 2015-08-14 16:48:34 +0000 | [diff] [blame] | 549 | elseif(MSVC) |
| 550 | if (LLVM_USE_SANITIZER STREQUAL "Address") |
| 551 | append_common_sanitizer_flags() |
| 552 | append("-fsanitize=address" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
| 553 | else() |
Justin Bogner | 1ded698 | 2015-09-01 05:45:07 +0000 | [diff] [blame] | 554 | message(FATAL_ERROR "This sanitizer not yet supported in the MSVC environment: ${LLVM_USE_SANITIZER}") |
Reid Kleckner | d7a568f | 2015-08-14 16:48:34 +0000 | [diff] [blame] | 555 | endif() |
Alexey Samsonov | 75789a2 | 2013-03-26 07:49:46 +0000 | [diff] [blame] | 556 | else() |
Justin Bogner | 1ded698 | 2015-09-01 05:45:07 +0000 | [diff] [blame] | 557 | message(FATAL_ERROR "LLVM_USE_SANITIZER is not supported on this platform.") |
Alexey Samsonov | 75789a2 | 2013-03-26 07:49:46 +0000 | [diff] [blame] | 558 | endif() |
Kostya Serebryany | 869b867 | 2015-01-27 17:59:28 +0000 | [diff] [blame] | 559 | if (LLVM_USE_SANITIZE_COVERAGE) |
Kostya Serebryany | 1ac8055 | 2015-05-08 21:30:55 +0000 | [diff] [blame] | 560 | append("-fsanitize-coverage=edge,indirect-calls,8bit-counters,trace-cmp" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
Kostya Serebryany | 869b867 | 2015-01-27 17:59:28 +0000 | [diff] [blame] | 561 | endif() |
Alexey Samsonov | 75789a2 | 2013-03-26 07:49:46 +0000 | [diff] [blame] | 562 | endif() |
| 563 | |
Eric Christopher | 3987806 | 2013-07-30 21:44:10 +0000 | [diff] [blame] | 564 | # Turn on -gsplit-dwarf if requested |
| 565 | if(LLVM_USE_SPLIT_DWARF) |
Peter Collingbourne | a7d1751 | 2014-10-22 19:49:19 +0000 | [diff] [blame] | 566 | add_definitions("-gsplit-dwarf") |
Eric Christopher | 3987806 | 2013-07-30 21:44:10 +0000 | [diff] [blame] | 567 | endif() |
| 568 | |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 569 | add_llvm_definitions( -D__STDC_CONSTANT_MACROS ) |
NAKAMURA Takumi | c5554c9 | 2011-10-11 12:51:44 +0000 | [diff] [blame] | 570 | add_llvm_definitions( -D__STDC_FORMAT_MACROS ) |
NAKAMURA Takumi | e63cd19 | 2011-10-11 12:51:36 +0000 | [diff] [blame] | 571 | add_llvm_definitions( -D__STDC_LIMIT_MACROS ) |
Arnaud A. de Grandmaison | 916f3cc | 2013-05-29 20:41:35 +0000 | [diff] [blame] | 572 | |
| 573 | # clang doesn't print colored diagnostics when invoked from Ninja |
Rafael Espindola | 6f2564c | 2013-06-14 19:41:05 +0000 | [diff] [blame] | 574 | if (UNIX AND |
| 575 | CMAKE_CXX_COMPILER_ID STREQUAL "Clang" AND |
| 576 | CMAKE_GENERATOR STREQUAL "Ninja") |
| 577 | append("-fcolor-diagnostics" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
Arnaud A. de Grandmaison | 916f3cc | 2013-05-29 20:41:35 +0000 | [diff] [blame] | 578 | endif() |
NAKAMURA Takumi | bb50bce | 2014-01-28 09:43:55 +0000 | [diff] [blame] | 579 | |
| 580 | # Add flags for add_dead_strip(). |
| 581 | # FIXME: With MSVS, consider compiling with /Gy and linking with /OPT:REF? |
| 582 | # But MinSizeRel seems to add that automatically, so maybe disable these |
| 583 | # flags instead if LLVM_NO_DEAD_STRIP is set. |
| 584 | if(NOT CYGWIN AND NOT WIN32) |
Rafael Espindola | 9c5701f | 2015-04-06 14:34:43 +0000 | [diff] [blame] | 585 | if(NOT ${CMAKE_SYSTEM_NAME} MATCHES "Darwin" AND |
| 586 | NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG") |
Alexey Samsonov | 482beff | 2014-02-04 08:15:46 +0000 | [diff] [blame] | 587 | check_c_compiler_flag("-Werror -fno-function-sections" C_SUPPORTS_FNO_FUNCTION_SECTIONS) |
| 588 | if (C_SUPPORTS_FNO_FUNCTION_SECTIONS) |
| 589 | # Don't add -ffunction-section if it can be disabled with -fno-function-sections. |
| 590 | # Doing so will break sanitizers. |
Alp Toker | 0068397 | 2014-07-09 03:38:19 +0000 | [diff] [blame] | 591 | add_flag_if_supported("-ffunction-sections" FFUNCTION_SECTIONS) |
Evgeniy Stepanov | c7b7e25 | 2014-02-03 13:57:09 +0000 | [diff] [blame] | 592 | endif() |
Alp Toker | 0068397 | 2014-07-09 03:38:19 +0000 | [diff] [blame] | 593 | add_flag_if_supported("-fdata-sections" FDATA_SECTIONS) |
NAKAMURA Takumi | bb50bce | 2014-01-28 09:43:55 +0000 | [diff] [blame] | 594 | endif() |
| 595 | endif() |
NAKAMURA Takumi | a679f43 | 2014-01-28 09:44:06 +0000 | [diff] [blame] | 596 | |
NAKAMURA Takumi | f816123 | 2014-03-16 13:51:24 +0000 | [diff] [blame] | 597 | if(CYGWIN OR MINGW) |
| 598 | # Prune --out-implib from executables. It doesn't make sense even |
| 599 | # with --export-all-symbols. |
| 600 | string(REGEX REPLACE "-Wl,--out-implib,[^ ]+ " " " |
| 601 | CMAKE_C_LINK_EXECUTABLE "${CMAKE_C_LINK_EXECUTABLE}") |
| 602 | string(REGEX REPLACE "-Wl,--out-implib,[^ ]+ " " " |
| 603 | CMAKE_CXX_LINK_EXECUTABLE "${CMAKE_CXX_LINK_EXECUTABLE}") |
| 604 | endif() |
| 605 | |
NAKAMURA Takumi | a679f43 | 2014-01-28 09:44:06 +0000 | [diff] [blame] | 606 | if(MSVC) |
| 607 | # Remove flags here, for exceptions and RTTI. |
NAKAMURA Takumi | ac62464 | 2014-01-31 17:32:36 +0000 | [diff] [blame] | 608 | # Each target property or source property should be responsible to control |
| 609 | # them. |
NAKAMURA Takumi | a679f43 | 2014-01-28 09:44:06 +0000 | [diff] [blame] | 610 | # CL.EXE complains to override flags like "/GR /GR-". |
| 611 | string(REGEX REPLACE "(^| ) */EH[-cs]+ *( |$)" "\\1 \\2" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}") |
| 612 | string(REGEX REPLACE "(^| ) */GR-? *( |$)" "\\1 \\2" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}") |
| 613 | endif() |
NAKAMURA Takumi | 8d7a173 | 2014-07-04 04:45:40 +0000 | [diff] [blame] | 614 | |
Dan Liew | a5bdc84 | 2014-07-22 15:41:18 +0000 | [diff] [blame] | 615 | # Provide public options to globally control RTTI and EH |
| 616 | option(LLVM_ENABLE_EH "Enable Exception handling" OFF) |
| 617 | option(LLVM_ENABLE_RTTI "Enable run time type information" OFF) |
| 618 | if(LLVM_ENABLE_EH AND NOT LLVM_ENABLE_RTTI) |
| 619 | message(FATAL_ERROR "Exception handling requires RTTI. You must set LLVM_ENABLE_RTTI to ON") |
| 620 | endif() |
| 621 | |
Chris Bieneman | dbdec57 | 2015-12-10 21:19:07 +0000 | [diff] [blame] | 622 | option(LLVM_BUILD_INSTRUMENTED "Build LLVM and tools with PGO instrumentation (experimental)" Off) |
| 623 | mark_as_advanced(LLVM_BUILD_INSTRUMENTED) |
| 624 | append_if(LLVM_BUILD_INSTRUMENTED "-fprofile-instr-generate" |
| 625 | CMAKE_CXX_FLAGS |
| 626 | CMAKE_C_FLAGS |
| 627 | CMAKE_EXE_LINKER_FLAGS |
| 628 | CMAKE_SHARED_LINKER_FLAGS) |
| 629 | |
Justin Bogner | 740f2ca | 2016-02-08 21:55:19 +0000 | [diff] [blame] | 630 | set(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 Bogner | 9fd2039 | 2016-02-08 21:01:24 +0000 | [diff] [blame] | 631 | string(TOUPPER "${LLVM_ENABLE_LTO}" uppercase_LLVM_ENABLE_LTO) |
| 632 | if(uppercase_LLVM_ENABLE_LTO STREQUAL "THIN") |
| 633 | append("-flto=thin" CMAKE_CXX_FLAGS CMAKE_C_FLAGS |
| 634 | CMAKE_EXE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS) |
| 635 | elseif(uppercase_LLVM_ENABLE_LTO STREQUAL "FULL") |
| 636 | append("-flto=full" CMAKE_CXX_FLAGS CMAKE_C_FLAGS |
| 637 | CMAKE_EXE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS) |
| 638 | elseif(LLVM_ENABLE_LTO) |
| 639 | append("-flto" CMAKE_CXX_FLAGS CMAKE_C_FLAGS |
| 640 | CMAKE_EXE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS) |
| 641 | endif() |
Justin Bogner | e12385b | 2016-02-04 07:28:30 +0000 | [diff] [blame] | 642 | |
NAKAMURA Takumi | 8d7a173 | 2014-07-04 04:45:40 +0000 | [diff] [blame] | 643 | # Plugin support |
| 644 | # FIXME: Make this configurable. |
Reid Kleckner | b7a1382 | 2016-02-10 01:06:37 +0000 | [diff] [blame] | 645 | if(WIN32 OR CYGWIN) |
NAKAMURA Takumi | b5bb1e2 | 2014-07-13 13:47:37 +0000 | [diff] [blame] | 646 | if(BUILD_SHARED_LIBS) |
| 647 | set(LLVM_ENABLE_PLUGINS ON) |
| 648 | else() |
| 649 | set(LLVM_ENABLE_PLUGINS OFF) |
| 650 | endif() |
NAKAMURA Takumi | 8d7a173 | 2014-07-04 04:45:40 +0000 | [diff] [blame] | 651 | else() |
| 652 | set(LLVM_ENABLE_PLUGINS ON) |
| 653 | endif() |