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