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) |
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 | |
Bob Haarman | f947d8d | 2017-03-01 19:22:18 +0000 | [diff] [blame] | 14 | if(CMAKE_LINKER MATCHES "lld-link.exe" OR (WIN32 AND LLVM_USE_LINKER STREQUAL "lld")) |
| 15 | set(LINKER_IS_LLD_LINK TRUE) |
| 16 | else() |
| 17 | set(LINKER_IS_LLD_LINK FALSE) |
| 18 | endif() |
| 19 | |
Chris Bieneman | d8ec442 | 2017-02-07 19:06:22 +0000 | [diff] [blame] | 20 | # Ninja Job Pool support |
| 21 | # The following only works with the Ninja generator in CMake >= 3.0. |
| 22 | set(LLVM_PARALLEL_COMPILE_JOBS "" CACHE STRING |
| 23 | "Define the maximum number of concurrent compilation jobs.") |
| 24 | if(LLVM_PARALLEL_COMPILE_JOBS) |
| 25 | if(NOT CMAKE_MAKE_PROGRAM MATCHES "ninja") |
| 26 | message(WARNING "Job pooling is only available with Ninja generators.") |
| 27 | else() |
| 28 | set_property(GLOBAL APPEND PROPERTY JOB_POOLS compile_job_pool=${LLVM_PARALLEL_COMPILE_JOBS}) |
| 29 | set(CMAKE_JOB_POOL_COMPILE compile_job_pool) |
| 30 | endif() |
| 31 | endif() |
| 32 | |
| 33 | set(LLVM_PARALLEL_LINK_JOBS "" CACHE STRING |
| 34 | "Define the maximum number of concurrent link jobs.") |
| 35 | if(LLVM_PARALLEL_LINK_JOBS) |
| 36 | if(NOT CMAKE_MAKE_PROGRAM MATCHES "ninja") |
| 37 | message(WARNING "Job pooling is only available with Ninja generators.") |
| 38 | else() |
| 39 | set_property(GLOBAL APPEND PROPERTY JOB_POOLS link_job_pool=${LLVM_PARALLEL_LINK_JOBS}) |
| 40 | set(CMAKE_JOB_POOL_LINK link_job_pool) |
| 41 | endif() |
| 42 | endif() |
| 43 | |
Chandler Carruth | 8388597 | 2014-01-13 22:21:34 +0000 | [diff] [blame] | 44 | |
Bob Haarman | f947d8d | 2017-03-01 19:22:18 +0000 | [diff] [blame] | 45 | if (LINKER_IS_LLD_LINK) |
Reid Kleckner | 841e5a0 | 2016-01-22 23:27:13 +0000 | [diff] [blame] | 46 | # Pass /MANIFEST:NO so that CMake doesn't run mt.exe on our binaries. Adding |
| 47 | # manifests with mt.exe breaks LLD's symbol tables and takes as much time as |
| 48 | # the link. See PR24476. |
| 49 | append("/MANIFEST:NO" |
| 50 | CMAKE_EXE_LINKER_FLAGS CMAKE_MODULE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS) |
| 51 | endif() |
| 52 | |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 53 | if( LLVM_ENABLE_ASSERTIONS ) |
| 54 | # MSVC doesn't like _DEBUG on release builds. See PR 4379. |
| 55 | if( NOT MSVC ) |
| 56 | add_definitions( -D_DEBUG ) |
| 57 | endif() |
Duncan Sands | 80f122f | 2013-07-17 09:34:51 +0000 | [diff] [blame] | 58 | # On non-Debug builds cmake automatically defines NDEBUG, so we |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 59 | # explicitly undefine it: |
Duncan Sands | 80f122f | 2013-07-17 09:34:51 +0000 | [diff] [blame] | 60 | if( NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG" ) |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 61 | add_definitions( -UNDEBUG ) |
Reid Kleckner | c1c01d5 | 2013-04-07 01:45:01 +0000 | [diff] [blame] | 62 | # Also remove /D NDEBUG to avoid MSVC warnings about conflicting defines. |
Reid Kleckner | 472e6b4 | 2014-05-19 21:13:41 +0000 | [diff] [blame] | 63 | foreach (flags_var_to_scrub |
| 64 | CMAKE_CXX_FLAGS_RELEASE |
| 65 | CMAKE_CXX_FLAGS_RELWITHDEBINFO |
| 66 | CMAKE_CXX_FLAGS_MINSIZEREL |
| 67 | CMAKE_C_FLAGS_RELEASE |
| 68 | CMAKE_C_FLAGS_RELWITHDEBINFO |
| 69 | CMAKE_C_FLAGS_MINSIZEREL) |
| 70 | string (REGEX REPLACE "(^| )[/-]D *NDEBUG($| )" " " |
| 71 | "${flags_var_to_scrub}" "${${flags_var_to_scrub}}") |
| 72 | endforeach() |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 73 | endif() |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 74 | endif() |
| 75 | |
Filipe Cabecinhas | 0da9937 | 2016-04-29 15:22:48 +0000 | [diff] [blame] | 76 | if(LLVM_ENABLE_EXPENSIVE_CHECKS) |
| 77 | add_definitions(-DEXPENSIVE_CHECKS) |
| 78 | add_definitions(-D_GLIBCXX_DEBUG) |
| 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) |
Chandler Carruth | 2aff750 | 2016-07-19 22:46:39 +0000 | [diff] [blame] | 111 | if(APPLE OR ${CMAKE_SYSTEM_NAME} MATCHES "AIX") |
Nico Weber | c27118d | 2013-12-28 23:31:44 +0000 | [diff] [blame] | 112 | set(LLVM_HAVE_LINK_VERSION_SCRIPT 0) |
Chandler Carruth | 2aff750 | 2016-07-19 22:46:39 +0000 | [diff] [blame] | 113 | else() |
Nico Weber | c27118d | 2013-12-28 23:31:44 +0000 | [diff] [blame] | 114 | set(LLVM_HAVE_LINK_VERSION_SCRIPT 1) |
Chandler Carruth | 2aff750 | 2016-07-19 22:46:39 +0000 | [diff] [blame] | 115 | endif() |
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) |
Petr Hosek | e4521c3 | 2016-11-17 20:22:49 +0000 | [diff] [blame] | 128 | if(LLVM_ENABLE_LLD AND LLVM_ENABLE_LTO) |
| 129 | message(FATAL_ERROR "lld does not support LTO on Darwin") |
| 130 | endif() |
NAKAMURA Takumi | 58f6e74 | 2014-02-13 11:19:11 +0000 | [diff] [blame] | 131 | # Darwin-specific linker flags for loadable modules. |
| 132 | set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,-flat_namespace -Wl,-undefined -Wl,suppress") |
| 133 | endif() |
| 134 | |
Rafael Espindola | bb5d09f | 2015-01-22 14:06:51 +0000 | [diff] [blame] | 135 | # Pass -Wl,-z,defs. This makes sure all symbols are defined. Otherwise a DSO |
| 136 | # build might work on ELF but fail on MachO/COFF. |
Yaron Keren | 5519ad3 | 2015-07-23 08:06:12 +0000 | [diff] [blame] | 137 | if(NOT (${CMAKE_SYSTEM_NAME} MATCHES "Darwin" OR WIN32 OR CYGWIN OR |
Yaron Keren | cf24bbb | 2015-11-21 06:33:54 +0000 | [diff] [blame] | 138 | ${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD" OR |
| 139 | ${CMAKE_SYSTEM_NAME} MATCHES "OpenBSD") AND |
Rafael Espindola | 19b5384 | 2015-01-22 20:57:30 +0000 | [diff] [blame] | 140 | NOT LLVM_USE_SANITIZER) |
Rafael Espindola | bb5d09f | 2015-01-22 14:06:51 +0000 | [diff] [blame] | 141 | set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,-z,defs") |
| 142 | endif() |
| 143 | |
| 144 | |
Duncan Sands | 71de6dc | 2013-03-25 13:25:34 +0000 | [diff] [blame] | 145 | function(append value) |
| 146 | foreach(variable ${ARGN}) |
Alexey Samsonov | 6706578 | 2013-03-13 20:50:23 +0000 | [diff] [blame] | 147 | set(${variable} "${${variable}} ${value}" PARENT_SCOPE) |
Duncan Sands | 71de6dc | 2013-03-25 13:25:34 +0000 | [diff] [blame] | 148 | endforeach(variable) |
| 149 | endfunction() |
| 150 | |
| 151 | function(append_if condition value) |
| 152 | if (${condition}) |
| 153 | foreach(variable ${ARGN}) |
| 154 | set(${variable} "${${variable}} ${value}" PARENT_SCOPE) |
| 155 | endforeach(variable) |
Alexey Samsonov | 6706578 | 2013-03-13 20:50:23 +0000 | [diff] [blame] | 156 | endif() |
| 157 | endfunction() |
| 158 | |
Alp Toker | 0068397 | 2014-07-09 03:38:19 +0000 | [diff] [blame] | 159 | macro(add_flag_if_supported flag name) |
| 160 | check_c_compiler_flag("-Werror ${flag}" "C_SUPPORTS_${name}") |
| 161 | append_if("C_SUPPORTS_${name}" "${flag}" CMAKE_C_FLAGS) |
| 162 | check_cxx_compiler_flag("-Werror ${flag}" "CXX_SUPPORTS_${name}") |
| 163 | append_if("CXX_SUPPORTS_${name}" "${flag}" CMAKE_CXX_FLAGS) |
Alexey Samsonov | 75789a2 | 2013-03-26 07:49:46 +0000 | [diff] [blame] | 164 | endmacro() |
| 165 | |
Alp Toker | 0068397 | 2014-07-09 03:38:19 +0000 | [diff] [blame] | 166 | function(add_flag_or_print_warning flag name) |
| 167 | check_c_compiler_flag("-Werror ${flag}" "C_SUPPORTS_${name}") |
| 168 | check_cxx_compiler_flag("-Werror ${flag}" "CXX_SUPPORTS_${name}") |
Richard Smith | ca9ae10 | 2014-09-26 21:35:48 +0000 | [diff] [blame] | 169 | if (C_SUPPORTS_${name} AND CXX_SUPPORTS_${name}) |
Alp Toker | 0068397 | 2014-07-09 03:38:19 +0000 | [diff] [blame] | 170 | message(STATUS "Building with ${flag}") |
| 171 | set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${flag}" PARENT_SCOPE) |
| 172 | set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${flag}" PARENT_SCOPE) |
Douglas Katzman | 280ee91 | 2015-07-28 14:43:53 +0000 | [diff] [blame] | 173 | set(CMAKE_ASM_FLAGS "${CMAKE_ASM_FLAGS} ${flag}" PARENT_SCOPE) |
Alp Toker | 0068397 | 2014-07-09 03:38:19 +0000 | [diff] [blame] | 174 | else() |
| 175 | message(WARNING "${flag} is not supported.") |
| 176 | endif() |
| 177 | endfunction() |
| 178 | |
Mehdi Amini | 284ac3c9 | 2017-01-15 03:21:30 +0000 | [diff] [blame] | 179 | if( LLVM_ENABLE_LLD ) |
| 180 | if ( LLVM_USE_LINKER ) |
| 181 | message(FATAL_ERROR "LLVM_ENABLE_LLD and LLVM_USE_LINKER can't be set at the same time") |
| 182 | endif() |
| 183 | set(LLVM_USE_LINKER "lld") |
| 184 | endif() |
| 185 | |
| 186 | if( LLVM_USE_LINKER ) |
| 187 | check_cxx_compiler_flag("-fuse-ld=${LLVM_USE_LINKER}" CXX_SUPPORTS_CUSTOM_LINKER) |
| 188 | if ( NOT CXX_SUPPORTS_CUSTOM_LINKER ) |
| 189 | message(FATAL_ERROR "Host compiler does not support '-fuse-ld=${LLVM_USE_LINKER}'") |
| 190 | endif() |
| 191 | append("-fuse-ld=${LLVM_USE_LINKER}" |
Eugene Zelenko | bbbf7b5 | 2016-07-29 00:46:13 +0000 | [diff] [blame] | 192 | CMAKE_EXE_LINKER_FLAGS CMAKE_MODULE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS) |
| 193 | endif() |
| 194 | |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 195 | if( LLVM_ENABLE_PIC ) |
| 196 | if( XCODE ) |
| 197 | # Xcode has -mdynamic-no-pic on by default, which overrides -fPIC. I don't |
| 198 | # know how to disable this, so just force ENABLE_PIC off for now. |
| 199 | message(WARNING "-fPIC not supported with Xcode.") |
NAKAMURA Takumi | 1b745d0 | 2011-12-16 06:21:08 +0000 | [diff] [blame] | 200 | elseif( WIN32 OR CYGWIN) |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 201 | # On Windows all code is PIC. MinGW warns if -fPIC is used. |
| 202 | else() |
Alp Toker | 0068397 | 2014-07-09 03:38:19 +0000 | [diff] [blame] | 203 | add_flag_or_print_warning("-fPIC" FPIC) |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 204 | endif() |
| 205 | endif() |
| 206 | |
Chris Bieneman | 6b43f1f | 2015-11-18 22:49:26 +0000 | [diff] [blame] | 207 | if(NOT WIN32 AND NOT CYGWIN) |
| 208 | # MinGW warns if -fvisibility-inlines-hidden is used. |
| 209 | check_cxx_compiler_flag("-fvisibility-inlines-hidden" SUPPORTS_FVISIBILITY_INLINES_HIDDEN_FLAG) |
| 210 | append_if(SUPPORTS_FVISIBILITY_INLINES_HIDDEN_FLAG "-fvisibility-inlines-hidden" CMAKE_CXX_FLAGS) |
| 211 | endif() |
| 212 | |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 213 | if( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 ) |
| 214 | # TODO: support other platforms and toolchains. |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 215 | if( LLVM_BUILD_32_BITS ) |
| 216 | message(STATUS "Building 32 bits executables and libraries.") |
NAKAMURA Takumi | 500b0a4 | 2016-06-06 05:54:55 +0000 | [diff] [blame] | 217 | set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -m32") |
| 218 | set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -m32") |
Tim Northover | f6e29c4 | 2012-05-23 18:42:02 +0000 | [diff] [blame] | 219 | set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -m32") |
| 220 | set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -m32") |
Tobias Grosser | b32ad40 | 2012-06-08 09:41:23 +0000 | [diff] [blame] | 221 | set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -m32") |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 222 | endif( LLVM_BUILD_32_BITS ) |
| 223 | endif( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 ) |
| 224 | |
Nitesh Jain | 0032fae | 2017-04-24 10:36:46 +0000 | [diff] [blame^] | 225 | # If building on a GNU specific 32-bit system, make sure off_t is 64 bits |
| 226 | # so that off_t can stored offset > 2GB |
| 227 | if( CMAKE_SIZEOF_VOID_P EQUAL 4 ) |
| 228 | add_definitions( -D_LARGEFILE_SOURCE ) |
| 229 | add_definitions( -D_FILE_OFFSET_BITS=64 ) |
| 230 | endif() |
| 231 | |
Ted Kremenek | 68af845 | 2014-03-13 06:37:28 +0000 | [diff] [blame] | 232 | if( XCODE ) |
| 233 | # For Xcode enable several build settings that correspond to |
| 234 | # many warnings that are on by default in Clang but are |
| 235 | # not enabled for historical reasons. For versions of Xcode |
| 236 | # that do not support these options they will simply |
| 237 | # be ignored. |
| 238 | set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_ABOUT_RETURN_TYPE "YES") |
| 239 | set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_ABOUT_MISSING_NEWLINE "YES") |
| 240 | set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_UNUSED_VALUE "YES") |
| 241 | set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_UNUSED_VARIABLE "YES") |
| 242 | set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_SIGN_COMPARE "YES") |
| 243 | set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_UNUSED_FUNCTION "YES") |
| 244 | set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED "YES") |
| 245 | set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_HIDDEN_VIRTUAL_FUNCTIONS "YES") |
| 246 | set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_UNINITIALIZED_AUTOS "YES") |
| 247 | set(CMAKE_XCODE_ATTRIBUTE_CLANG_WARN_BOOL_CONVERSION "YES") |
| 248 | set(CMAKE_XCODE_ATTRIBUTE_CLANG_WARN_EMPTY_BODY "YES") |
| 249 | set(CMAKE_XCODE_ATTRIBUTE_CLANG_WARN_ENUM_CONVERSION "YES") |
| 250 | set(CMAKE_XCODE_ATTRIBUTE_CLANG_WARN_INT_CONVERSION "YES") |
| 251 | set(CMAKE_XCODE_ATTRIBUTE_CLANG_WARN_CONSTANT_CONVERSION "YES") |
| 252 | set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_NON_VIRTUAL_DESTRUCTOR "YES") |
| 253 | endif() |
| 254 | |
NAKAMURA Takumi | a83601d | 2012-04-21 14:50:56 +0000 | [diff] [blame] | 255 | # On Win32 using MS tools, provide an option to set the number of parallel jobs |
| 256 | # to use. |
NAKAMURA Takumi | 75bfe69 | 2012-04-21 14:51:02 +0000 | [diff] [blame] | 257 | if( MSVC_IDE ) |
Oscar Fuentes | 318c3f1 | 2011-03-02 17:47:37 +0000 | [diff] [blame] | 258 | set(LLVM_COMPILER_JOBS "0" CACHE STRING |
| 259 | "Number of parallel compiler jobs. 0 means use all processors. Default is 0.") |
| 260 | if( NOT LLVM_COMPILER_JOBS STREQUAL "1" ) |
| 261 | if( LLVM_COMPILER_JOBS STREQUAL "0" ) |
Serge Pavlov | 23be945 | 2017-03-21 04:03:24 +0000 | [diff] [blame] | 262 | add_definitions( /MP ) |
Oscar Fuentes | 318c3f1 | 2011-03-02 17:47:37 +0000 | [diff] [blame] | 263 | else() |
Yaron Keren | e485511 | 2014-03-25 09:34:20 +0000 | [diff] [blame] | 264 | message(STATUS "Number of parallel compiler jobs set to " ${LLVM_COMPILER_JOBS}) |
Serge Pavlov | 23be945 | 2017-03-21 04:03:24 +0000 | [diff] [blame] | 265 | add_definitions( /MP${LLVM_COMPILER_JOBS} ) |
Oscar Fuentes | 318c3f1 | 2011-03-02 17:47:37 +0000 | [diff] [blame] | 266 | endif() |
| 267 | else() |
| 268 | message(STATUS "Parallel compilation disabled") |
| 269 | endif() |
| 270 | endif() |
| 271 | |
NAKAMURA Takumi | 96a6c49 | 2016-08-31 22:43:23 +0000 | [diff] [blame] | 272 | # set stack reserved size to ~10MB |
| 273 | if(MSVC) |
| 274 | # CMake previously automatically set this value for MSVC builds, but the |
| 275 | # behavior was changed in CMake 2.8.11 (Issue 12437) to use the MSVC default |
| 276 | # value (1 MB) which is not enough for us in tasks such as parsing recursive |
| 277 | # C++ templates in Clang. |
| 278 | set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /STACK:10000000") |
| 279 | elseif(MINGW) # FIXME: Also cygwin? |
| 280 | set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,--stack,16777216") |
Reid Kleckner | c2b5663 | 2016-12-22 19:12:14 +0000 | [diff] [blame] | 281 | |
| 282 | # Pass -mbig-obj to mingw gas on Win64. COFF has a 2**16 section limit, and |
| 283 | # on Win64, every COMDAT function creates at least 3 sections: .text, .pdata, |
| 284 | # and .xdata. |
| 285 | if (CMAKE_SIZEOF_VOID_P EQUAL 8) |
| 286 | append("-Wa,-mbig-obj" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
| 287 | endif() |
NAKAMURA Takumi | 96a6c49 | 2016-08-31 22:43:23 +0000 | [diff] [blame] | 288 | endif() |
| 289 | |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 290 | if( MSVC ) |
Yaron Keren | 528d8d6 | 2015-08-21 17:31:03 +0000 | [diff] [blame] | 291 | if( CMAKE_CXX_COMPILER_VERSION VERSION_LESS 19.0 ) |
| 292 | # For MSVC 2013, disable iterator null pointer checking in debug mode, |
| 293 | # especially so std::equal(nullptr, nullptr, nullptr) will not assert. |
Serge Pavlov | 23be945 | 2017-03-21 04:03:24 +0000 | [diff] [blame] | 294 | add_definitions("-D_DEBUG_POINTER_IMPL=") |
Yaron Keren | 528d8d6 | 2015-08-21 17:31:03 +0000 | [diff] [blame] | 295 | endif() |
| 296 | |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 297 | include(ChooseMSVCCRT) |
| 298 | |
Yaron Keren | e485511 | 2014-03-25 09:34:20 +0000 | [diff] [blame] | 299 | if( MSVC11 ) |
Serge Pavlov | 23be945 | 2017-03-21 04:03:24 +0000 | [diff] [blame] | 300 | add_definitions(-D_VARIADIC_MAX=10) |
Michael J. Spencer | 35145f8 | 2012-03-01 22:42:52 +0000 | [diff] [blame] | 301 | endif() |
Greg Bedwell | 580defb | 2015-03-11 14:57:48 +0000 | [diff] [blame] | 302 | |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 303 | # Add definitions that make MSVC much less annoying. |
Serge Pavlov | 23be945 | 2017-03-21 04:03:24 +0000 | [diff] [blame] | 304 | add_definitions( |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 305 | # For some reason MS wants to deprecate a bunch of standard functions... |
| 306 | -D_CRT_SECURE_NO_DEPRECATE |
| 307 | -D_CRT_SECURE_NO_WARNINGS |
| 308 | -D_CRT_NONSTDC_NO_DEPRECATE |
| 309 | -D_CRT_NONSTDC_NO_WARNINGS |
| 310 | -D_SCL_SECURE_NO_DEPRECATE |
| 311 | -D_SCL_SECURE_NO_WARNINGS |
Greg Bedwell | 8aa3000 | 2015-03-19 16:32:47 +0000 | [diff] [blame] | 312 | ) |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 313 | |
Aaron Ballman | 2cd2a18 | 2016-06-23 19:02:09 +0000 | [diff] [blame] | 314 | # Tell MSVC to use the Unicode version of the Win32 APIs instead of ANSI. |
Serge Pavlov | 23be945 | 2017-03-21 04:03:24 +0000 | [diff] [blame] | 315 | add_definitions( |
Aaron Ballman | 2cd2a18 | 2016-06-23 19:02:09 +0000 | [diff] [blame] | 316 | -DUNICODE |
| 317 | -D_UNICODE |
| 318 | ) |
| 319 | |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 320 | if (LLVM_ENABLE_WERROR) |
Reid Kleckner | 9f3585d | 2017-03-16 17:05:16 +0000 | [diff] [blame] | 321 | append("/WX" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 322 | endif (LLVM_ENABLE_WERROR) |
Greg Bedwell | 8aa3000 | 2015-03-19 16:32:47 +0000 | [diff] [blame] | 323 | |
Rafael Espindola | f846557 | 2015-08-12 17:09:25 +0000 | [diff] [blame] | 324 | append("/Zc:inline" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
| 325 | |
Aaron Ballman | ce625e8 | 2016-01-25 14:17:39 +0000 | [diff] [blame] | 326 | # /Zc:strictStrings is incompatible with VS12's (Visual Studio 2013's) |
| 327 | # debug mode headers. Instead of only enabling them in VS2013's debug mode, |
| 328 | # we'll just enable them for Visual Studio 2015 (VS 14, MSVC_VERSION 1900) |
| 329 | # and up. |
| 330 | if (NOT (MSVC_VERSION LESS 1900)) |
| 331 | # Disable string literal const->non-const type conversion. |
| 332 | # "When specified, the compiler requires strict const-qualification |
| 333 | # conformance for pointers initialized by using string literals." |
| 334 | append("/Zc:strictStrings" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
| 335 | endif(NOT (MSVC_VERSION LESS 1900)) |
| 336 | |
| 337 | # "Generate Intrinsic Functions". |
| 338 | append("/Oi" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
| 339 | |
| 340 | # "Enforce type conversion rules". |
| 341 | append("/Zc:rvalueCast" CMAKE_CXX_FLAGS) |
| 342 | |
Bob Haarman | f947d8d | 2017-03-01 19:22:18 +0000 | [diff] [blame] | 343 | if (CMAKE_CXX_COMPILER_ID MATCHES "Clang" AND NOT LLVM_ENABLE_LTO) |
Nico Weber | 891419a | 2016-01-06 19:05:19 +0000 | [diff] [blame] | 344 | # clang-cl and cl by default produce non-deterministic binaries because |
| 345 | # link.exe /incremental requires a timestamp in the .obj file. clang-cl |
Chris Bieneman | 62de33c | 2016-05-05 19:57:03 +0000 | [diff] [blame] | 346 | # has the flag /Brepro to force deterministic binaries. We want to pass that |
Bob Haarman | f947d8d | 2017-03-01 19:22:18 +0000 | [diff] [blame] | 347 | # whenever you're building with clang unless you're passing /incremental |
| 348 | # or using LTO (/Brepro with LTO would result in a warning about the flag |
| 349 | # being unused, because we're not generating object files). |
Nico Weber | 891419a | 2016-01-06 19:05:19 +0000 | [diff] [blame] | 350 | # This checks CMAKE_CXX_COMPILER_ID in addition to check_cxx_compiler_flag() |
| 351 | # because cl.exe does not emit an error on flags it doesn't understand, |
| 352 | # letting check_cxx_compiler_flag() claim it understands all flags. |
| 353 | check_cxx_compiler_flag("/Brepro" SUPPORTS_BREPRO) |
Nico Weber | 891419a | 2016-01-06 19:05:19 +0000 | [diff] [blame] | 354 | if (SUPPORTS_BREPRO) |
| 355 | # Check if /INCREMENTAL is passed to the linker and complain that it |
| 356 | # won't work with /Brepro. |
| 357 | string(TOUPPER "${CMAKE_EXE_LINKER_FLAGS}" upper_exe_flags) |
| 358 | string(TOUPPER "${CMAKE_MODULE_LINKER_FLAGS}" upper_module_flags) |
| 359 | string(TOUPPER "${CMAKE_SHARED_LINKER_FLAGS}" upper_shared_flags) |
| 360 | |
Chris Bieneman | 62de33c | 2016-05-05 19:57:03 +0000 | [diff] [blame] | 361 | string(FIND "${upper_exe_flags} ${upper_module_flags} ${upper_shared_flags}" |
| 362 | "/INCREMENTAL" linker_flag_idx) |
Nico Weber | 891419a | 2016-01-06 19:05:19 +0000 | [diff] [blame] | 363 | |
Chris Bieneman | 62de33c | 2016-05-05 19:57:03 +0000 | [diff] [blame] | 364 | if (${linker_flag_idx} GREATER -1) |
| 365 | message(WARNING "/Brepro not compatible with /INCREMENTAL linking - builds will be non-deterministic") |
| 366 | else() |
| 367 | append("/Brepro" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
Nico Weber | 891419a | 2016-01-06 19:05:19 +0000 | [diff] [blame] | 368 | endif() |
| 369 | endif() |
| 370 | endif() |
| 371 | |
Oscar Fuentes | ab84a7b | 2011-05-11 13:53:08 +0000 | [diff] [blame] | 372 | elseif( LLVM_COMPILER_IS_GCC_COMPATIBLE ) |
Alexey Samsonov | cd083fe | 2014-03-13 13:08:47 +0000 | [diff] [blame] | 373 | append_if(LLVM_ENABLE_WERROR "-Werror" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
Chris Bieneman | 62de33c | 2016-05-05 19:57:03 +0000 | [diff] [blame] | 374 | add_flag_if_supported("-Werror=date-time" WERROR_DATE_TIME) |
Chandler Carruth | 25eacf7 | 2014-03-01 03:16:07 +0000 | [diff] [blame] | 375 | if (LLVM_ENABLE_CXX1Y) |
| 376 | check_cxx_compiler_flag("-std=c++1y" CXX_SUPPORTS_CXX1Y) |
| 377 | append_if(CXX_SUPPORTS_CXX1Y "-std=c++1y" CMAKE_CXX_FLAGS) |
| 378 | else() |
Arnaud A. de Grandmaison | b697b53 | 2013-11-26 10:33:53 +0000 | [diff] [blame] | 379 | check_cxx_compiler_flag("-std=c++11" CXX_SUPPORTS_CXX11) |
Chandler Carruth | 25eacf7 | 2014-03-01 03:16:07 +0000 | [diff] [blame] | 380 | if (CXX_SUPPORTS_CXX11) |
Rafael Espindola | 8b35074 | 2014-03-12 20:01:15 +0000 | [diff] [blame] | 381 | if (CYGWIN OR MINGW) |
| 382 | # MinGW and Cygwin are a bit stricter and lack things like |
| 383 | # 'strdup', 'stricmp', etc in c++11 mode. |
| 384 | append("-std=gnu++11" CMAKE_CXX_FLAGS) |
| 385 | else() |
| 386 | append("-std=c++11" CMAKE_CXX_FLAGS) |
| 387 | endif() |
Chandler Carruth | 25eacf7 | 2014-03-01 03:16:07 +0000 | [diff] [blame] | 388 | else() |
| 389 | message(FATAL_ERROR "LLVM requires C++11 support but the '-std=c++11' flag isn't supported.") |
| 390 | endif() |
| 391 | endif() |
Richard Smith | cdbecda | 2016-04-17 20:58:01 +0000 | [diff] [blame] | 392 | if (LLVM_ENABLE_MODULES) |
| 393 | set(OLD_CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS}) |
Vassil Vassilev | 71e9e44 | 2016-09-29 08:14:06 +0000 | [diff] [blame] | 394 | set(module_flags "-fmodules -fmodules-cache-path=${PROJECT_BINARY_DIR}/module.cache") |
Adrian Prantl | 48e7cbd | 2016-06-30 01:46:49 +0000 | [diff] [blame] | 395 | if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin") |
| 396 | # On Darwin -fmodules does not imply -fcxx-modules. |
| 397 | set(module_flags "${module_flags} -fcxx-modules") |
| 398 | endif() |
| 399 | if (LLVM_ENABLE_LOCAL_SUBMODULE_VISIBILITY) |
Adrian Prantl | 8a75ee9 | 2016-06-30 15:58:36 +0000 | [diff] [blame] | 400 | set(module_flags "${module_flags} -Xclang -fmodules-local-submodule-visibility") |
Adrian Prantl | 48e7cbd | 2016-06-30 01:46:49 +0000 | [diff] [blame] | 401 | endif() |
Adrian Prantl | 9f4ef63 | 2016-06-30 17:15:44 +0000 | [diff] [blame] | 402 | if (LLVM_ENABLE_MODULE_DEBUGGING AND |
| 403 | ((uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG") OR |
| 404 | (uppercase_CMAKE_BUILD_TYPE STREQUAL "RELWITHDEBINFO"))) |
| 405 | set(module_flags "${module_flags} -gmodules") |
| 406 | endif() |
Adrian Prantl | 48e7cbd | 2016-06-30 01:46:49 +0000 | [diff] [blame] | 407 | set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} ${module_flags}") |
| 408 | |
Richard Smith | cdbecda | 2016-04-17 20:58:01 +0000 | [diff] [blame] | 409 | # Check that we can build code with modules enabled, and that repeatedly |
| 410 | # including <cassert> still manages to respect NDEBUG properly. |
| 411 | CHECK_CXX_SOURCE_COMPILES("#undef NDEBUG |
| 412 | #include <cassert> |
| 413 | #define NDEBUG |
| 414 | #include <cassert> |
| 415 | int main() { assert(this code is not compiled); }" |
| 416 | CXX_SUPPORTS_MODULES) |
| 417 | set(CMAKE_REQUIRED_FLAGS ${OLD_CMAKE_REQUIRED_FLAGS}) |
| 418 | if (CXX_SUPPORTS_MODULES) |
Adrian Prantl | 48e7cbd | 2016-06-30 01:46:49 +0000 | [diff] [blame] | 419 | append("${module_flags}" CMAKE_CXX_FLAGS) |
Richard Smith | cdbecda | 2016-04-17 20:58:01 +0000 | [diff] [blame] | 420 | else() |
| 421 | message(FATAL_ERROR "LLVM_ENABLE_MODULES is not supported by this compiler") |
| 422 | endif() |
| 423 | endif(LLVM_ENABLE_MODULES) |
Oscar Fuentes | f4202ba | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 424 | endif( MSVC ) |
| 425 | |
Reid Kleckner | 9f3585d | 2017-03-16 17:05:16 +0000 | [diff] [blame] | 426 | if (MSVC AND NOT CLANG_CL) |
| 427 | set(msvc_warning_flags |
| 428 | # Disabled warnings. |
| 429 | -wd4141 # Suppress ''modifier' : used more than once' (because of __forceinline combined with inline) |
| 430 | -wd4146 # Suppress 'unary minus operator applied to unsigned type, result still unsigned' |
| 431 | -wd4180 # Suppress 'qualifier applied to function type has no meaning; ignored' |
| 432 | -wd4244 # Suppress ''argument' : conversion from 'type1' to 'type2', possible loss of data' |
| 433 | -wd4258 # Suppress ''var' : definition from the for loop is ignored; the definition from the enclosing scope is used' |
| 434 | -wd4267 # Suppress ''var' : conversion from 'size_t' to 'type', possible loss of data' |
| 435 | -wd4291 # Suppress ''declaration' : no matching operator delete found; memory will not be freed if initialization throws an exception' |
| 436 | -wd4345 # Suppress 'behavior change: an object of POD type constructed with an initializer of the form () will be default-initialized' |
| 437 | -wd4351 # Suppress 'new behavior: elements of array 'array' will be default initialized' |
| 438 | -wd4355 # Suppress ''this' : used in base member initializer list' |
| 439 | -wd4456 # Suppress 'declaration of 'var' hides local variable' |
| 440 | -wd4457 # Suppress 'declaration of 'var' hides function parameter' |
| 441 | -wd4458 # Suppress 'declaration of 'var' hides class member' |
| 442 | -wd4459 # Suppress 'declaration of 'var' hides global declaration' |
| 443 | -wd4503 # Suppress ''identifier' : decorated name length exceeded, name was truncated' |
| 444 | -wd4624 # Suppress ''derived class' : destructor could not be generated because a base class destructor is inaccessible' |
| 445 | -wd4722 # Suppress 'function' : destructor never returns, potential memory leak |
| 446 | -wd4800 # Suppress ''type' : forcing value to bool 'true' or 'false' (performance warning)' |
| 447 | -wd4100 # Suppress 'unreferenced formal parameter' |
| 448 | -wd4127 # Suppress 'conditional expression is constant' |
| 449 | -wd4512 # Suppress 'assignment operator could not be generated' |
| 450 | -wd4505 # Suppress 'unreferenced local function has been removed' |
| 451 | -wd4610 # Suppress '<class> can never be instantiated' |
| 452 | -wd4510 # Suppress 'default constructor could not be generated' |
| 453 | -wd4702 # Suppress 'unreachable code' |
| 454 | -wd4245 # Suppress 'signed/unsigned mismatch' |
| 455 | -wd4706 # Suppress 'assignment within conditional expression' |
| 456 | -wd4310 # Suppress 'cast truncates constant value' |
| 457 | -wd4701 # Suppress 'potentially uninitialized local variable' |
| 458 | -wd4703 # Suppress 'potentially uninitialized local pointer variable' |
| 459 | -wd4389 # Suppress 'signed/unsigned mismatch' |
| 460 | -wd4611 # Suppress 'interaction between '_setjmp' and C++ object destruction is non-portable' |
| 461 | -wd4805 # Suppress 'unsafe mix of type <type> and type <type> in operation' |
| 462 | -wd4204 # Suppress 'nonstandard extension used : non-constant aggregate initializer' |
| 463 | -wd4577 # Suppress 'noexcept used with no exception handling mode specified; termination on exception is not guaranteed' |
| 464 | -wd4091 # Suppress 'typedef: ignored on left of '' when no variable is declared' |
| 465 | # C4592 is disabled because of false positives in Visual Studio 2015 |
| 466 | # Update 1. Re-evaluate the usefulness of this diagnostic with Update 2. |
| 467 | -wd4592 # Suppress ''var': symbol will be dynamically initialized (implementation limitation) |
| 468 | -wd4319 # Suppress ''operator' : zero extending 'type' to 'type' of greater size' |
| 469 | |
| 470 | # Ideally, we'd like this warning to be enabled, but MSVC 2013 doesn't |
| 471 | # support the 'aligned' attribute in the way that clang sources requires (for |
| 472 | # any code that uses the LLVM_ALIGNAS macro), so this is must be disabled to |
| 473 | # avoid unwanted alignment warnings. |
| 474 | # When we switch to requiring a version of MSVC that supports the 'alignas' |
| 475 | # specifier (MSVC 2015?) this warning can be re-enabled. |
| 476 | -wd4324 # Suppress 'structure was padded due to __declspec(align())' |
| 477 | |
| 478 | # Promoted warnings. |
| 479 | -w14062 # Promote 'enumerator in switch of enum is not handled' to level 1 warning. |
| 480 | |
| 481 | # Promoted warnings to errors. |
| 482 | -we4238 # Promote 'nonstandard extension used : class rvalue used as lvalue' to error. |
| 483 | ) |
| 484 | |
| 485 | # Enable warnings |
| 486 | if (LLVM_ENABLE_WARNINGS) |
| 487 | # Put /W4 in front of all the -we flags. cl.exe doesn't care, but for |
| 488 | # clang-cl having /W4 after the -we flags will re-enable the warnings |
| 489 | # disabled by -we. |
| 490 | set(msvc_warning_flags "/W4 ${msvc_warning_flags}") |
| 491 | # CMake appends /W3 by default, and having /W3 followed by /W4 will result in |
| 492 | # cl : Command line warning D9025 : overriding '/W3' with '/W4'. Since this is |
| 493 | # a command line warning and not a compiler warning, it cannot be suppressed except |
| 494 | # by fixing the command line. |
| 495 | string(REGEX REPLACE " /W[0-4]" "" CMAKE_C_FLAGS "${CMAKE_C_FLAGS}") |
| 496 | string(REGEX REPLACE " /W[0-4]" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}") |
| 497 | |
| 498 | if (LLVM_ENABLE_PEDANTIC) |
| 499 | # No MSVC equivalent available |
| 500 | endif (LLVM_ENABLE_PEDANTIC) |
| 501 | endif (LLVM_ENABLE_WARNINGS) |
| 502 | |
| 503 | foreach(flag ${msvc_warning_flags}) |
| 504 | append("${flag}" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
| 505 | endforeach(flag) |
| 506 | endif (MSVC AND NOT CLANG_CL) |
| 507 | |
| 508 | if (LLVM_ENABLE_WARNINGS AND (LLVM_COMPILER_IS_GCC_COMPATIBLE OR CLANG_CL)) |
| 509 | append("-Wall -W -Wno-unused-parameter -Wwrite-strings" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
| 510 | append("-Wcast-qual" CMAKE_CXX_FLAGS) |
| 511 | |
| 512 | # Turn off missing field initializer warnings for gcc to avoid noise from |
| 513 | # false positives with empty {}. Turn them on otherwise (they're off by |
| 514 | # default for clang). |
| 515 | check_cxx_compiler_flag("-Wmissing-field-initializers" CXX_SUPPORTS_MISSING_FIELD_INITIALIZERS_FLAG) |
| 516 | if (CXX_SUPPORTS_MISSING_FIELD_INITIALIZERS_FLAG) |
| 517 | if (CMAKE_COMPILER_IS_GNUCXX) |
| 518 | append("-Wno-missing-field-initializers" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
| 519 | else() |
| 520 | append("-Wmissing-field-initializers" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
| 521 | endif() |
| 522 | endif() |
| 523 | |
| 524 | if (LLVM_ENABLE_PEDANTIC AND LLVM_COMPILER_IS_GCC_COMPATIBLE) |
| 525 | append("-pedantic" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
| 526 | append("-Wno-long-long" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
| 527 | endif() |
| 528 | |
| 529 | add_flag_if_supported("-Wcovered-switch-default" COVERED_SWITCH_DEFAULT_FLAG) |
| 530 | append_if(USE_NO_UNINITIALIZED "-Wno-uninitialized" CMAKE_CXX_FLAGS) |
| 531 | append_if(USE_NO_MAYBE_UNINITIALIZED "-Wno-maybe-uninitialized" CMAKE_CXX_FLAGS) |
| 532 | |
| 533 | # Check if -Wnon-virtual-dtor warns even though the class is marked final. |
| 534 | # If it does, don't add it. So it won't be added on clang 3.4 and older. |
| 535 | # This also catches cases when -Wnon-virtual-dtor isn't supported by |
| 536 | # the compiler at all. This flag is not activated for gcc since it will |
| 537 | # incorrectly identify a protected non-virtual base when there is a friend |
| 538 | # declaration. Don't activate this in general on Windows as this warning has |
| 539 | # too many false positives on COM-style classes, which are destroyed with |
| 540 | # Release() (PR32286). |
| 541 | if (NOT CMAKE_COMPILER_IS_GNUCXX AND NOT WIN32) |
| 542 | set(OLD_CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS}) |
| 543 | set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} -std=c++11 -Werror=non-virtual-dtor") |
| 544 | CHECK_CXX_SOURCE_COMPILES("class base {public: virtual void anchor();protected: ~base();}; |
| 545 | class derived final : public base { public: ~derived();}; |
| 546 | int main() { return 0; }" |
| 547 | CXX_WONT_WARN_ON_FINAL_NONVIRTUALDTOR) |
| 548 | set(CMAKE_REQUIRED_FLAGS ${OLD_CMAKE_REQUIRED_FLAGS}) |
| 549 | append_if(CXX_WONT_WARN_ON_FINAL_NONVIRTUALDTOR |
| 550 | "-Wnon-virtual-dtor" CMAKE_CXX_FLAGS) |
| 551 | endif() |
| 552 | |
| 553 | # Enable -Wdelete-non-virtual-dtor if available. |
| 554 | add_flag_if_supported("-Wdelete-non-virtual-dtor" DELETE_NON_VIRTUAL_DTOR_FLAG) |
| 555 | |
| 556 | # Check if -Wcomment is OK with an // comment ending with '\' if the next |
| 557 | # line is also a // comment. |
| 558 | set(OLD_CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS}) |
| 559 | set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} -Werror -Wcomment") |
| 560 | CHECK_C_SOURCE_COMPILES("// \\\\\\n//\\nint main() {return 0;}" |
| 561 | C_WCOMMENT_ALLOWS_LINE_WRAP) |
| 562 | set(CMAKE_REQUIRED_FLAGS ${OLD_CMAKE_REQUIRED_FLAGS}) |
| 563 | if (NOT C_WCOMMENT_ALLOWS_LINE_WRAP) |
| 564 | append("-Wno-comment" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
| 565 | endif() |
| 566 | |
| 567 | # Enable -Wstring-conversion to catch misuse of string literals. |
| 568 | add_flag_if_supported("-Wstring-conversion" STRING_CONVERSION_FLAG) |
| 569 | endif (LLVM_ENABLE_WARNINGS AND (LLVM_COMPILER_IS_GCC_COMPATIBLE OR CLANG_CL)) |
| 570 | |
Vassil Vassilev | 7a3a6e2 | 2017-04-12 20:43:11 +0000 | [diff] [blame] | 571 | if (LLVM_COMPILER_IS_GCC_COMPATIBLE AND NOT LLVM_ENABLE_WARNINGS) |
| 572 | append("-w" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
| 573 | endif() |
| 574 | |
Alexey Samsonov | 75789a2 | 2013-03-26 07:49:46 +0000 | [diff] [blame] | 575 | macro(append_common_sanitizer_flags) |
Reid Kleckner | d7a568f | 2015-08-14 16:48:34 +0000 | [diff] [blame] | 576 | if (NOT MSVC) |
| 577 | # Append -fno-omit-frame-pointer and turn on debug info to get better |
| 578 | # stack traces. |
| 579 | add_flag_if_supported("-fno-omit-frame-pointer" FNO_OMIT_FRAME_POINTER) |
| 580 | if (NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG" AND |
Reid Kleckner | 38b8938 | 2015-08-25 16:06:40 +0000 | [diff] [blame] | 581 | NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "RELWITHDEBINFO") |
Reid Kleckner | d7a568f | 2015-08-14 16:48:34 +0000 | [diff] [blame] | 582 | add_flag_if_supported("-gline-tables-only" GLINE_TABLES_ONLY) |
| 583 | endif() |
| 584 | # Use -O1 even in debug mode, otherwise sanitizers slowdown is too large. |
| 585 | if (uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG") |
| 586 | add_flag_if_supported("-O1" O1) |
| 587 | endif() |
| 588 | elseif (CLANG_CL) |
| 589 | # Keep frame pointers around. |
| 590 | append("/Oy-" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
Bob Haarman | f947d8d | 2017-03-01 19:22:18 +0000 | [diff] [blame] | 591 | if (LINKER_IS_LLD_LINK) |
Reid Kleckner | d7a568f | 2015-08-14 16:48:34 +0000 | [diff] [blame] | 592 | # Use DWARF debug info with LLD. |
| 593 | append("-gdwarf" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
| 594 | else() |
| 595 | # Enable codeview otherwise. |
| 596 | append("/Z7" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
| 597 | endif() |
| 598 | # Always ask the linker to produce symbols with asan. |
| 599 | 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] | 600 | endif() |
Alexey Samsonov | 75789a2 | 2013-03-26 07:49:46 +0000 | [diff] [blame] | 601 | endmacro() |
| 602 | |
| 603 | # Turn on sanitizers if necessary. |
| 604 | if(LLVM_USE_SANITIZER) |
| 605 | if (LLVM_ON_UNIX) |
| 606 | if (LLVM_USE_SANITIZER STREQUAL "Address") |
| 607 | append_common_sanitizer_flags() |
Alp Toker | 696b4a0 | 2014-07-09 06:27:05 +0000 | [diff] [blame] | 608 | append("-fsanitize=address" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
Alexey Samsonov | 75789a2 | 2013-03-26 07:49:46 +0000 | [diff] [blame] | 609 | elseif (LLVM_USE_SANITIZER MATCHES "Memory(WithOrigins)?") |
| 610 | append_common_sanitizer_flags() |
Alp Toker | 696b4a0 | 2014-07-09 06:27:05 +0000 | [diff] [blame] | 611 | append("-fsanitize=memory" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
Alexey Samsonov | 75789a2 | 2013-03-26 07:49:46 +0000 | [diff] [blame] | 612 | if(LLVM_USE_SANITIZER STREQUAL "MemoryWithOrigins") |
Alp Toker | 696b4a0 | 2014-07-09 06:27:05 +0000 | [diff] [blame] | 613 | append("-fsanitize-memory-track-origins" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
Alexey Samsonov | 75789a2 | 2013-03-26 07:49:46 +0000 | [diff] [blame] | 614 | endif() |
Alexey Samsonov | 4ee2675 | 2014-08-29 00:50:36 +0000 | [diff] [blame] | 615 | elseif (LLVM_USE_SANITIZER STREQUAL "Undefined") |
| 616 | append_common_sanitizer_flags() |
Justin Bogner | 8c8fb16 | 2015-05-14 04:52:57 +0000 | [diff] [blame] | 617 | append("-fsanitize=undefined -fno-sanitize=vptr,function -fno-sanitize-recover=all" |
Alexey Samsonov | 4ee2675 | 2014-08-29 00:50:36 +0000 | [diff] [blame] | 618 | CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
Eric Fiselier | bd9a825 | 2017-02-07 22:48:20 +0000 | [diff] [blame] | 619 | set(BLACKLIST_FILE "${CMAKE_SOURCE_DIR}/utils/sanitizers/ubsan_blacklist.txt") |
| 620 | if (EXISTS "${BLACKLIST_FILE}") |
| 621 | append("-fsanitize-blacklist=${BLACKLIST_FILE}" |
| 622 | CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
| 623 | endif() |
Eric Fiselier | be6705d | 2014-11-18 21:23:38 +0000 | [diff] [blame] | 624 | elseif (LLVM_USE_SANITIZER STREQUAL "Thread") |
| 625 | append_common_sanitizer_flags() |
| 626 | append("-fsanitize=thread" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
Filipe Cabecinhas | b36685e | 2015-02-04 22:33:31 +0000 | [diff] [blame] | 627 | elseif (LLVM_USE_SANITIZER STREQUAL "Address;Undefined" OR |
| 628 | LLVM_USE_SANITIZER STREQUAL "Undefined;Address") |
| 629 | append_common_sanitizer_flags() |
Justin Bogner | 8c8fb16 | 2015-05-14 04:52:57 +0000 | [diff] [blame] | 630 | append("-fsanitize=address,undefined -fno-sanitize=vptr,function -fno-sanitize-recover=all" |
Filipe Cabecinhas | b36685e | 2015-02-04 22:33:31 +0000 | [diff] [blame] | 631 | CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
Alexey Samsonov | 75789a2 | 2013-03-26 07:49:46 +0000 | [diff] [blame] | 632 | else() |
Justin Bogner | 1ded698 | 2015-09-01 05:45:07 +0000 | [diff] [blame] | 633 | message(FATAL_ERROR "Unsupported value of LLVM_USE_SANITIZER: ${LLVM_USE_SANITIZER}") |
Alexey Samsonov | 75789a2 | 2013-03-26 07:49:46 +0000 | [diff] [blame] | 634 | endif() |
Reid Kleckner | d7a568f | 2015-08-14 16:48:34 +0000 | [diff] [blame] | 635 | elseif(MSVC) |
| 636 | if (LLVM_USE_SANITIZER STREQUAL "Address") |
| 637 | append_common_sanitizer_flags() |
| 638 | append("-fsanitize=address" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
| 639 | else() |
Justin Bogner | 1ded698 | 2015-09-01 05:45:07 +0000 | [diff] [blame] | 640 | 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] | 641 | endif() |
Alexey Samsonov | 75789a2 | 2013-03-26 07:49:46 +0000 | [diff] [blame] | 642 | else() |
Justin Bogner | 1ded698 | 2015-09-01 05:45:07 +0000 | [diff] [blame] | 643 | message(FATAL_ERROR "LLVM_USE_SANITIZER is not supported on this platform.") |
Alexey Samsonov | 75789a2 | 2013-03-26 07:49:46 +0000 | [diff] [blame] | 644 | endif() |
Vitaly Buka | 729a039 | 2017-01-17 21:04:23 +0000 | [diff] [blame] | 645 | if (LLVM_USE_SANITIZER MATCHES "(Undefined;)?Address(;Undefined)?") |
Justin Bogner | 2ceeb30 | 2017-01-18 19:01:58 +0000 | [diff] [blame] | 646 | add_flag_if_supported("-fsanitize-address-use-after-scope" |
| 647 | FSANITIZE_USE_AFTER_SCOPE_FLAG) |
Vitaly Buka | 729a039 | 2017-01-17 21:04:23 +0000 | [diff] [blame] | 648 | endif() |
Kostya Serebryany | 869b867 | 2015-01-27 17:59:28 +0000 | [diff] [blame] | 649 | if (LLVM_USE_SANITIZE_COVERAGE) |
Kostya Serebryany | 61be0f9 | 2016-12-10 02:26:23 +0000 | [diff] [blame] | 650 | append("-fsanitize-coverage=trace-pc-guard,indirect-calls,trace-cmp" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
Kostya Serebryany | 869b867 | 2015-01-27 17:59:28 +0000 | [diff] [blame] | 651 | endif() |
Alexey Samsonov | 75789a2 | 2013-03-26 07:49:46 +0000 | [diff] [blame] | 652 | endif() |
| 653 | |
Eric Christopher | 3987806 | 2013-07-30 21:44:10 +0000 | [diff] [blame] | 654 | # Turn on -gsplit-dwarf if requested |
| 655 | if(LLVM_USE_SPLIT_DWARF) |
Peter Collingbourne | a7d1751 | 2014-10-22 19:49:19 +0000 | [diff] [blame] | 656 | add_definitions("-gsplit-dwarf") |
Eric Christopher | 3987806 | 2013-07-30 21:44:10 +0000 | [diff] [blame] | 657 | endif() |
| 658 | |
Serge Pavlov | 23be945 | 2017-03-21 04:03:24 +0000 | [diff] [blame] | 659 | add_definitions( -D__STDC_CONSTANT_MACROS ) |
| 660 | add_definitions( -D__STDC_FORMAT_MACROS ) |
| 661 | add_definitions( -D__STDC_LIMIT_MACROS ) |
Arnaud A. de Grandmaison | 916f3cc | 2013-05-29 20:41:35 +0000 | [diff] [blame] | 662 | |
| 663 | # clang doesn't print colored diagnostics when invoked from Ninja |
Rafael Espindola | 6f2564c | 2013-06-14 19:41:05 +0000 | [diff] [blame] | 664 | if (UNIX AND |
Justin Bogner | 13440b9 | 2016-06-01 23:29:26 +0000 | [diff] [blame] | 665 | CMAKE_CXX_COMPILER_ID MATCHES "Clang" AND |
Rafael Espindola | 6f2564c | 2013-06-14 19:41:05 +0000 | [diff] [blame] | 666 | CMAKE_GENERATOR STREQUAL "Ninja") |
| 667 | append("-fcolor-diagnostics" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
Arnaud A. de Grandmaison | 916f3cc | 2013-05-29 20:41:35 +0000 | [diff] [blame] | 668 | endif() |
NAKAMURA Takumi | bb50bce | 2014-01-28 09:43:55 +0000 | [diff] [blame] | 669 | |
Rui Ueyama | d6a005a | 2017-01-11 22:55:35 +0000 | [diff] [blame] | 670 | # lld doesn't print colored diagnostics when invoked from Ninja |
| 671 | if (UNIX AND CMAKE_GENERATOR STREQUAL "Ninja") |
| 672 | include(CheckLinkerFlag) |
| 673 | check_linker_flag("-Wl,-color-diagnostics" LINKER_SUPPORTS_COLOR_DIAGNOSTICS) |
| 674 | append_if(LINKER_SUPPORTS_COLOR_DIAGNOSTICS "-Wl,-color-diagnostics" |
| 675 | CMAKE_EXE_LINKER_FLAGS CMAKE_MODULE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS) |
| 676 | endif() |
| 677 | |
NAKAMURA Takumi | bb50bce | 2014-01-28 09:43:55 +0000 | [diff] [blame] | 678 | # Add flags for add_dead_strip(). |
| 679 | # FIXME: With MSVS, consider compiling with /Gy and linking with /OPT:REF? |
| 680 | # But MinSizeRel seems to add that automatically, so maybe disable these |
| 681 | # flags instead if LLVM_NO_DEAD_STRIP is set. |
| 682 | if(NOT CYGWIN AND NOT WIN32) |
Rafael Espindola | 9c5701f | 2015-04-06 14:34:43 +0000 | [diff] [blame] | 683 | if(NOT ${CMAKE_SYSTEM_NAME} MATCHES "Darwin" AND |
| 684 | NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG") |
Alexey Samsonov | 482beff | 2014-02-04 08:15:46 +0000 | [diff] [blame] | 685 | check_c_compiler_flag("-Werror -fno-function-sections" C_SUPPORTS_FNO_FUNCTION_SECTIONS) |
| 686 | if (C_SUPPORTS_FNO_FUNCTION_SECTIONS) |
| 687 | # Don't add -ffunction-section if it can be disabled with -fno-function-sections. |
| 688 | # Doing so will break sanitizers. |
Alp Toker | 0068397 | 2014-07-09 03:38:19 +0000 | [diff] [blame] | 689 | add_flag_if_supported("-ffunction-sections" FFUNCTION_SECTIONS) |
Evgeniy Stepanov | c7b7e25 | 2014-02-03 13:57:09 +0000 | [diff] [blame] | 690 | endif() |
Alp Toker | 0068397 | 2014-07-09 03:38:19 +0000 | [diff] [blame] | 691 | add_flag_if_supported("-fdata-sections" FDATA_SECTIONS) |
NAKAMURA Takumi | bb50bce | 2014-01-28 09:43:55 +0000 | [diff] [blame] | 692 | endif() |
| 693 | endif() |
NAKAMURA Takumi | a679f43 | 2014-01-28 09:44:06 +0000 | [diff] [blame] | 694 | |
| 695 | if(MSVC) |
| 696 | # Remove flags here, for exceptions and RTTI. |
NAKAMURA Takumi | ac62464 | 2014-01-31 17:32:36 +0000 | [diff] [blame] | 697 | # Each target property or source property should be responsible to control |
| 698 | # them. |
NAKAMURA Takumi | a679f43 | 2014-01-28 09:44:06 +0000 | [diff] [blame] | 699 | # CL.EXE complains to override flags like "/GR /GR-". |
| 700 | string(REGEX REPLACE "(^| ) */EH[-cs]+ *( |$)" "\\1 \\2" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}") |
| 701 | string(REGEX REPLACE "(^| ) */GR-? *( |$)" "\\1 \\2" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}") |
| 702 | endif() |
NAKAMURA Takumi | 8d7a173 | 2014-07-04 04:45:40 +0000 | [diff] [blame] | 703 | |
Dan Liew | a5bdc84 | 2014-07-22 15:41:18 +0000 | [diff] [blame] | 704 | # Provide public options to globally control RTTI and EH |
| 705 | option(LLVM_ENABLE_EH "Enable Exception handling" OFF) |
| 706 | option(LLVM_ENABLE_RTTI "Enable run time type information" OFF) |
| 707 | if(LLVM_ENABLE_EH AND NOT LLVM_ENABLE_RTTI) |
| 708 | message(FATAL_ERROR "Exception handling requires RTTI. You must set LLVM_ENABLE_RTTI to ON") |
| 709 | endif() |
| 710 | |
Chris Bieneman | dbdec57 | 2015-12-10 21:19:07 +0000 | [diff] [blame] | 711 | option(LLVM_BUILD_INSTRUMENTED "Build LLVM and tools with PGO instrumentation (experimental)" Off) |
| 712 | mark_as_advanced(LLVM_BUILD_INSTRUMENTED) |
Vedant Kumar | d9aed82 | 2016-06-13 23:33:48 +0000 | [diff] [blame] | 713 | append_if(LLVM_BUILD_INSTRUMENTED "-fprofile-instr-generate='${LLVM_PROFILE_FILE_PATTERN}'" |
| 714 | CMAKE_CXX_FLAGS |
| 715 | CMAKE_C_FLAGS |
| 716 | CMAKE_EXE_LINKER_FLAGS |
| 717 | CMAKE_SHARED_LINKER_FLAGS) |
| 718 | |
| 719 | option(LLVM_BUILD_INSTRUMENTED_COVERAGE "Build LLVM and tools with Code Coverage instrumentation (experimental)" Off) |
| 720 | mark_as_advanced(LLVM_BUILD_INSTRUMENTED_COVERAGE) |
| 721 | append_if(LLVM_BUILD_INSTRUMENTED_COVERAGE "-fprofile-instr-generate='${LLVM_PROFILE_FILE_PATTERN}' -fcoverage-mapping" |
Chris Bieneman | dbdec57 | 2015-12-10 21:19:07 +0000 | [diff] [blame] | 722 | CMAKE_CXX_FLAGS |
| 723 | CMAKE_C_FLAGS |
| 724 | CMAKE_EXE_LINKER_FLAGS |
| 725 | CMAKE_SHARED_LINKER_FLAGS) |
| 726 | |
Justin Bogner | 740f2ca | 2016-02-08 21:55:19 +0000 | [diff] [blame] | 727 | 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] | 728 | string(TOUPPER "${LLVM_ENABLE_LTO}" uppercase_LLVM_ENABLE_LTO) |
Bob Haarman | f947d8d | 2017-03-01 19:22:18 +0000 | [diff] [blame] | 729 | if(LLVM_ENABLE_LTO AND LLVM_ON_WIN32 AND NOT LINKER_IS_LLD_LINK) |
| 730 | message(FATAL_ERROR "When compiling for Windows, LLVM_ENABLE_LTO requires using lld as the linker (point CMAKE_LINKER at lld-link.exe)") |
| 731 | endif() |
Justin Bogner | 9fd2039 | 2016-02-08 21:01:24 +0000 | [diff] [blame] | 732 | if(uppercase_LLVM_ENABLE_LTO STREQUAL "THIN") |
Bob Haarman | f947d8d | 2017-03-01 19:22:18 +0000 | [diff] [blame] | 733 | append("-flto=thin" CMAKE_CXX_FLAGS CMAKE_C_FLAGS) |
| 734 | if(NOT LINKER_IS_LLD_LINK) |
| 735 | append("-flto=thin" CMAKE_EXE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS) |
| 736 | endif() |
Peter Collingbourne | 11c03c3 | 2017-03-15 16:28:43 +0000 | [diff] [blame] | 737 | # If the linker supports it, enable the lto cache. This improves initial build |
| 738 | # time a little since we re-link a lot of the same objects, and significantly |
| 739 | # improves incremental build time. |
| 740 | # FIXME: We should move all this logic into the clang driver. |
| 741 | if(APPLE) |
| 742 | append("-Wl,-cache_path_lto,${PROJECT_BINARY_DIR}/lto.cache" |
| 743 | CMAKE_EXE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS) |
| 744 | elseif(UNIX AND LLVM_USE_LINKER STREQUAL "lld") |
| 745 | append("-Wl,--thinlto-cache-dir=${PROJECT_BINARY_DIR}/lto.cache" |
| 746 | CMAKE_EXE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS) |
| 747 | elseif(LLVM_USE_LINKER STREQUAL "gold") |
| 748 | append("-Wl,--plugin-opt,cache-dir=${PROJECT_BINARY_DIR}/lto.cache" |
| 749 | CMAKE_EXE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS) |
| 750 | endif() |
Justin Bogner | 9fd2039 | 2016-02-08 21:01:24 +0000 | [diff] [blame] | 751 | elseif(uppercase_LLVM_ENABLE_LTO STREQUAL "FULL") |
Bob Haarman | f947d8d | 2017-03-01 19:22:18 +0000 | [diff] [blame] | 752 | append("-flto=full" CMAKE_CXX_FLAGS CMAKE_C_FLAGS) |
| 753 | if(NOT LINKER_IS_LLD_LINK) |
| 754 | append("-flto=full" CMAKE_EXE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS) |
| 755 | endif() |
Justin Bogner | 9fd2039 | 2016-02-08 21:01:24 +0000 | [diff] [blame] | 756 | elseif(LLVM_ENABLE_LTO) |
Bob Haarman | f947d8d | 2017-03-01 19:22:18 +0000 | [diff] [blame] | 757 | append("-flto" CMAKE_CXX_FLAGS CMAKE_C_FLAGS) |
| 758 | if(NOT LINKER_IS_LLD_LINK) |
| 759 | append("-flto" CMAKE_EXE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS) |
| 760 | endif() |
Justin Bogner | 9fd2039 | 2016-02-08 21:01:24 +0000 | [diff] [blame] | 761 | endif() |
Justin Bogner | e12385b | 2016-02-04 07:28:30 +0000 | [diff] [blame] | 762 | |
John Brawn | 3546c2f | 2016-05-26 11:16:43 +0000 | [diff] [blame] | 763 | # This option makes utils/extract_symbols.py be used to determine the list of |
| 764 | # symbols to export from LLVM tools. This is necessary when using MSVC if you |
| 765 | # want to allow plugins, though note that the plugin has to explicitly link |
| 766 | # against (exactly one) tool so we can't unilaterally turn on |
| 767 | # LLVM_ENABLE_PLUGINS when it's enabled. |
| 768 | option(LLVM_EXPORT_SYMBOLS_FOR_PLUGINS "Export symbols from LLVM tools so that plugins can import them" OFF) |
| 769 | if(BUILD_SHARED_LIBS AND LLVM_EXPORT_SYMBOLS_FOR_PLUGINS) |
| 770 | message(FATAL_ERROR "BUILD_SHARED_LIBS not compatible with LLVM_EXPORT_SYMBOLS_FOR_PLUGINS") |
| 771 | endif() |
| 772 | if(LLVM_LINK_LLVM_DYLIB AND LLVM_EXPORT_SYMBOLS_FOR_PLUGINS) |
| 773 | message(FATAL_ERROR "LLVM_LINK_LLVM_DYLIB not compatible with LLVM_EXPORT_SYMBOLS_FOR_PLUGINS") |
| 774 | endif() |
| 775 | |
NAKAMURA Takumi | 8d7a173 | 2014-07-04 04:45:40 +0000 | [diff] [blame] | 776 | # Plugin support |
| 777 | # FIXME: Make this configurable. |
Reid Kleckner | b7a1382 | 2016-02-10 01:06:37 +0000 | [diff] [blame] | 778 | if(WIN32 OR CYGWIN) |
NAKAMURA Takumi | b5bb1e2 | 2014-07-13 13:47:37 +0000 | [diff] [blame] | 779 | if(BUILD_SHARED_LIBS) |
| 780 | set(LLVM_ENABLE_PLUGINS ON) |
| 781 | else() |
| 782 | set(LLVM_ENABLE_PLUGINS OFF) |
| 783 | endif() |
NAKAMURA Takumi | 8d7a173 | 2014-07-04 04:45:40 +0000 | [diff] [blame] | 784 | else() |
| 785 | set(LLVM_ENABLE_PLUGINS ON) |
| 786 | endif() |
Serge Pavlov | 23be945 | 2017-03-21 04:03:24 +0000 | [diff] [blame] | 787 | |
| 788 | function(get_compile_definitions) |
| 789 | get_directory_property(top_dir_definitions DIRECTORY ${CMAKE_SOURCE_DIR} COMPILE_DEFINITIONS) |
| 790 | foreach(definition ${top_dir_definitions}) |
| 791 | if(DEFINED result) |
| 792 | string(APPEND result " -D${definition}") |
| 793 | else() |
| 794 | set(result "-D${definition}") |
| 795 | endif() |
| 796 | endforeach() |
| 797 | set(LLVM_DEFINITIONS "${result}" PARENT_SCOPE) |
| 798 | endfunction() |
| 799 | get_compile_definitions() |