Daniel Dunbar | c8f399d | 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 | 96c8ba6 | 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 | 06ff4ba | 2016-03-02 16:42:56 +0000 | [diff] [blame] | 9 | include(CheckCompilerVersion) |
Jordan Rose | 1b7969e | 2014-02-05 00:02:37 +0000 | [diff] [blame] | 10 | include(HandleLLVMStdlib) |
Joe Abbey | d6a9307 | 2012-11-26 02:02:08 +0000 | [diff] [blame] | 11 | include(CheckCCompilerFlag) |
Jordan Rose | e2abe05 | 2013-03-02 01:00:40 +0000 | [diff] [blame] | 12 | include(CheckCXXCompilerFlag) |
Oscar Fuentes | d538e24 | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 13 | |
Alexandre Ganea | a2fde74 | 2018-09-07 20:07:36 +0000 | [diff] [blame] | 14 | if(CMAKE_LINKER MATCHES "lld-link\.exe" OR (WIN32 AND LLVM_USE_LINKER STREQUAL "lld") OR LLVM_ENABLE_LLD) |
Bob Haarman | 955228a | 2017-03-01 19:22:18 +0000 | [diff] [blame] | 15 | set(LINKER_IS_LLD_LINK TRUE) |
| 16 | else() |
| 17 | set(LINKER_IS_LLD_LINK FALSE) |
| 18 | endif() |
| 19 | |
Bob Haarman | 95da365 | 2017-04-28 20:17:15 +0000 | [diff] [blame] | 20 | 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") |
| 21 | string(TOUPPER "${LLVM_ENABLE_LTO}" uppercase_LLVM_ENABLE_LTO) |
| 22 | |
Chris Bieneman | d2206e4 | 2017-02-07 19:06:22 +0000 | [diff] [blame] | 23 | # Ninja Job Pool support |
| 24 | # The following only works with the Ninja generator in CMake >= 3.0. |
| 25 | set(LLVM_PARALLEL_COMPILE_JOBS "" CACHE STRING |
Chris Bieneman | 8313c3b | 2018-10-10 21:36:12 +0000 | [diff] [blame] | 26 | "Define the maximum number of concurrent compilation jobs (Ninja only).") |
Chris Bieneman | d2206e4 | 2017-02-07 19:06:22 +0000 | [diff] [blame] | 27 | if(LLVM_PARALLEL_COMPILE_JOBS) |
| 28 | if(NOT CMAKE_MAKE_PROGRAM MATCHES "ninja") |
| 29 | message(WARNING "Job pooling is only available with Ninja generators.") |
| 30 | else() |
| 31 | set_property(GLOBAL APPEND PROPERTY JOB_POOLS compile_job_pool=${LLVM_PARALLEL_COMPILE_JOBS}) |
| 32 | set(CMAKE_JOB_POOL_COMPILE compile_job_pool) |
| 33 | endif() |
| 34 | endif() |
| 35 | |
| 36 | set(LLVM_PARALLEL_LINK_JOBS "" CACHE STRING |
Chris Bieneman | 8313c3b | 2018-10-10 21:36:12 +0000 | [diff] [blame] | 37 | "Define the maximum number of concurrent link jobs (Ninja only).") |
Bob Haarman | 95da365 | 2017-04-28 20:17:15 +0000 | [diff] [blame] | 38 | if(CMAKE_MAKE_PROGRAM MATCHES "ninja") |
| 39 | if(NOT LLVM_PARALLEL_LINK_JOBS AND uppercase_LLVM_ENABLE_LTO STREQUAL "THIN") |
| 40 | message(STATUS "ThinLTO provides its own parallel linking - limiting parallel link jobs to 2.") |
| 41 | set(LLVM_PARALLEL_LINK_JOBS "2") |
| 42 | endif() |
| 43 | if(LLVM_PARALLEL_LINK_JOBS) |
Chris Bieneman | d2206e4 | 2017-02-07 19:06:22 +0000 | [diff] [blame] | 44 | set_property(GLOBAL APPEND PROPERTY JOB_POOLS link_job_pool=${LLVM_PARALLEL_LINK_JOBS}) |
| 45 | set(CMAKE_JOB_POOL_LINK link_job_pool) |
| 46 | endif() |
Bob Haarman | 95da365 | 2017-04-28 20:17:15 +0000 | [diff] [blame] | 47 | elseif(LLVM_PARALLEL_LINK_JOBS) |
| 48 | message(WARNING "Job pooling is only available with Ninja generators.") |
Chris Bieneman | d2206e4 | 2017-02-07 19:06:22 +0000 | [diff] [blame] | 49 | endif() |
| 50 | |
Oscar Fuentes | d538e24 | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 51 | if( LLVM_ENABLE_ASSERTIONS ) |
| 52 | # MSVC doesn't like _DEBUG on release builds. See PR 4379. |
| 53 | if( NOT MSVC ) |
| 54 | add_definitions( -D_DEBUG ) |
| 55 | endif() |
Duncan Sands | a009d53 | 2013-07-17 09:34:51 +0000 | [diff] [blame] | 56 | # On non-Debug builds cmake automatically defines NDEBUG, so we |
Oscar Fuentes | d538e24 | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 57 | # explicitly undefine it: |
Duncan Sands | a009d53 | 2013-07-17 09:34:51 +0000 | [diff] [blame] | 58 | if( NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG" ) |
Oscar Fuentes | d538e24 | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 59 | add_definitions( -UNDEBUG ) |
Reid Kleckner | 16f1969 | 2013-04-07 01:45:01 +0000 | [diff] [blame] | 60 | # Also remove /D NDEBUG to avoid MSVC warnings about conflicting defines. |
Reid Kleckner | 37b0592 | 2014-05-19 21:13:41 +0000 | [diff] [blame] | 61 | foreach (flags_var_to_scrub |
| 62 | CMAKE_CXX_FLAGS_RELEASE |
| 63 | CMAKE_CXX_FLAGS_RELWITHDEBINFO |
| 64 | CMAKE_CXX_FLAGS_MINSIZEREL |
| 65 | CMAKE_C_FLAGS_RELEASE |
| 66 | CMAKE_C_FLAGS_RELWITHDEBINFO |
| 67 | CMAKE_C_FLAGS_MINSIZEREL) |
| 68 | string (REGEX REPLACE "(^| )[/-]D *NDEBUG($| )" " " |
| 69 | "${flags_var_to_scrub}" "${${flags_var_to_scrub}}") |
| 70 | endforeach() |
Oscar Fuentes | d538e24 | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 71 | endif() |
Oscar Fuentes | d538e24 | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 72 | endif() |
| 73 | |
Filipe Cabecinhas | 2fd5434 | 2016-04-29 15:22:48 +0000 | [diff] [blame] | 74 | if(LLVM_ENABLE_EXPENSIVE_CHECKS) |
| 75 | add_definitions(-DEXPENSIVE_CHECKS) |
| 76 | add_definitions(-D_GLIBCXX_DEBUG) |
| 77 | endif() |
| 78 | |
Sanjoy Das | 784545f | 2015-03-26 19:25:01 +0000 | [diff] [blame] | 79 | string(TOUPPER "${LLVM_ABI_BREAKING_CHECKS}" uppercase_LLVM_ABI_BREAKING_CHECKS) |
| 80 | |
| 81 | if( uppercase_LLVM_ABI_BREAKING_CHECKS STREQUAL "WITH_ASSERTS" ) |
| 82 | if( LLVM_ENABLE_ASSERTIONS ) |
| 83 | set( LLVM_ENABLE_ABI_BREAKING_CHECKS 1 ) |
| 84 | endif() |
| 85 | elseif( uppercase_LLVM_ABI_BREAKING_CHECKS STREQUAL "FORCE_ON" ) |
| 86 | set( LLVM_ENABLE_ABI_BREAKING_CHECKS 1 ) |
| 87 | elseif( uppercase_LLVM_ABI_BREAKING_CHECKS STREQUAL "FORCE_OFF" ) |
| 88 | # We don't need to do anything special to turn off ABI breaking checks. |
Eric Fiselier | 0038607 | 2015-05-12 22:49:18 +0000 | [diff] [blame] | 89 | elseif( NOT DEFINED LLVM_ABI_BREAKING_CHECKS ) |
| 90 | # Treat LLVM_ABI_BREAKING_CHECKS like "FORCE_OFF" when it has not been |
| 91 | # defined. |
Sanjoy Das | 784545f | 2015-03-26 19:25:01 +0000 | [diff] [blame] | 92 | else() |
| 93 | message(FATAL_ERROR "Unknown value for LLVM_ABI_BREAKING_CHECKS: \"${LLVM_ABI_BREAKING_CHECKS}\"!") |
| 94 | endif() |
| 95 | |
Mandeep Singh Grang | 20350be | 2017-06-06 00:36:09 +0000 | [diff] [blame] | 96 | if( LLVM_REVERSE_ITERATION ) |
| 97 | set( LLVM_ENABLE_REVERSE_ITERATION 1 ) |
| 98 | endif() |
| 99 | |
Oscar Fuentes | d538e24 | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 100 | if(WIN32) |
Nico Weber | b6fe25c | 2013-12-28 23:31:44 +0000 | [diff] [blame] | 101 | set(LLVM_HAVE_LINK_VERSION_SCRIPT 0) |
Oscar Fuentes | d538e24 | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 102 | if(CYGWIN) |
| 103 | set(LLVM_ON_WIN32 0) |
| 104 | set(LLVM_ON_UNIX 1) |
| 105 | else(CYGWIN) |
| 106 | set(LLVM_ON_WIN32 1) |
| 107 | set(LLVM_ON_UNIX 0) |
Oscar Fuentes | d538e24 | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 108 | endif(CYGWIN) |
Oscar Fuentes | d538e24 | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 109 | else(WIN32) |
Petr Hosek | e776b8b | 2018-05-03 01:38:49 +0000 | [diff] [blame] | 110 | if(FUCHSIA OR UNIX) |
Oscar Fuentes | d538e24 | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 111 | set(LLVM_ON_WIN32 0) |
| 112 | set(LLVM_ON_UNIX 1) |
Chandler Carruth | df36f1c | 2016-07-19 22:46:39 +0000 | [diff] [blame] | 113 | if(APPLE OR ${CMAKE_SYSTEM_NAME} MATCHES "AIX") |
Nico Weber | b6fe25c | 2013-12-28 23:31:44 +0000 | [diff] [blame] | 114 | set(LLVM_HAVE_LINK_VERSION_SCRIPT 0) |
Chandler Carruth | df36f1c | 2016-07-19 22:46:39 +0000 | [diff] [blame] | 115 | else() |
Nico Weber | b6fe25c | 2013-12-28 23:31:44 +0000 | [diff] [blame] | 116 | set(LLVM_HAVE_LINK_VERSION_SCRIPT 1) |
Chandler Carruth | df36f1c | 2016-07-19 22:46:39 +0000 | [diff] [blame] | 117 | endif() |
Petr Hosek | e776b8b | 2018-05-03 01:38:49 +0000 | [diff] [blame] | 118 | else(FUCHSIA OR UNIX) |
Oscar Fuentes | d538e24 | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 119 | MESSAGE(SEND_ERROR "Unable to determine platform") |
Petr Hosek | e776b8b | 2018-05-03 01:38:49 +0000 | [diff] [blame] | 120 | endif(FUCHSIA OR UNIX) |
Oscar Fuentes | d538e24 | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 121 | endif(WIN32) |
| 122 | |
Alp Toker | b1adf08 | 2014-01-08 11:10:24 +0000 | [diff] [blame] | 123 | set(EXEEXT ${CMAKE_EXECUTABLE_SUFFIX}) |
| 124 | set(LTDL_SHLIB_EXT ${CMAKE_SHARED_LIBRARY_SUFFIX}) |
NAKAMURA Takumi | 38a10d0 | 2014-02-13 11:19:00 +0000 | [diff] [blame] | 125 | |
| 126 | # We use *.dylib rather than *.so on darwin. |
| 127 | set(LLVM_PLUGIN_EXT ${CMAKE_SHARED_LIBRARY_SUFFIX}) |
Alp Toker | b1adf08 | 2014-01-08 11:10:24 +0000 | [diff] [blame] | 128 | |
NAKAMURA Takumi | 74c3f7d | 2014-02-13 11:19:11 +0000 | [diff] [blame] | 129 | if(APPLE) |
Petr Hosek | 2545ab0 | 2016-11-17 20:22:49 +0000 | [diff] [blame] | 130 | if(LLVM_ENABLE_LLD AND LLVM_ENABLE_LTO) |
| 131 | message(FATAL_ERROR "lld does not support LTO on Darwin") |
| 132 | endif() |
NAKAMURA Takumi | 74c3f7d | 2014-02-13 11:19:11 +0000 | [diff] [blame] | 133 | # Darwin-specific linker flags for loadable modules. |
| 134 | set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,-flat_namespace -Wl,-undefined -Wl,suppress") |
| 135 | endif() |
| 136 | |
Rafael Espindola | 46b1a31 | 2015-01-22 14:06:51 +0000 | [diff] [blame] | 137 | # Pass -Wl,-z,defs. This makes sure all symbols are defined. Otherwise a DSO |
| 138 | # build might work on ELF but fail on MachO/COFF. |
Yaron Keren | fe6b5aa | 2015-07-23 08:06:12 +0000 | [diff] [blame] | 139 | if(NOT (${CMAKE_SYSTEM_NAME} MATCHES "Darwin" OR WIN32 OR CYGWIN OR |
Yaron Keren | 0358673 | 2015-11-21 06:33:54 +0000 | [diff] [blame] | 140 | ${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD" OR |
David Carlier | 7ef18df | 2018-11-10 18:47:00 +0000 | [diff] [blame] | 141 | ${CMAKE_SYSTEM_NAME} MATCHES "OpenBSD" OR |
| 142 | ${CMAKE_SYSTEM_NAME} MATCHES "DragonFly") AND |
Rafael Espindola | 6db0df8 | 2015-01-22 20:57:30 +0000 | [diff] [blame] | 143 | NOT LLVM_USE_SANITIZER) |
Rafael Espindola | 46b1a31 | 2015-01-22 14:06:51 +0000 | [diff] [blame] | 144 | set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,-z,defs") |
| 145 | endif() |
| 146 | |
Michal Gorny | 937b23b | 2017-11-27 22:23:09 +0000 | [diff] [blame] | 147 | # Pass -Wl,-z,nodelete. This makes sure our shared libraries are not unloaded |
| 148 | # by dlclose(). We need that since the CLI API relies on cross-references |
| 149 | # between global objects which became horribly broken when one of the libraries |
| 150 | # is unloaded. |
| 151 | if(${CMAKE_SYSTEM_NAME} MATCHES "Linux") |
| 152 | set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,-z,nodelete") |
Hans Wennborg | 0cd45cd | 2018-08-16 15:12:12 +0000 | [diff] [blame] | 153 | set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,-z,nodelete") |
Michal Gorny | 937b23b | 2017-11-27 22:23:09 +0000 | [diff] [blame] | 154 | endif() |
| 155 | |
Rafael Espindola | 46b1a31 | 2015-01-22 14:06:51 +0000 | [diff] [blame] | 156 | |
Duncan Sands | 2269c56 | 2013-03-25 13:25:34 +0000 | [diff] [blame] | 157 | function(append value) |
| 158 | foreach(variable ${ARGN}) |
Alexey Samsonov | b91ce4f | 2013-03-13 20:50:23 +0000 | [diff] [blame] | 159 | set(${variable} "${${variable}} ${value}" PARENT_SCOPE) |
Duncan Sands | 2269c56 | 2013-03-25 13:25:34 +0000 | [diff] [blame] | 160 | endforeach(variable) |
| 161 | endfunction() |
| 162 | |
| 163 | function(append_if condition value) |
| 164 | if (${condition}) |
| 165 | foreach(variable ${ARGN}) |
| 166 | set(${variable} "${${variable}} ${value}" PARENT_SCOPE) |
| 167 | endforeach(variable) |
Alexey Samsonov | b91ce4f | 2013-03-13 20:50:23 +0000 | [diff] [blame] | 168 | endif() |
| 169 | endfunction() |
| 170 | |
Alp Toker | b1d6b8e | 2014-07-09 03:38:19 +0000 | [diff] [blame] | 171 | macro(add_flag_if_supported flag name) |
| 172 | check_c_compiler_flag("-Werror ${flag}" "C_SUPPORTS_${name}") |
| 173 | append_if("C_SUPPORTS_${name}" "${flag}" CMAKE_C_FLAGS) |
| 174 | check_cxx_compiler_flag("-Werror ${flag}" "CXX_SUPPORTS_${name}") |
| 175 | append_if("CXX_SUPPORTS_${name}" "${flag}" CMAKE_CXX_FLAGS) |
Alexey Samsonov | 777fccb | 2013-03-26 07:49:46 +0000 | [diff] [blame] | 176 | endmacro() |
| 177 | |
Alp Toker | b1d6b8e | 2014-07-09 03:38:19 +0000 | [diff] [blame] | 178 | function(add_flag_or_print_warning flag name) |
| 179 | check_c_compiler_flag("-Werror ${flag}" "C_SUPPORTS_${name}") |
| 180 | check_cxx_compiler_flag("-Werror ${flag}" "CXX_SUPPORTS_${name}") |
Richard Smith | 7e0a0e2 | 2014-09-26 21:35:48 +0000 | [diff] [blame] | 181 | if (C_SUPPORTS_${name} AND CXX_SUPPORTS_${name}) |
Alp Toker | b1d6b8e | 2014-07-09 03:38:19 +0000 | [diff] [blame] | 182 | message(STATUS "Building with ${flag}") |
| 183 | set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${flag}" PARENT_SCOPE) |
| 184 | set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${flag}" PARENT_SCOPE) |
Douglas Katzman | 8d1cf22 | 2015-07-28 14:43:53 +0000 | [diff] [blame] | 185 | set(CMAKE_ASM_FLAGS "${CMAKE_ASM_FLAGS} ${flag}" PARENT_SCOPE) |
Alp Toker | b1d6b8e | 2014-07-09 03:38:19 +0000 | [diff] [blame] | 186 | else() |
| 187 | message(WARNING "${flag} is not supported.") |
| 188 | endif() |
| 189 | endfunction() |
| 190 | |
Mehdi Amini | a9134d2 | 2017-01-15 03:21:30 +0000 | [diff] [blame] | 191 | if( LLVM_ENABLE_LLD ) |
| 192 | if ( LLVM_USE_LINKER ) |
| 193 | message(FATAL_ERROR "LLVM_ENABLE_LLD and LLVM_USE_LINKER can't be set at the same time") |
| 194 | endif() |
| 195 | set(LLVM_USE_LINKER "lld") |
| 196 | endif() |
| 197 | |
| 198 | if( LLVM_USE_LINKER ) |
Rui Ueyama | c831070 | 2017-10-30 21:19:54 +0000 | [diff] [blame] | 199 | set(OLD_CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS}) |
| 200 | set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} -fuse-ld=${LLVM_USE_LINKER}") |
| 201 | check_cxx_source_compiles("int main() { return 0; }" CXX_SUPPORTS_CUSTOM_LINKER) |
Mehdi Amini | a9134d2 | 2017-01-15 03:21:30 +0000 | [diff] [blame] | 202 | if ( NOT CXX_SUPPORTS_CUSTOM_LINKER ) |
| 203 | message(FATAL_ERROR "Host compiler does not support '-fuse-ld=${LLVM_USE_LINKER}'") |
| 204 | endif() |
Rui Ueyama | c831070 | 2017-10-30 21:19:54 +0000 | [diff] [blame] | 205 | set(CMAKE_REQUIRED_FLAGS ${OLD_CMAKE_REQUIRED_FLAGS}) |
Mehdi Amini | a9134d2 | 2017-01-15 03:21:30 +0000 | [diff] [blame] | 206 | append("-fuse-ld=${LLVM_USE_LINKER}" |
Eugene Zelenko | ec9f7e3 | 2016-07-29 00:46:13 +0000 | [diff] [blame] | 207 | CMAKE_EXE_LINKER_FLAGS CMAKE_MODULE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS) |
| 208 | endif() |
| 209 | |
Oscar Fuentes | d538e24 | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 210 | if( LLVM_ENABLE_PIC ) |
| 211 | if( XCODE ) |
| 212 | # Xcode has -mdynamic-no-pic on by default, which overrides -fPIC. I don't |
| 213 | # know how to disable this, so just force ENABLE_PIC off for now. |
| 214 | message(WARNING "-fPIC not supported with Xcode.") |
NAKAMURA Takumi | de0cfe8 | 2011-12-16 06:21:08 +0000 | [diff] [blame] | 215 | elseif( WIN32 OR CYGWIN) |
Oscar Fuentes | d538e24 | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 216 | # On Windows all code is PIC. MinGW warns if -fPIC is used. |
| 217 | else() |
Alp Toker | b1d6b8e | 2014-07-09 03:38:19 +0000 | [diff] [blame] | 218 | add_flag_or_print_warning("-fPIC" FPIC) |
Oscar Fuentes | d538e24 | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 219 | endif() |
| 220 | endif() |
| 221 | |
Chris Bieneman | 8fa8f20 | 2015-11-18 22:49:26 +0000 | [diff] [blame] | 222 | if(NOT WIN32 AND NOT CYGWIN) |
| 223 | # MinGW warns if -fvisibility-inlines-hidden is used. |
| 224 | check_cxx_compiler_flag("-fvisibility-inlines-hidden" SUPPORTS_FVISIBILITY_INLINES_HIDDEN_FLAG) |
| 225 | append_if(SUPPORTS_FVISIBILITY_INLINES_HIDDEN_FLAG "-fvisibility-inlines-hidden" CMAKE_CXX_FLAGS) |
| 226 | endif() |
| 227 | |
Martin Storsjo | 0fd37a0 | 2018-10-24 12:22:12 +0000 | [diff] [blame] | 228 | if(CMAKE_SIZEOF_VOID_P EQUAL 8 AND MINGW) |
| 229 | add_definitions( -D_FILE_OFFSET_BITS=64 ) |
| 230 | endif() |
| 231 | |
Oscar Fuentes | d538e24 | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 232 | if( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 ) |
| 233 | # TODO: support other platforms and toolchains. |
Oscar Fuentes | d538e24 | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 234 | if( LLVM_BUILD_32_BITS ) |
| 235 | message(STATUS "Building 32 bits executables and libraries.") |
NAKAMURA Takumi | 80d87f6 | 2016-06-06 05:54:55 +0000 | [diff] [blame] | 236 | set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -m32") |
| 237 | set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -m32") |
Tim Northover | 4c8657a | 2012-05-23 18:42:02 +0000 | [diff] [blame] | 238 | set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -m32") |
| 239 | set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -m32") |
Tobias Grosser | 2563ad2 | 2012-06-08 09:41:23 +0000 | [diff] [blame] | 240 | set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -m32") |
NAKAMURA Takumi | 5473af6 | 2017-11-04 06:03:29 +0000 | [diff] [blame] | 241 | |
| 242 | # FIXME: CMAKE_SIZEOF_VOID_P is still 8 |
| 243 | add_definitions(-D_LARGEFILE_SOURCE) |
| 244 | add_definitions(-D_FILE_OFFSET_BITS=64) |
Oscar Fuentes | d538e24 | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 245 | endif( LLVM_BUILD_32_BITS ) |
| 246 | endif( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 ) |
| 247 | |
Nitesh Jain | 2f681da | 2017-04-24 10:36:46 +0000 | [diff] [blame] | 248 | # If building on a GNU specific 32-bit system, make sure off_t is 64 bits |
Eugene Zemtsov | 52a37ca | 2017-09-01 23:12:43 +0000 | [diff] [blame] | 249 | # so that off_t can stored offset > 2GB. |
| 250 | # Android until version N (API 24) doesn't support it. |
| 251 | if (ANDROID AND (ANDROID_NATIVE_API_LEVEL LESS 24)) |
| 252 | set(LLVM_FORCE_SMALLFILE_FOR_ANDROID TRUE) |
| 253 | endif() |
| 254 | if( CMAKE_SIZEOF_VOID_P EQUAL 4 AND NOT LLVM_FORCE_SMALLFILE_FOR_ANDROID) |
NAKAMURA Takumi | 5473af6 | 2017-11-04 06:03:29 +0000 | [diff] [blame] | 255 | # FIXME: It isn't handled in LLVM_BUILD_32_BITS. |
Nitesh Jain | 2f681da | 2017-04-24 10:36:46 +0000 | [diff] [blame] | 256 | add_definitions( -D_LARGEFILE_SOURCE ) |
| 257 | add_definitions( -D_FILE_OFFSET_BITS=64 ) |
| 258 | endif() |
| 259 | |
Ted Kremenek | ec7eedc | 2014-03-13 06:37:28 +0000 | [diff] [blame] | 260 | if( XCODE ) |
| 261 | # For Xcode enable several build settings that correspond to |
| 262 | # many warnings that are on by default in Clang but are |
| 263 | # not enabled for historical reasons. For versions of Xcode |
| 264 | # that do not support these options they will simply |
| 265 | # be ignored. |
| 266 | set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_ABOUT_RETURN_TYPE "YES") |
| 267 | set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_ABOUT_MISSING_NEWLINE "YES") |
| 268 | set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_UNUSED_VALUE "YES") |
| 269 | set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_UNUSED_VARIABLE "YES") |
| 270 | set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_SIGN_COMPARE "YES") |
| 271 | set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_UNUSED_FUNCTION "YES") |
| 272 | set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED "YES") |
| 273 | set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_HIDDEN_VIRTUAL_FUNCTIONS "YES") |
| 274 | set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_UNINITIALIZED_AUTOS "YES") |
| 275 | set(CMAKE_XCODE_ATTRIBUTE_CLANG_WARN_BOOL_CONVERSION "YES") |
| 276 | set(CMAKE_XCODE_ATTRIBUTE_CLANG_WARN_EMPTY_BODY "YES") |
| 277 | set(CMAKE_XCODE_ATTRIBUTE_CLANG_WARN_ENUM_CONVERSION "YES") |
| 278 | set(CMAKE_XCODE_ATTRIBUTE_CLANG_WARN_INT_CONVERSION "YES") |
| 279 | set(CMAKE_XCODE_ATTRIBUTE_CLANG_WARN_CONSTANT_CONVERSION "YES") |
| 280 | set(CMAKE_XCODE_ATTRIBUTE_GCC_WARN_NON_VIRTUAL_DESTRUCTOR "YES") |
| 281 | endif() |
| 282 | |
NAKAMURA Takumi | 5bfe3bf | 2012-04-21 14:50:56 +0000 | [diff] [blame] | 283 | # On Win32 using MS tools, provide an option to set the number of parallel jobs |
| 284 | # to use. |
NAKAMURA Takumi | 4a80d64 | 2012-04-21 14:51:02 +0000 | [diff] [blame] | 285 | if( MSVC_IDE ) |
Oscar Fuentes | 0dddbc3 | 2011-03-02 17:47:37 +0000 | [diff] [blame] | 286 | set(LLVM_COMPILER_JOBS "0" CACHE STRING |
| 287 | "Number of parallel compiler jobs. 0 means use all processors. Default is 0.") |
| 288 | if( NOT LLVM_COMPILER_JOBS STREQUAL "1" ) |
| 289 | if( LLVM_COMPILER_JOBS STREQUAL "0" ) |
Serge Pavlov | bbcc0db | 2017-03-21 04:03:24 +0000 | [diff] [blame] | 290 | add_definitions( /MP ) |
Oscar Fuentes | 0dddbc3 | 2011-03-02 17:47:37 +0000 | [diff] [blame] | 291 | else() |
Yaron Keren | 6e2aab6 | 2014-03-25 09:34:20 +0000 | [diff] [blame] | 292 | message(STATUS "Number of parallel compiler jobs set to " ${LLVM_COMPILER_JOBS}) |
Serge Pavlov | bbcc0db | 2017-03-21 04:03:24 +0000 | [diff] [blame] | 293 | add_definitions( /MP${LLVM_COMPILER_JOBS} ) |
Oscar Fuentes | 0dddbc3 | 2011-03-02 17:47:37 +0000 | [diff] [blame] | 294 | endif() |
| 295 | else() |
| 296 | message(STATUS "Parallel compilation disabled") |
| 297 | endif() |
| 298 | endif() |
| 299 | |
NAKAMURA Takumi | 4fc126d | 2016-08-31 22:43:23 +0000 | [diff] [blame] | 300 | # set stack reserved size to ~10MB |
| 301 | if(MSVC) |
| 302 | # CMake previously automatically set this value for MSVC builds, but the |
| 303 | # behavior was changed in CMake 2.8.11 (Issue 12437) to use the MSVC default |
| 304 | # value (1 MB) which is not enough for us in tasks such as parsing recursive |
| 305 | # C++ templates in Clang. |
| 306 | set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /STACK:10000000") |
| 307 | elseif(MINGW) # FIXME: Also cygwin? |
| 308 | set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,--stack,16777216") |
Reid Kleckner | e1c9f50 | 2016-12-22 19:12:14 +0000 | [diff] [blame] | 309 | |
| 310 | # Pass -mbig-obj to mingw gas on Win64. COFF has a 2**16 section limit, and |
| 311 | # on Win64, every COMDAT function creates at least 3 sections: .text, .pdata, |
| 312 | # and .xdata. |
| 313 | if (CMAKE_SIZEOF_VOID_P EQUAL 8) |
| 314 | append("-Wa,-mbig-obj" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
| 315 | endif() |
NAKAMURA Takumi | 4fc126d | 2016-08-31 22:43:23 +0000 | [diff] [blame] | 316 | endif() |
| 317 | |
Oscar Fuentes | d538e24 | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 318 | if( MSVC ) |
Yaron Keren | 3f1c66c | 2015-08-21 17:31:03 +0000 | [diff] [blame] | 319 | if( CMAKE_CXX_COMPILER_VERSION VERSION_LESS 19.0 ) |
| 320 | # For MSVC 2013, disable iterator null pointer checking in debug mode, |
| 321 | # especially so std::equal(nullptr, nullptr, nullptr) will not assert. |
Serge Pavlov | bbcc0db | 2017-03-21 04:03:24 +0000 | [diff] [blame] | 322 | add_definitions("-D_DEBUG_POINTER_IMPL=") |
Yaron Keren | 3f1c66c | 2015-08-21 17:31:03 +0000 | [diff] [blame] | 323 | endif() |
Eugene Zemtsov | 52a37ca | 2017-09-01 23:12:43 +0000 | [diff] [blame] | 324 | |
Oscar Fuentes | d538e24 | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 325 | include(ChooseMSVCCRT) |
| 326 | |
Yaron Keren | 6e2aab6 | 2014-03-25 09:34:20 +0000 | [diff] [blame] | 327 | if( MSVC11 ) |
Serge Pavlov | bbcc0db | 2017-03-21 04:03:24 +0000 | [diff] [blame] | 328 | add_definitions(-D_VARIADIC_MAX=10) |
Michael J. Spencer | 647c0ce | 2012-03-01 22:42:52 +0000 | [diff] [blame] | 329 | endif() |
Eugene Zemtsov | 52a37ca | 2017-09-01 23:12:43 +0000 | [diff] [blame] | 330 | |
Oscar Fuentes | d538e24 | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 331 | # Add definitions that make MSVC much less annoying. |
Serge Pavlov | bbcc0db | 2017-03-21 04:03:24 +0000 | [diff] [blame] | 332 | add_definitions( |
Oscar Fuentes | d538e24 | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 333 | # For some reason MS wants to deprecate a bunch of standard functions... |
| 334 | -D_CRT_SECURE_NO_DEPRECATE |
| 335 | -D_CRT_SECURE_NO_WARNINGS |
| 336 | -D_CRT_NONSTDC_NO_DEPRECATE |
| 337 | -D_CRT_NONSTDC_NO_WARNINGS |
| 338 | -D_SCL_SECURE_NO_DEPRECATE |
| 339 | -D_SCL_SECURE_NO_WARNINGS |
Greg Bedwell | c6e4897 | 2015-03-19 16:32:47 +0000 | [diff] [blame] | 340 | ) |
Oscar Fuentes | d538e24 | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 341 | |
Aaron Ballman | 22a6a11 | 2016-06-23 19:02:09 +0000 | [diff] [blame] | 342 | # Tell MSVC to use the Unicode version of the Win32 APIs instead of ANSI. |
Serge Pavlov | bbcc0db | 2017-03-21 04:03:24 +0000 | [diff] [blame] | 343 | add_definitions( |
Aaron Ballman | 22a6a11 | 2016-06-23 19:02:09 +0000 | [diff] [blame] | 344 | -DUNICODE |
| 345 | -D_UNICODE |
| 346 | ) |
| 347 | |
Oscar Fuentes | d538e24 | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 348 | if (LLVM_ENABLE_WERROR) |
Reid Kleckner | 7e21d8d | 2017-03-16 17:05:16 +0000 | [diff] [blame] | 349 | append("/WX" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
Oscar Fuentes | d538e24 | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 350 | endif (LLVM_ENABLE_WERROR) |
Greg Bedwell | c6e4897 | 2015-03-19 16:32:47 +0000 | [diff] [blame] | 351 | |
Rafael Espindola | 02c4a0d | 2015-08-12 17:09:25 +0000 | [diff] [blame] | 352 | append("/Zc:inline" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
| 353 | |
Reid Kleckner | ff74bbe | 2018-02-15 21:25:23 +0000 | [diff] [blame] | 354 | # Allow users to request PDBs in release mode. CMake offeres the |
| 355 | # RelWithDebInfo configuration, but it uses different optimization settings |
| 356 | # (/Ob1 vs /Ob2 or -O2 vs -O3). LLVM provides this flag so that users can get |
| 357 | # PDBs without changing codegen. |
| 358 | option(LLVM_ENABLE_PDB OFF) |
| 359 | if (LLVM_ENABLE_PDB AND uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE") |
Zachary Turner | f45b60f | 2018-02-07 19:37:52 +0000 | [diff] [blame] | 360 | append("/Zi" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
Reid Kleckner | ff74bbe | 2018-02-15 21:25:23 +0000 | [diff] [blame] | 361 | # /DEBUG disables linker GC and ICF, but we want those in Release mode. |
| 362 | append("/DEBUG /OPT:REF /OPT:ICF" |
| 363 | CMAKE_EXE_LINKER_FLAGS CMAKE_MODULE_LINKER_FLAGS |
| 364 | CMAKE_SHARED_LINKER_FLAGS) |
| 365 | endif() |
Zachary Turner | f45b60f | 2018-02-07 19:37:52 +0000 | [diff] [blame] | 366 | |
Aaron Ballman | 8cee0bd | 2016-01-25 14:17:39 +0000 | [diff] [blame] | 367 | # /Zc:strictStrings is incompatible with VS12's (Visual Studio 2013's) |
| 368 | # debug mode headers. Instead of only enabling them in VS2013's debug mode, |
| 369 | # we'll just enable them for Visual Studio 2015 (VS 14, MSVC_VERSION 1900) |
| 370 | # and up. |
| 371 | if (NOT (MSVC_VERSION LESS 1900)) |
| 372 | # Disable string literal const->non-const type conversion. |
| 373 | # "When specified, the compiler requires strict const-qualification |
| 374 | # conformance for pointers initialized by using string literals." |
| 375 | append("/Zc:strictStrings" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
| 376 | endif(NOT (MSVC_VERSION LESS 1900)) |
| 377 | |
| 378 | # "Generate Intrinsic Functions". |
| 379 | append("/Oi" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
| 380 | |
| 381 | # "Enforce type conversion rules". |
| 382 | append("/Zc:rvalueCast" CMAKE_CXX_FLAGS) |
| 383 | |
Bob Haarman | 955228a | 2017-03-01 19:22:18 +0000 | [diff] [blame] | 384 | if (CMAKE_CXX_COMPILER_ID MATCHES "Clang" AND NOT LLVM_ENABLE_LTO) |
Nico Weber | d8f6d5c | 2016-01-06 19:05:19 +0000 | [diff] [blame] | 385 | # clang-cl and cl by default produce non-deterministic binaries because |
| 386 | # link.exe /incremental requires a timestamp in the .obj file. clang-cl |
Chris Bieneman | 6a6b44f | 2016-05-05 19:57:03 +0000 | [diff] [blame] | 387 | # has the flag /Brepro to force deterministic binaries. We want to pass that |
Bob Haarman | 955228a | 2017-03-01 19:22:18 +0000 | [diff] [blame] | 388 | # whenever you're building with clang unless you're passing /incremental |
| 389 | # or using LTO (/Brepro with LTO would result in a warning about the flag |
| 390 | # being unused, because we're not generating object files). |
Nico Weber | d8f6d5c | 2016-01-06 19:05:19 +0000 | [diff] [blame] | 391 | # This checks CMAKE_CXX_COMPILER_ID in addition to check_cxx_compiler_flag() |
| 392 | # because cl.exe does not emit an error on flags it doesn't understand, |
| 393 | # letting check_cxx_compiler_flag() claim it understands all flags. |
| 394 | check_cxx_compiler_flag("/Brepro" SUPPORTS_BREPRO) |
Nico Weber | d8f6d5c | 2016-01-06 19:05:19 +0000 | [diff] [blame] | 395 | if (SUPPORTS_BREPRO) |
| 396 | # Check if /INCREMENTAL is passed to the linker and complain that it |
| 397 | # won't work with /Brepro. |
| 398 | string(TOUPPER "${CMAKE_EXE_LINKER_FLAGS}" upper_exe_flags) |
| 399 | string(TOUPPER "${CMAKE_MODULE_LINKER_FLAGS}" upper_module_flags) |
| 400 | string(TOUPPER "${CMAKE_SHARED_LINKER_FLAGS}" upper_shared_flags) |
| 401 | |
Chris Bieneman | 6a6b44f | 2016-05-05 19:57:03 +0000 | [diff] [blame] | 402 | string(FIND "${upper_exe_flags} ${upper_module_flags} ${upper_shared_flags}" |
| 403 | "/INCREMENTAL" linker_flag_idx) |
Eugene Zemtsov | 52a37ca | 2017-09-01 23:12:43 +0000 | [diff] [blame] | 404 | |
Chris Bieneman | 6a6b44f | 2016-05-05 19:57:03 +0000 | [diff] [blame] | 405 | if (${linker_flag_idx} GREATER -1) |
| 406 | message(WARNING "/Brepro not compatible with /INCREMENTAL linking - builds will be non-deterministic") |
| 407 | else() |
| 408 | append("/Brepro" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
Nico Weber | d8f6d5c | 2016-01-06 19:05:19 +0000 | [diff] [blame] | 409 | endif() |
| 410 | endif() |
| 411 | endif() |
| 412 | |
Oscar Fuentes | 104e992 | 2011-05-11 13:53:08 +0000 | [diff] [blame] | 413 | elseif( LLVM_COMPILER_IS_GCC_COMPATIBLE ) |
Alexey Samsonov | b9aefe6 | 2014-03-13 13:08:47 +0000 | [diff] [blame] | 414 | append_if(LLVM_ENABLE_WERROR "-Werror" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
Petr Hosek | 82d2d7a | 2017-07-26 23:49:18 +0000 | [diff] [blame] | 415 | append_if(LLVM_ENABLE_WERROR "-Wno-error" CMAKE_REQUIRED_FLAGS) |
Chris Bieneman | 6a6b44f | 2016-05-05 19:57:03 +0000 | [diff] [blame] | 416 | add_flag_if_supported("-Werror=date-time" WERROR_DATE_TIME) |
Juergen Ributzka | 0e3a936 | 2017-08-29 00:34:56 +0000 | [diff] [blame] | 417 | add_flag_if_supported("-Werror=unguarded-availability-new" WERROR_UNGUARDED_AVAILABILITY_NEW) |
Chandler Carruth | b23750a | 2014-03-01 03:16:07 +0000 | [diff] [blame] | 418 | if (LLVM_ENABLE_CXX1Y) |
| 419 | check_cxx_compiler_flag("-std=c++1y" CXX_SUPPORTS_CXX1Y) |
| 420 | append_if(CXX_SUPPORTS_CXX1Y "-std=c++1y" CMAKE_CXX_FLAGS) |
Vassil Vassilev | 7bdba10 | 2017-06-09 22:09:57 +0000 | [diff] [blame] | 421 | elseif(LLVM_ENABLE_CXX1Z) |
| 422 | check_cxx_compiler_flag("-std=c++1z" CXX_SUPPORTS_CXX1Z) |
| 423 | append_if(CXX_SUPPORTS_CXX1Z "-std=c++1z" CMAKE_CXX_FLAGS) |
Chandler Carruth | b23750a | 2014-03-01 03:16:07 +0000 | [diff] [blame] | 424 | else() |
Arnaud A. de Grandmaison | 7c6be4d | 2013-11-26 10:33:53 +0000 | [diff] [blame] | 425 | check_cxx_compiler_flag("-std=c++11" CXX_SUPPORTS_CXX11) |
Chandler Carruth | b23750a | 2014-03-01 03:16:07 +0000 | [diff] [blame] | 426 | if (CXX_SUPPORTS_CXX11) |
Rafael Espindola | 3f06e3f | 2014-03-12 20:01:15 +0000 | [diff] [blame] | 427 | if (CYGWIN OR MINGW) |
| 428 | # MinGW and Cygwin are a bit stricter and lack things like |
| 429 | # 'strdup', 'stricmp', etc in c++11 mode. |
| 430 | append("-std=gnu++11" CMAKE_CXX_FLAGS) |
| 431 | else() |
| 432 | append("-std=c++11" CMAKE_CXX_FLAGS) |
| 433 | endif() |
Chandler Carruth | b23750a | 2014-03-01 03:16:07 +0000 | [diff] [blame] | 434 | else() |
| 435 | message(FATAL_ERROR "LLVM requires C++11 support but the '-std=c++11' flag isn't supported.") |
| 436 | endif() |
| 437 | endif() |
Richard Smith | ab6ed64 | 2016-04-17 20:58:01 +0000 | [diff] [blame] | 438 | if (LLVM_ENABLE_MODULES) |
| 439 | set(OLD_CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS}) |
Vassil Vassilev | 7ff4223 | 2016-09-29 08:14:06 +0000 | [diff] [blame] | 440 | set(module_flags "-fmodules -fmodules-cache-path=${PROJECT_BINARY_DIR}/module.cache") |
Adrian Prantl | 0350314 | 2016-06-30 01:46:49 +0000 | [diff] [blame] | 441 | if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin") |
| 442 | # On Darwin -fmodules does not imply -fcxx-modules. |
| 443 | set(module_flags "${module_flags} -fcxx-modules") |
| 444 | endif() |
| 445 | if (LLVM_ENABLE_LOCAL_SUBMODULE_VISIBILITY) |
Adrian Prantl | 39952bd | 2016-06-30 15:58:36 +0000 | [diff] [blame] | 446 | set(module_flags "${module_flags} -Xclang -fmodules-local-submodule-visibility") |
Adrian Prantl | 0350314 | 2016-06-30 01:46:49 +0000 | [diff] [blame] | 447 | endif() |
Adrian Prantl | c49768f | 2016-06-30 17:15:44 +0000 | [diff] [blame] | 448 | if (LLVM_ENABLE_MODULE_DEBUGGING AND |
| 449 | ((uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG") OR |
| 450 | (uppercase_CMAKE_BUILD_TYPE STREQUAL "RELWITHDEBINFO"))) |
| 451 | set(module_flags "${module_flags} -gmodules") |
| 452 | endif() |
Adrian Prantl | 0350314 | 2016-06-30 01:46:49 +0000 | [diff] [blame] | 453 | set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} ${module_flags}") |
| 454 | |
Richard Smith | ab6ed64 | 2016-04-17 20:58:01 +0000 | [diff] [blame] | 455 | # Check that we can build code with modules enabled, and that repeatedly |
| 456 | # including <cassert> still manages to respect NDEBUG properly. |
| 457 | CHECK_CXX_SOURCE_COMPILES("#undef NDEBUG |
| 458 | #include <cassert> |
| 459 | #define NDEBUG |
| 460 | #include <cassert> |
| 461 | int main() { assert(this code is not compiled); }" |
| 462 | CXX_SUPPORTS_MODULES) |
| 463 | set(CMAKE_REQUIRED_FLAGS ${OLD_CMAKE_REQUIRED_FLAGS}) |
| 464 | if (CXX_SUPPORTS_MODULES) |
Adrian Prantl | 0350314 | 2016-06-30 01:46:49 +0000 | [diff] [blame] | 465 | append("${module_flags}" CMAKE_CXX_FLAGS) |
Richard Smith | ab6ed64 | 2016-04-17 20:58:01 +0000 | [diff] [blame] | 466 | else() |
| 467 | message(FATAL_ERROR "LLVM_ENABLE_MODULES is not supported by this compiler") |
| 468 | endif() |
| 469 | endif(LLVM_ENABLE_MODULES) |
Oscar Fuentes | d538e24 | 2011-02-03 20:57:36 +0000 | [diff] [blame] | 470 | endif( MSVC ) |
| 471 | |
Greg Bedwell | 3a42cac | 2017-11-29 18:05:32 +0000 | [diff] [blame] | 472 | if (MSVC) |
| 473 | if (NOT CLANG_CL) |
| 474 | set(msvc_warning_flags |
| 475 | # Disabled warnings. |
| 476 | -wd4141 # Suppress ''modifier' : used more than once' (because of __forceinline combined with inline) |
| 477 | -wd4146 # Suppress 'unary minus operator applied to unsigned type, result still unsigned' |
| 478 | -wd4180 # Suppress 'qualifier applied to function type has no meaning; ignored' |
| 479 | -wd4244 # Suppress ''argument' : conversion from 'type1' to 'type2', possible loss of data' |
| 480 | -wd4258 # Suppress ''var' : definition from the for loop is ignored; the definition from the enclosing scope is used' |
| 481 | -wd4267 # Suppress ''var' : conversion from 'size_t' to 'type', possible loss of data' |
| 482 | -wd4291 # Suppress ''declaration' : no matching operator delete found; memory will not be freed if initialization throws an exception' |
| 483 | -wd4345 # Suppress 'behavior change: an object of POD type constructed with an initializer of the form () will be default-initialized' |
| 484 | -wd4351 # Suppress 'new behavior: elements of array 'array' will be default initialized' |
| 485 | -wd4355 # Suppress ''this' : used in base member initializer list' |
| 486 | -wd4456 # Suppress 'declaration of 'var' hides local variable' |
| 487 | -wd4457 # Suppress 'declaration of 'var' hides function parameter' |
| 488 | -wd4458 # Suppress 'declaration of 'var' hides class member' |
| 489 | -wd4459 # Suppress 'declaration of 'var' hides global declaration' |
| 490 | -wd4503 # Suppress ''identifier' : decorated name length exceeded, name was truncated' |
| 491 | -wd4624 # Suppress ''derived class' : destructor could not be generated because a base class destructor is inaccessible' |
| 492 | -wd4722 # Suppress 'function' : destructor never returns, potential memory leak |
| 493 | -wd4800 # Suppress ''type' : forcing value to bool 'true' or 'false' (performance warning)' |
| 494 | -wd4100 # Suppress 'unreferenced formal parameter' |
| 495 | -wd4127 # Suppress 'conditional expression is constant' |
| 496 | -wd4512 # Suppress 'assignment operator could not be generated' |
| 497 | -wd4505 # Suppress 'unreferenced local function has been removed' |
| 498 | -wd4610 # Suppress '<class> can never be instantiated' |
| 499 | -wd4510 # Suppress 'default constructor could not be generated' |
| 500 | -wd4702 # Suppress 'unreachable code' |
| 501 | -wd4245 # Suppress 'signed/unsigned mismatch' |
| 502 | -wd4706 # Suppress 'assignment within conditional expression' |
| 503 | -wd4310 # Suppress 'cast truncates constant value' |
| 504 | -wd4701 # Suppress 'potentially uninitialized local variable' |
| 505 | -wd4703 # Suppress 'potentially uninitialized local pointer variable' |
| 506 | -wd4389 # Suppress 'signed/unsigned mismatch' |
| 507 | -wd4611 # Suppress 'interaction between '_setjmp' and C++ object destruction is non-portable' |
| 508 | -wd4805 # Suppress 'unsafe mix of type <type> and type <type> in operation' |
| 509 | -wd4204 # Suppress 'nonstandard extension used : non-constant aggregate initializer' |
| 510 | -wd4577 # Suppress 'noexcept used with no exception handling mode specified; termination on exception is not guaranteed' |
| 511 | -wd4091 # Suppress 'typedef: ignored on left of '' when no variable is declared' |
| 512 | # C4592 is disabled because of false positives in Visual Studio 2015 |
| 513 | # Update 1. Re-evaluate the usefulness of this diagnostic with Update 2. |
| 514 | -wd4592 # Suppress ''var': symbol will be dynamically initialized (implementation limitation) |
| 515 | -wd4319 # Suppress ''operator' : zero extending 'type' to 'type' of greater size' |
Aaron Ballman | 2bb2152 | 2018-11-20 20:50:04 +0000 | [diff] [blame] | 516 | # C4709 is disabled because of a bug with Visual Studio 2017 as of |
| 517 | # v15.8.8. Re-evaluate the usefulness of this diagnostic when the bug |
| 518 | # is fixed. |
| 519 | -wd4709 # Suppress comma operator within array index expression |
Reid Kleckner | 7e21d8d | 2017-03-16 17:05:16 +0000 | [diff] [blame] | 520 | |
Greg Bedwell | 3a42cac | 2017-11-29 18:05:32 +0000 | [diff] [blame] | 521 | # Ideally, we'd like this warning to be enabled, but MSVC 2013 doesn't |
| 522 | # support the 'aligned' attribute in the way that clang sources requires (for |
| 523 | # any code that uses the LLVM_ALIGNAS macro), so this is must be disabled to |
| 524 | # avoid unwanted alignment warnings. |
| 525 | # When we switch to requiring a version of MSVC that supports the 'alignas' |
| 526 | # specifier (MSVC 2015?) this warning can be re-enabled. |
| 527 | -wd4324 # Suppress 'structure was padded due to __declspec(align())' |
Reid Kleckner | 7e21d8d | 2017-03-16 17:05:16 +0000 | [diff] [blame] | 528 | |
Greg Bedwell | 3a42cac | 2017-11-29 18:05:32 +0000 | [diff] [blame] | 529 | # Promoted warnings. |
| 530 | -w14062 # Promote 'enumerator in switch of enum is not handled' to level 1 warning. |
Reid Kleckner | 7e21d8d | 2017-03-16 17:05:16 +0000 | [diff] [blame] | 531 | |
Greg Bedwell | 3a42cac | 2017-11-29 18:05:32 +0000 | [diff] [blame] | 532 | # Promoted warnings to errors. |
| 533 | -we4238 # Promote 'nonstandard extension used : class rvalue used as lvalue' to error. |
| 534 | ) |
| 535 | endif(NOT CLANG_CL) |
Reid Kleckner | 7e21d8d | 2017-03-16 17:05:16 +0000 | [diff] [blame] | 536 | |
| 537 | # Enable warnings |
| 538 | if (LLVM_ENABLE_WARNINGS) |
| 539 | # Put /W4 in front of all the -we flags. cl.exe doesn't care, but for |
| 540 | # clang-cl having /W4 after the -we flags will re-enable the warnings |
| 541 | # disabled by -we. |
| 542 | set(msvc_warning_flags "/W4 ${msvc_warning_flags}") |
| 543 | # CMake appends /W3 by default, and having /W3 followed by /W4 will result in |
| 544 | # cl : Command line warning D9025 : overriding '/W3' with '/W4'. Since this is |
| 545 | # a command line warning and not a compiler warning, it cannot be suppressed except |
| 546 | # by fixing the command line. |
| 547 | string(REGEX REPLACE " /W[0-4]" "" CMAKE_C_FLAGS "${CMAKE_C_FLAGS}") |
| 548 | string(REGEX REPLACE " /W[0-4]" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}") |
| 549 | |
| 550 | if (LLVM_ENABLE_PEDANTIC) |
| 551 | # No MSVC equivalent available |
| 552 | endif (LLVM_ENABLE_PEDANTIC) |
| 553 | endif (LLVM_ENABLE_WARNINGS) |
| 554 | |
| 555 | foreach(flag ${msvc_warning_flags}) |
| 556 | append("${flag}" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
| 557 | endforeach(flag) |
Greg Bedwell | 3a42cac | 2017-11-29 18:05:32 +0000 | [diff] [blame] | 558 | endif (MSVC) |
Reid Kleckner | 7e21d8d | 2017-03-16 17:05:16 +0000 | [diff] [blame] | 559 | |
| 560 | if (LLVM_ENABLE_WARNINGS AND (LLVM_COMPILER_IS_GCC_COMPATIBLE OR CLANG_CL)) |
Greg Bedwell | 3a42cac | 2017-11-29 18:05:32 +0000 | [diff] [blame] | 561 | |
| 562 | # Don't add -Wall for clang-cl, because it maps -Wall to -Weverything for |
| 563 | # MSVC compatibility. /W4 is added above instead. |
| 564 | if (NOT CLANG_CL) |
| 565 | append("-Wall" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
| 566 | endif() |
| 567 | |
Nico Weber | f13df03 | 2018-05-31 13:41:04 +0000 | [diff] [blame] | 568 | append("-Wextra -Wno-unused-parameter -Wwrite-strings" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
Reid Kleckner | 7e21d8d | 2017-03-16 17:05:16 +0000 | [diff] [blame] | 569 | append("-Wcast-qual" CMAKE_CXX_FLAGS) |
| 570 | |
| 571 | # Turn off missing field initializer warnings for gcc to avoid noise from |
| 572 | # false positives with empty {}. Turn them on otherwise (they're off by |
| 573 | # default for clang). |
| 574 | check_cxx_compiler_flag("-Wmissing-field-initializers" CXX_SUPPORTS_MISSING_FIELD_INITIALIZERS_FLAG) |
| 575 | if (CXX_SUPPORTS_MISSING_FIELD_INITIALIZERS_FLAG) |
| 576 | if (CMAKE_COMPILER_IS_GNUCXX) |
| 577 | append("-Wno-missing-field-initializers" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
| 578 | else() |
| 579 | append("-Wmissing-field-initializers" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
| 580 | endif() |
| 581 | endif() |
| 582 | |
| 583 | if (LLVM_ENABLE_PEDANTIC AND LLVM_COMPILER_IS_GCC_COMPATIBLE) |
| 584 | append("-pedantic" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
| 585 | append("-Wno-long-long" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
| 586 | endif() |
| 587 | |
Reid Kleckner | 3c3bf73 | 2018-11-01 20:31:44 +0000 | [diff] [blame] | 588 | add_flag_if_supported("-Wimplicit-fallthrough" IMPLICIT_FALLTHROUGH_FLAG) |
Reid Kleckner | 7e21d8d | 2017-03-16 17:05:16 +0000 | [diff] [blame] | 589 | add_flag_if_supported("-Wcovered-switch-default" COVERED_SWITCH_DEFAULT_FLAG) |
| 590 | append_if(USE_NO_UNINITIALIZED "-Wno-uninitialized" CMAKE_CXX_FLAGS) |
| 591 | append_if(USE_NO_MAYBE_UNINITIALIZED "-Wno-maybe-uninitialized" CMAKE_CXX_FLAGS) |
| 592 | |
Reid Kleckner | 0d01070 | 2018-07-19 20:14:46 +0000 | [diff] [blame] | 593 | # Disable -Wclass-memaccess, a C++-only warning from GCC 8 that fires on |
| 594 | # LLVM's ADT classes. |
| 595 | check_cxx_compiler_flag("-Wclass-memaccess" CXX_SUPPORTS_CLASS_MEMACCESS_FLAG) |
| 596 | append_if(CXX_SUPPORTS_CLASS_MEMACCESS_FLAG "-Wno-class-memaccess" CMAKE_CXX_FLAGS) |
| 597 | |
Aaron Ballman | 24a8df2 | 2018-09-04 12:03:49 +0000 | [diff] [blame] | 598 | # The LLVM libraries have no stable C++ API, so -Wnoexcept-type is not useful. |
| 599 | check_cxx_compiler_flag("-Wnoexcept-type" CXX_SUPPORTS_NOEXCEPT_TYPE_FLAG) |
| 600 | append_if(CXX_SUPPORTS_NOEXCEPT_TYPE_FLAG "-Wno-noexcept-type" CMAKE_CXX_FLAGS) |
| 601 | |
Reid Kleckner | 7e21d8d | 2017-03-16 17:05:16 +0000 | [diff] [blame] | 602 | # Check if -Wnon-virtual-dtor warns even though the class is marked final. |
| 603 | # If it does, don't add it. So it won't be added on clang 3.4 and older. |
| 604 | # This also catches cases when -Wnon-virtual-dtor isn't supported by |
| 605 | # the compiler at all. This flag is not activated for gcc since it will |
| 606 | # incorrectly identify a protected non-virtual base when there is a friend |
| 607 | # declaration. Don't activate this in general on Windows as this warning has |
| 608 | # too many false positives on COM-style classes, which are destroyed with |
| 609 | # Release() (PR32286). |
| 610 | if (NOT CMAKE_COMPILER_IS_GNUCXX AND NOT WIN32) |
| 611 | set(OLD_CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS}) |
| 612 | set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} -std=c++11 -Werror=non-virtual-dtor") |
| 613 | CHECK_CXX_SOURCE_COMPILES("class base {public: virtual void anchor();protected: ~base();}; |
| 614 | class derived final : public base { public: ~derived();}; |
| 615 | int main() { return 0; }" |
| 616 | CXX_WONT_WARN_ON_FINAL_NONVIRTUALDTOR) |
| 617 | set(CMAKE_REQUIRED_FLAGS ${OLD_CMAKE_REQUIRED_FLAGS}) |
| 618 | append_if(CXX_WONT_WARN_ON_FINAL_NONVIRTUALDTOR |
| 619 | "-Wnon-virtual-dtor" CMAKE_CXX_FLAGS) |
| 620 | endif() |
| 621 | |
| 622 | # Enable -Wdelete-non-virtual-dtor if available. |
| 623 | add_flag_if_supported("-Wdelete-non-virtual-dtor" DELETE_NON_VIRTUAL_DTOR_FLAG) |
| 624 | |
| 625 | # Check if -Wcomment is OK with an // comment ending with '\' if the next |
| 626 | # line is also a // comment. |
| 627 | set(OLD_CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS}) |
| 628 | set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} -Werror -Wcomment") |
| 629 | CHECK_C_SOURCE_COMPILES("// \\\\\\n//\\nint main() {return 0;}" |
| 630 | C_WCOMMENT_ALLOWS_LINE_WRAP) |
| 631 | set(CMAKE_REQUIRED_FLAGS ${OLD_CMAKE_REQUIRED_FLAGS}) |
| 632 | if (NOT C_WCOMMENT_ALLOWS_LINE_WRAP) |
| 633 | append("-Wno-comment" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
| 634 | endif() |
| 635 | |
| 636 | # Enable -Wstring-conversion to catch misuse of string literals. |
| 637 | add_flag_if_supported("-Wstring-conversion" STRING_CONVERSION_FLAG) |
| 638 | endif (LLVM_ENABLE_WARNINGS AND (LLVM_COMPILER_IS_GCC_COMPATIBLE OR CLANG_CL)) |
| 639 | |
Vassil Vassilev | 4f34449 | 2017-04-12 20:43:11 +0000 | [diff] [blame] | 640 | if (LLVM_COMPILER_IS_GCC_COMPATIBLE AND NOT LLVM_ENABLE_WARNINGS) |
| 641 | append("-w" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
| 642 | endif() |
| 643 | |
Alexey Samsonov | 777fccb | 2013-03-26 07:49:46 +0000 | [diff] [blame] | 644 | macro(append_common_sanitizer_flags) |
Reid Kleckner | 185d96c | 2015-08-14 16:48:34 +0000 | [diff] [blame] | 645 | if (NOT MSVC) |
| 646 | # Append -fno-omit-frame-pointer and turn on debug info to get better |
| 647 | # stack traces. |
| 648 | add_flag_if_supported("-fno-omit-frame-pointer" FNO_OMIT_FRAME_POINTER) |
| 649 | if (NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG" AND |
Reid Kleckner | 2140b79 | 2015-08-25 16:06:40 +0000 | [diff] [blame] | 650 | NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "RELWITHDEBINFO") |
Reid Kleckner | 185d96c | 2015-08-14 16:48:34 +0000 | [diff] [blame] | 651 | add_flag_if_supported("-gline-tables-only" GLINE_TABLES_ONLY) |
| 652 | endif() |
| 653 | # Use -O1 even in debug mode, otherwise sanitizers slowdown is too large. |
Chris Bieneman | cce04b3 | 2018-05-17 16:55:29 +0000 | [diff] [blame] | 654 | if (uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG" AND LLVM_OPTIMIZE_SANITIZED_BUILDS) |
Reid Kleckner | 185d96c | 2015-08-14 16:48:34 +0000 | [diff] [blame] | 655 | add_flag_if_supported("-O1" O1) |
| 656 | endif() |
| 657 | elseif (CLANG_CL) |
| 658 | # Keep frame pointers around. |
| 659 | append("/Oy-" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
Bob Haarman | 955228a | 2017-03-01 19:22:18 +0000 | [diff] [blame] | 660 | if (LINKER_IS_LLD_LINK) |
Reid Kleckner | 185d96c | 2015-08-14 16:48:34 +0000 | [diff] [blame] | 661 | # Use DWARF debug info with LLD. |
| 662 | append("-gdwarf" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
| 663 | else() |
| 664 | # Enable codeview otherwise. |
| 665 | append("/Z7" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
| 666 | endif() |
| 667 | # Always ask the linker to produce symbols with asan. |
| 668 | append("-debug" CMAKE_EXE_LINKER_FLAGS CMAKE_MODULE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS) |
Alexey Samsonov | b775f2f | 2013-09-02 09:15:01 +0000 | [diff] [blame] | 669 | endif() |
Alexey Samsonov | 777fccb | 2013-03-26 07:49:46 +0000 | [diff] [blame] | 670 | endmacro() |
| 671 | |
| 672 | # Turn on sanitizers if necessary. |
| 673 | if(LLVM_USE_SANITIZER) |
| 674 | if (LLVM_ON_UNIX) |
| 675 | if (LLVM_USE_SANITIZER STREQUAL "Address") |
| 676 | append_common_sanitizer_flags() |
Alp Toker | 2bd8e0c | 2014-07-09 06:27:05 +0000 | [diff] [blame] | 677 | append("-fsanitize=address" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
Alexey Samsonov | 777fccb | 2013-03-26 07:49:46 +0000 | [diff] [blame] | 678 | elseif (LLVM_USE_SANITIZER MATCHES "Memory(WithOrigins)?") |
| 679 | append_common_sanitizer_flags() |
Alp Toker | 2bd8e0c | 2014-07-09 06:27:05 +0000 | [diff] [blame] | 680 | append("-fsanitize=memory" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
Alexey Samsonov | 777fccb | 2013-03-26 07:49:46 +0000 | [diff] [blame] | 681 | if(LLVM_USE_SANITIZER STREQUAL "MemoryWithOrigins") |
Alp Toker | 2bd8e0c | 2014-07-09 06:27:05 +0000 | [diff] [blame] | 682 | append("-fsanitize-memory-track-origins" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
Alexey Samsonov | 777fccb | 2013-03-26 07:49:46 +0000 | [diff] [blame] | 683 | endif() |
Alexey Samsonov | 79e9b30 | 2014-08-29 00:50:36 +0000 | [diff] [blame] | 684 | elseif (LLVM_USE_SANITIZER STREQUAL "Undefined") |
| 685 | append_common_sanitizer_flags() |
Justin Bogner | e6fb4ac | 2015-05-14 04:52:57 +0000 | [diff] [blame] | 686 | append("-fsanitize=undefined -fno-sanitize=vptr,function -fno-sanitize-recover=all" |
Alexey Samsonov | 79e9b30 | 2014-08-29 00:50:36 +0000 | [diff] [blame] | 687 | CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
Eric Fiselier | ad49f98 | 2014-11-18 21:23:38 +0000 | [diff] [blame] | 688 | elseif (LLVM_USE_SANITIZER STREQUAL "Thread") |
| 689 | append_common_sanitizer_flags() |
| 690 | append("-fsanitize=thread" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
Filipe Cabecinhas | cec4461 | 2015-02-04 22:33:31 +0000 | [diff] [blame] | 691 | elseif (LLVM_USE_SANITIZER STREQUAL "Address;Undefined" OR |
| 692 | LLVM_USE_SANITIZER STREQUAL "Undefined;Address") |
| 693 | append_common_sanitizer_flags() |
Justin Bogner | e6fb4ac | 2015-05-14 04:52:57 +0000 | [diff] [blame] | 694 | append("-fsanitize=address,undefined -fno-sanitize=vptr,function -fno-sanitize-recover=all" |
Filipe Cabecinhas | cec4461 | 2015-02-04 22:33:31 +0000 | [diff] [blame] | 695 | CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
Michael Gottesman | 864e349 | 2017-06-20 20:28:07 +0000 | [diff] [blame] | 696 | elseif (LLVM_USE_SANITIZER STREQUAL "Leaks") |
| 697 | append_common_sanitizer_flags() |
| 698 | append("-fsanitize=leak" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
Alexey Samsonov | 777fccb | 2013-03-26 07:49:46 +0000 | [diff] [blame] | 699 | else() |
Justin Bogner | 06fdb30 | 2015-09-01 05:45:07 +0000 | [diff] [blame] | 700 | message(FATAL_ERROR "Unsupported value of LLVM_USE_SANITIZER: ${LLVM_USE_SANITIZER}") |
Alexey Samsonov | 777fccb | 2013-03-26 07:49:46 +0000 | [diff] [blame] | 701 | endif() |
Reid Kleckner | 185d96c | 2015-08-14 16:48:34 +0000 | [diff] [blame] | 702 | elseif(MSVC) |
| 703 | if (LLVM_USE_SANITIZER STREQUAL "Address") |
| 704 | append_common_sanitizer_flags() |
| 705 | append("-fsanitize=address" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
| 706 | else() |
Justin Bogner | 06fdb30 | 2015-09-01 05:45:07 +0000 | [diff] [blame] | 707 | message(FATAL_ERROR "This sanitizer not yet supported in the MSVC environment: ${LLVM_USE_SANITIZER}") |
Reid Kleckner | 185d96c | 2015-08-14 16:48:34 +0000 | [diff] [blame] | 708 | endif() |
Alexey Samsonov | 777fccb | 2013-03-26 07:49:46 +0000 | [diff] [blame] | 709 | else() |
Justin Bogner | 06fdb30 | 2015-09-01 05:45:07 +0000 | [diff] [blame] | 710 | message(FATAL_ERROR "LLVM_USE_SANITIZER is not supported on this platform.") |
Alexey Samsonov | 777fccb | 2013-03-26 07:49:46 +0000 | [diff] [blame] | 711 | endif() |
Vitaly Buka | 73275fd | 2017-01-17 21:04:23 +0000 | [diff] [blame] | 712 | if (LLVM_USE_SANITIZER MATCHES "(Undefined;)?Address(;Undefined)?") |
Justin Bogner | 92e82c5 | 2017-01-18 19:01:58 +0000 | [diff] [blame] | 713 | add_flag_if_supported("-fsanitize-address-use-after-scope" |
| 714 | FSANITIZE_USE_AFTER_SCOPE_FLAG) |
Vitaly Buka | 73275fd | 2017-01-17 21:04:23 +0000 | [diff] [blame] | 715 | endif() |
Kostya Serebryany | ed9cdce | 2015-01-27 17:59:28 +0000 | [diff] [blame] | 716 | if (LLVM_USE_SANITIZE_COVERAGE) |
George Karpenkov | 91e5590 | 2017-08-23 00:40:58 +0000 | [diff] [blame] | 717 | append("-fsanitize=fuzzer-no-link" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
Kostya Serebryany | ed9cdce | 2015-01-27 17:59:28 +0000 | [diff] [blame] | 718 | endif() |
Florian Hahn | 9bdae65 | 2018-07-20 10:12:31 +0000 | [diff] [blame] | 719 | if (LLVM_USE_SANITIZER MATCHES ".*Undefined.*") |
| 720 | set(BLACKLIST_FILE "${CMAKE_SOURCE_DIR}/utils/sanitizers/ubsan_blacklist.txt") |
| 721 | if (EXISTS "${BLACKLIST_FILE}") |
| 722 | append("-fsanitize-blacklist=${BLACKLIST_FILE}" |
| 723 | CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
| 724 | endif() |
| 725 | endif() |
Alexey Samsonov | 777fccb | 2013-03-26 07:49:46 +0000 | [diff] [blame] | 726 | endif() |
| 727 | |
Eric Christopher | 6aebd5f | 2013-07-30 21:44:10 +0000 | [diff] [blame] | 728 | # Turn on -gsplit-dwarf if requested |
| 729 | if(LLVM_USE_SPLIT_DWARF) |
Peter Collingbourne | 1496d41 | 2014-10-22 19:49:19 +0000 | [diff] [blame] | 730 | add_definitions("-gsplit-dwarf") |
Eric Christopher | 6aebd5f | 2013-07-30 21:44:10 +0000 | [diff] [blame] | 731 | endif() |
| 732 | |
Serge Pavlov | bbcc0db | 2017-03-21 04:03:24 +0000 | [diff] [blame] | 733 | add_definitions( -D__STDC_CONSTANT_MACROS ) |
| 734 | add_definitions( -D__STDC_FORMAT_MACROS ) |
| 735 | add_definitions( -D__STDC_LIMIT_MACROS ) |
Arnaud A. de Grandmaison | 745825f5 | 2013-05-29 20:41:35 +0000 | [diff] [blame] | 736 | |
Nico Weber | cae8a1e | 2018-05-19 02:36:27 +0000 | [diff] [blame] | 737 | # clang and gcc don't default-print colored diagnostics when invoked from Ninja. |
Rafael Espindola | d132ce7 | 2013-06-14 19:41:05 +0000 | [diff] [blame] | 738 | if (UNIX AND |
Nico Weber | cae8a1e | 2018-05-19 02:36:27 +0000 | [diff] [blame] | 739 | CMAKE_GENERATOR STREQUAL "Ninja" AND |
| 740 | (CMAKE_CXX_COMPILER_ID MATCHES "Clang" OR |
| 741 | (CMAKE_CXX_COMPILER_ID STREQUAL "GNU" AND |
| 742 | NOT (CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.9)))) |
| 743 | append("-fdiagnostics-color" CMAKE_C_FLAGS CMAKE_CXX_FLAGS) |
Arnaud A. de Grandmaison | 745825f5 | 2013-05-29 20:41:35 +0000 | [diff] [blame] | 744 | endif() |
NAKAMURA Takumi | 4fc67f0 | 2014-01-28 09:43:55 +0000 | [diff] [blame] | 745 | |
Rui Ueyama | bdb13d2 | 2017-01-11 22:55:35 +0000 | [diff] [blame] | 746 | # lld doesn't print colored diagnostics when invoked from Ninja |
Saleem Abdulrasool | 603f108 | 2018-04-16 21:57:10 +0000 | [diff] [blame] | 747 | if (UNIX AND CMAKE_GENERATOR STREQUAL "Ninja") |
Rui Ueyama | bdb13d2 | 2017-01-11 22:55:35 +0000 | [diff] [blame] | 748 | include(CheckLinkerFlag) |
Rui Ueyama | f4634be | 2017-07-12 21:37:02 +0000 | [diff] [blame] | 749 | check_linker_flag("-Wl,--color-diagnostics" LINKER_SUPPORTS_COLOR_DIAGNOSTICS) |
| 750 | append_if(LINKER_SUPPORTS_COLOR_DIAGNOSTICS "-Wl,--color-diagnostics" |
Rui Ueyama | bdb13d2 | 2017-01-11 22:55:35 +0000 | [diff] [blame] | 751 | CMAKE_EXE_LINKER_FLAGS CMAKE_MODULE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS) |
| 752 | endif() |
| 753 | |
NAKAMURA Takumi | 4fc67f0 | 2014-01-28 09:43:55 +0000 | [diff] [blame] | 754 | # Add flags for add_dead_strip(). |
| 755 | # FIXME: With MSVS, consider compiling with /Gy and linking with /OPT:REF? |
| 756 | # But MinSizeRel seems to add that automatically, so maybe disable these |
| 757 | # flags instead if LLVM_NO_DEAD_STRIP is set. |
| 758 | if(NOT CYGWIN AND NOT WIN32) |
Rafael Espindola | 29072c8 | 2015-04-06 14:34:43 +0000 | [diff] [blame] | 759 | if(NOT ${CMAKE_SYSTEM_NAME} MATCHES "Darwin" AND |
| 760 | NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG") |
Alexey Samsonov | c55ee81 | 2014-02-04 08:15:46 +0000 | [diff] [blame] | 761 | check_c_compiler_flag("-Werror -fno-function-sections" C_SUPPORTS_FNO_FUNCTION_SECTIONS) |
| 762 | if (C_SUPPORTS_FNO_FUNCTION_SECTIONS) |
| 763 | # Don't add -ffunction-section if it can be disabled with -fno-function-sections. |
| 764 | # Doing so will break sanitizers. |
Alp Toker | b1d6b8e | 2014-07-09 03:38:19 +0000 | [diff] [blame] | 765 | add_flag_if_supported("-ffunction-sections" FFUNCTION_SECTIONS) |
Evgeniy Stepanov | 7db79d9 | 2014-02-03 13:57:09 +0000 | [diff] [blame] | 766 | endif() |
Alp Toker | b1d6b8e | 2014-07-09 03:38:19 +0000 | [diff] [blame] | 767 | add_flag_if_supported("-fdata-sections" FDATA_SECTIONS) |
NAKAMURA Takumi | 4fc67f0 | 2014-01-28 09:43:55 +0000 | [diff] [blame] | 768 | endif() |
| 769 | endif() |
NAKAMURA Takumi | 3303370 | 2014-01-28 09:44:06 +0000 | [diff] [blame] | 770 | |
| 771 | if(MSVC) |
| 772 | # Remove flags here, for exceptions and RTTI. |
NAKAMURA Takumi | f1352fd | 2014-01-31 17:32:36 +0000 | [diff] [blame] | 773 | # Each target property or source property should be responsible to control |
| 774 | # them. |
NAKAMURA Takumi | 3303370 | 2014-01-28 09:44:06 +0000 | [diff] [blame] | 775 | # CL.EXE complains to override flags like "/GR /GR-". |
| 776 | string(REGEX REPLACE "(^| ) */EH[-cs]+ *( |$)" "\\1 \\2" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}") |
| 777 | string(REGEX REPLACE "(^| ) */GR-? *( |$)" "\\1 \\2" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}") |
| 778 | endif() |
NAKAMURA Takumi | 7ca91f9 | 2014-07-04 04:45:40 +0000 | [diff] [blame] | 779 | |
Dan Liew | 976824a | 2014-07-22 15:41:18 +0000 | [diff] [blame] | 780 | # Provide public options to globally control RTTI and EH |
| 781 | option(LLVM_ENABLE_EH "Enable Exception handling" OFF) |
| 782 | option(LLVM_ENABLE_RTTI "Enable run time type information" OFF) |
| 783 | if(LLVM_ENABLE_EH AND NOT LLVM_ENABLE_RTTI) |
| 784 | message(FATAL_ERROR "Exception handling requires RTTI. You must set LLVM_ENABLE_RTTI to ON") |
| 785 | endif() |
| 786 | |
Vedant Kumar | bac4921 | 2017-11-08 21:26:40 +0000 | [diff] [blame] | 787 | option(LLVM_ENABLE_IR_PGO "Build LLVM and tools with IR PGO instrumentation (deprecated)" Off) |
Vedant Kumar | a0805362 | 2017-09-20 17:16:01 +0000 | [diff] [blame] | 788 | mark_as_advanced(LLVM_ENABLE_IR_PGO) |
| 789 | |
Vedant Kumar | bac4921 | 2017-11-08 21:26:40 +0000 | [diff] [blame] | 790 | set(LLVM_BUILD_INSTRUMENTED OFF CACHE STRING "Build LLVM and tools with PGO instrumentation. May be specified as IR or Frontend") |
Chris Bieneman | f6aeea1 | 2015-12-10 21:19:07 +0000 | [diff] [blame] | 791 | mark_as_advanced(LLVM_BUILD_INSTRUMENTED) |
Vedant Kumar | bac4921 | 2017-11-08 21:26:40 +0000 | [diff] [blame] | 792 | string(TOUPPER "${LLVM_BUILD_INSTRUMENTED}" uppercase_LLVM_BUILD_INSTRUMENTED) |
Vedant Kumar | a0805362 | 2017-09-20 17:16:01 +0000 | [diff] [blame] | 793 | |
| 794 | if (LLVM_BUILD_INSTRUMENTED) |
Vedant Kumar | bac4921 | 2017-11-08 21:26:40 +0000 | [diff] [blame] | 795 | if (LLVM_ENABLE_IR_PGO OR uppercase_LLVM_BUILD_INSTRUMENTED STREQUAL "IR") |
Vedant Kumar | a0805362 | 2017-09-20 17:16:01 +0000 | [diff] [blame] | 796 | append("-fprofile-generate='${LLVM_PROFILE_DATA_DIR}'" |
| 797 | CMAKE_CXX_FLAGS |
| 798 | CMAKE_C_FLAGS |
| 799 | CMAKE_EXE_LINKER_FLAGS |
| 800 | CMAKE_SHARED_LINKER_FLAGS) |
| 801 | else() |
| 802 | append("-fprofile-instr-generate='${LLVM_PROFILE_FILE_PATTERN}'" |
| 803 | CMAKE_CXX_FLAGS |
| 804 | CMAKE_C_FLAGS |
| 805 | CMAKE_EXE_LINKER_FLAGS |
| 806 | CMAKE_SHARED_LINKER_FLAGS) |
| 807 | endif() |
| 808 | endif() |
Vedant Kumar | d1714dc | 2016-06-13 23:33:48 +0000 | [diff] [blame] | 809 | |
Vedant Kumar | 580fbe1 | 2017-09-20 17:16:00 +0000 | [diff] [blame] | 810 | option(LLVM_BUILD_INSTRUMENTED_COVERAGE "Build LLVM and tools with Code Coverage instrumentation" Off) |
Vedant Kumar | d1714dc | 2016-06-13 23:33:48 +0000 | [diff] [blame] | 811 | mark_as_advanced(LLVM_BUILD_INSTRUMENTED_COVERAGE) |
| 812 | append_if(LLVM_BUILD_INSTRUMENTED_COVERAGE "-fprofile-instr-generate='${LLVM_PROFILE_FILE_PATTERN}' -fcoverage-mapping" |
Chris Bieneman | f6aeea1 | 2015-12-10 21:19:07 +0000 | [diff] [blame] | 813 | CMAKE_CXX_FLAGS |
| 814 | CMAKE_C_FLAGS |
| 815 | CMAKE_EXE_LINKER_FLAGS |
| 816 | CMAKE_SHARED_LINKER_FLAGS) |
| 817 | |
Vedant Kumar | bac4921 | 2017-11-08 21:26:40 +0000 | [diff] [blame] | 818 | if (LLVM_BUILD_INSTRUMENTED AND LLVM_BUILD_INSTRUMENTED_COVERAGE) |
| 819 | message(FATAL_ERROR "LLVM_BUILD_INSTRUMENTED and LLVM_BUILD_INSTRUMENTED_COVERAGE cannot both be specified") |
| 820 | endif() |
| 821 | |
Bob Haarman | 955228a | 2017-03-01 19:22:18 +0000 | [diff] [blame] | 822 | if(LLVM_ENABLE_LTO AND LLVM_ON_WIN32 AND NOT LINKER_IS_LLD_LINK) |
| 823 | message(FATAL_ERROR "When compiling for Windows, LLVM_ENABLE_LTO requires using lld as the linker (point CMAKE_LINKER at lld-link.exe)") |
| 824 | endif() |
Justin Bogner | 1d15d57 | 2016-02-08 21:01:24 +0000 | [diff] [blame] | 825 | if(uppercase_LLVM_ENABLE_LTO STREQUAL "THIN") |
Bob Haarman | 955228a | 2017-03-01 19:22:18 +0000 | [diff] [blame] | 826 | append("-flto=thin" CMAKE_CXX_FLAGS CMAKE_C_FLAGS) |
| 827 | if(NOT LINKER_IS_LLD_LINK) |
| 828 | append("-flto=thin" CMAKE_EXE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS) |
| 829 | endif() |
Peter Collingbourne | 603d3c6 | 2017-03-15 16:28:43 +0000 | [diff] [blame] | 830 | # If the linker supports it, enable the lto cache. This improves initial build |
| 831 | # time a little since we re-link a lot of the same objects, and significantly |
| 832 | # improves incremental build time. |
| 833 | # FIXME: We should move all this logic into the clang driver. |
| 834 | if(APPLE) |
| 835 | append("-Wl,-cache_path_lto,${PROJECT_BINARY_DIR}/lto.cache" |
| 836 | CMAKE_EXE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS) |
| 837 | elseif(UNIX AND LLVM_USE_LINKER STREQUAL "lld") |
| 838 | append("-Wl,--thinlto-cache-dir=${PROJECT_BINARY_DIR}/lto.cache" |
| 839 | CMAKE_EXE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS) |
| 840 | elseif(LLVM_USE_LINKER STREQUAL "gold") |
| 841 | append("-Wl,--plugin-opt,cache-dir=${PROJECT_BINARY_DIR}/lto.cache" |
| 842 | CMAKE_EXE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS) |
| 843 | endif() |
Justin Bogner | 1d15d57 | 2016-02-08 21:01:24 +0000 | [diff] [blame] | 844 | elseif(uppercase_LLVM_ENABLE_LTO STREQUAL "FULL") |
Bob Haarman | 955228a | 2017-03-01 19:22:18 +0000 | [diff] [blame] | 845 | append("-flto=full" CMAKE_CXX_FLAGS CMAKE_C_FLAGS) |
| 846 | if(NOT LINKER_IS_LLD_LINK) |
| 847 | append("-flto=full" CMAKE_EXE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS) |
| 848 | endif() |
Justin Bogner | 1d15d57 | 2016-02-08 21:01:24 +0000 | [diff] [blame] | 849 | elseif(LLVM_ENABLE_LTO) |
Bob Haarman | 955228a | 2017-03-01 19:22:18 +0000 | [diff] [blame] | 850 | append("-flto" CMAKE_CXX_FLAGS CMAKE_C_FLAGS) |
| 851 | if(NOT LINKER_IS_LLD_LINK) |
| 852 | append("-flto" CMAKE_EXE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS) |
| 853 | endif() |
Justin Bogner | 1d15d57 | 2016-02-08 21:01:24 +0000 | [diff] [blame] | 854 | endif() |
Justin Bogner | 125c546 | 2016-02-04 07:28:30 +0000 | [diff] [blame] | 855 | |
John Brawn | f653fb8 | 2016-05-26 11:16:43 +0000 | [diff] [blame] | 856 | # This option makes utils/extract_symbols.py be used to determine the list of |
| 857 | # symbols to export from LLVM tools. This is necessary when using MSVC if you |
| 858 | # want to allow plugins, though note that the plugin has to explicitly link |
| 859 | # against (exactly one) tool so we can't unilaterally turn on |
| 860 | # LLVM_ENABLE_PLUGINS when it's enabled. |
| 861 | option(LLVM_EXPORT_SYMBOLS_FOR_PLUGINS "Export symbols from LLVM tools so that plugins can import them" OFF) |
| 862 | if(BUILD_SHARED_LIBS AND LLVM_EXPORT_SYMBOLS_FOR_PLUGINS) |
| 863 | message(FATAL_ERROR "BUILD_SHARED_LIBS not compatible with LLVM_EXPORT_SYMBOLS_FOR_PLUGINS") |
| 864 | endif() |
| 865 | if(LLVM_LINK_LLVM_DYLIB AND LLVM_EXPORT_SYMBOLS_FOR_PLUGINS) |
| 866 | message(FATAL_ERROR "LLVM_LINK_LLVM_DYLIB not compatible with LLVM_EXPORT_SYMBOLS_FOR_PLUGINS") |
| 867 | endif() |
| 868 | |
NAKAMURA Takumi | 7ca91f9 | 2014-07-04 04:45:40 +0000 | [diff] [blame] | 869 | # Plugin support |
| 870 | # FIXME: Make this configurable. |
Reid Kleckner | e2ec6e3 | 2016-02-10 01:06:37 +0000 | [diff] [blame] | 871 | if(WIN32 OR CYGWIN) |
Stephen Hines | cb99b8b | 2017-08-29 02:07:28 +0000 | [diff] [blame] | 872 | if(BUILD_SHARED_LIBS OR LLVM_BUILD_LLVM_DYLIB) |
NAKAMURA Takumi | d74d9b3 | 2014-07-13 13:47:37 +0000 | [diff] [blame] | 873 | set(LLVM_ENABLE_PLUGINS ON) |
| 874 | else() |
| 875 | set(LLVM_ENABLE_PLUGINS OFF) |
| 876 | endif() |
NAKAMURA Takumi | 7ca91f9 | 2014-07-04 04:45:40 +0000 | [diff] [blame] | 877 | else() |
| 878 | set(LLVM_ENABLE_PLUGINS ON) |
| 879 | endif() |
Serge Pavlov | bbcc0db | 2017-03-21 04:03:24 +0000 | [diff] [blame] | 880 | |
Chris Bieneman | b34f2ee | 2018-10-15 21:14:19 +0000 | [diff] [blame] | 881 | # By default we should enable LLVM_ENABLE_IDE only for multi-configuration |
| 882 | # generators. This option disables optional build system features that make IDEs |
| 883 | # less usable. |
| 884 | set(LLVM_ENABLE_IDE_default OFF) |
| 885 | if (CMAKE_CONFIGURATION_TYPES) |
| 886 | set(LLVM_ENABLE_IDE_default ON) |
| 887 | endif() |
| 888 | option(LLVM_ENABLE_IDE |
| 889 | "Disable optional build system features that cause problems for IDE generators" |
| 890 | ${LLVM_ENABLE_IDE_default}) |
| 891 | if (CMAKE_CONFIGURATION_TYPES AND NOT LLVM_ENABLE_IDE) |
| 892 | message(WARNING "Disabling LLVM_ENABLE_IDE on multi-configuration generators is not recommended.") |
| 893 | endif() |
Eric Fiselier | 97f96f6 | 2018-01-12 04:01:41 +0000 | [diff] [blame] | 894 | |
Serge Pavlov | bbcc0db | 2017-03-21 04:03:24 +0000 | [diff] [blame] | 895 | function(get_compile_definitions) |
| 896 | get_directory_property(top_dir_definitions DIRECTORY ${CMAKE_SOURCE_DIR} COMPILE_DEFINITIONS) |
| 897 | foreach(definition ${top_dir_definitions}) |
| 898 | if(DEFINED result) |
| 899 | string(APPEND result " -D${definition}") |
| 900 | else() |
| 901 | set(result "-D${definition}") |
| 902 | endif() |
| 903 | endforeach() |
| 904 | set(LLVM_DEFINITIONS "${result}" PARENT_SCOPE) |
| 905 | endfunction() |
| 906 | get_compile_definitions() |
Daniel Sanders | a3170b6 | 2018-03-05 19:38:16 +0000 | [diff] [blame] | 907 | |
Daniel Sanders | a86576d | 2018-03-07 19:32:36 +0000 | [diff] [blame] | 908 | option(LLVM_FORCE_ENABLE_STATS "Enable statistics collection for builds that wouldn't normally enable it" OFF) |