blob: a83be41b228c7b15fccd11052ed75c5bda3499b8 [file] [log] [blame]
Daniel Dunbarc8f399d2011-11-04 19:04:35 +00001# This CMake module is responsible for interpreting the user defined LLVM_
2# options and executing the appropriate CMake commands to realize the users'
3# selections.
4
Oscar Fuentesd538e242011-02-03 20:57:36 +00005include(AddLLVMDefinitions)
Joe Abbeyd6a93072012-11-26 02:02:08 +00006include(CheckCCompilerFlag)
Jordan Rosee2abe052013-03-02 01:00:40 +00007include(CheckCXXCompilerFlag)
Oscar Fuentesd538e242011-02-03 20:57:36 +00008
Oscar Fuentes104e9922011-05-11 13:53:08 +00009if( CMAKE_COMPILER_IS_GNUCXX )
10 set(LLVM_COMPILER_IS_GCC_COMPATIBLE ON)
11elseif( "${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang" )
12 set(LLVM_COMPILER_IS_GCC_COMPATIBLE ON)
13endif()
14
Oscar Fuentesd538e242011-02-03 20:57:36 +000015if( LLVM_ENABLE_ASSERTIONS )
16 # MSVC doesn't like _DEBUG on release builds. See PR 4379.
17 if( NOT MSVC )
18 add_definitions( -D_DEBUG )
19 endif()
20 # On Release builds cmake automatically defines NDEBUG, so we
21 # explicitly undefine it:
22 if( uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" )
23 add_definitions( -UNDEBUG )
24 endif()
25else()
26 if( NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" )
Oscar Fuentesdd70cd82011-02-06 19:07:06 +000027 if( NOT MSVC_IDE AND NOT XCODE )
28 add_definitions( -DNDEBUG )
29 endif()
Oscar Fuentesd538e242011-02-03 20:57:36 +000030 endif()
31endif()
32
33if(WIN32)
34 if(CYGWIN)
35 set(LLVM_ON_WIN32 0)
36 set(LLVM_ON_UNIX 1)
37 else(CYGWIN)
38 set(LLVM_ON_WIN32 1)
39 set(LLVM_ON_UNIX 0)
Oscar Fuentesd538e242011-02-03 20:57:36 +000040 endif(CYGWIN)
41 set(LTDL_SHLIB_EXT ".dll")
42 set(EXEEXT ".exe")
43 # Maximum path length is 160 for non-unicode paths
44 set(MAXPATHLEN 160)
45else(WIN32)
46 if(UNIX)
47 set(LLVM_ON_WIN32 0)
48 set(LLVM_ON_UNIX 1)
49 if(APPLE)
50 set(LTDL_SHLIB_EXT ".dylib")
51 else(APPLE)
52 set(LTDL_SHLIB_EXT ".so")
53 endif(APPLE)
54 set(EXEEXT "")
55 # FIXME: Maximum path length is currently set to 'safe' fixed value
56 set(MAXPATHLEN 2024)
57 else(UNIX)
58 MESSAGE(SEND_ERROR "Unable to determine platform")
59 endif(UNIX)
60endif(WIN32)
61
62if( LLVM_ENABLE_PIC )
63 if( XCODE )
64 # Xcode has -mdynamic-no-pic on by default, which overrides -fPIC. I don't
65 # know how to disable this, so just force ENABLE_PIC off for now.
66 message(WARNING "-fPIC not supported with Xcode.")
NAKAMURA Takumide0cfe82011-12-16 06:21:08 +000067 elseif( WIN32 OR CYGWIN)
Oscar Fuentesd538e242011-02-03 20:57:36 +000068 # On Windows all code is PIC. MinGW warns if -fPIC is used.
69 else()
Oscar Fuentesd538e242011-02-03 20:57:36 +000070 check_cxx_compiler_flag("-fPIC" SUPPORTS_FPIC_FLAG)
71 if( SUPPORTS_FPIC_FLAG )
72 message(STATUS "Building with -fPIC")
73 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC")
Oscar Fuentesc2db19e2011-04-01 19:36:06 +000074 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fPIC")
Oscar Fuentesd538e242011-02-03 20:57:36 +000075 else( SUPPORTS_FPIC_FLAG )
76 message(WARNING "-fPIC not supported.")
77 endif()
Rafael Espindolab2888502012-01-20 04:07:48 +000078
Rafael Espindolaace4f2b2012-01-20 13:10:10 +000079 if( WIN32 OR CYGWIN)
80 # MinGW warns if -fvisibility-inlines-hidden is used.
81 else()
82 check_cxx_compiler_flag("-fvisibility-inlines-hidden" SUPPORTS_FVISIBILITY_INLINES_HIDDEN_FLAG)
83 if( SUPPORTS_FVISIBILITY_INLINES_HIDDEN_FLAG )
84 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fvisibility-inlines-hidden")
Rafael Espindolaace4f2b2012-01-20 13:10:10 +000085 endif()
86 endif()
Oscar Fuentesd538e242011-02-03 20:57:36 +000087 endif()
88endif()
89
90if( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
91 # TODO: support other platforms and toolchains.
Oscar Fuentesd538e242011-02-03 20:57:36 +000092 if( LLVM_BUILD_32_BITS )
93 message(STATUS "Building 32 bits executables and libraries.")
94 add_llvm_definitions( -m32 )
Tim Northover4c8657a2012-05-23 18:42:02 +000095 set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -m32")
96 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -m32")
Tobias Grosser2563ad22012-06-08 09:41:23 +000097 set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -m32")
Oscar Fuentesd538e242011-02-03 20:57:36 +000098 endif( LLVM_BUILD_32_BITS )
99endif( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
100
NAKAMURA Takumi5bfe3bf2012-04-21 14:50:56 +0000101# On Win32 using MS tools, provide an option to set the number of parallel jobs
102# to use.
NAKAMURA Takumi4a80d642012-04-21 14:51:02 +0000103if( MSVC_IDE )
Oscar Fuentes0dddbc32011-03-02 17:47:37 +0000104 set(LLVM_COMPILER_JOBS "0" CACHE STRING
105 "Number of parallel compiler jobs. 0 means use all processors. Default is 0.")
106 if( NOT LLVM_COMPILER_JOBS STREQUAL "1" )
107 if( LLVM_COMPILER_JOBS STREQUAL "0" )
108 add_llvm_definitions( /MP )
109 else()
110 if (MSVC10)
111 message(FATAL_ERROR
112 "Due to a bug in CMake only 0 and 1 is supported for "
113 "LLVM_COMPILER_JOBS when generating for Visual Studio 2010")
114 else()
115 message(STATUS "Number of parallel compiler jobs set to " ${LLVM_COMPILER_JOBS})
116 add_llvm_definitions( /MP${LLVM_COMPILER_JOBS} )
117 endif()
118 endif()
119 else()
120 message(STATUS "Parallel compilation disabled")
121 endif()
122endif()
123
Oscar Fuentesd538e242011-02-03 20:57:36 +0000124if( MSVC )
125 include(ChooseMSVCCRT)
126
Michael J. Spencer647c0ce2012-03-01 22:42:52 +0000127 if( MSVC11 )
128 add_llvm_definitions(-D_VARIADIC_MAX=10)
129 endif()
130
Oscar Fuentesd538e242011-02-03 20:57:36 +0000131 # Add definitions that make MSVC much less annoying.
132 add_llvm_definitions(
133 # For some reason MS wants to deprecate a bunch of standard functions...
134 -D_CRT_SECURE_NO_DEPRECATE
135 -D_CRT_SECURE_NO_WARNINGS
136 -D_CRT_NONSTDC_NO_DEPRECATE
137 -D_CRT_NONSTDC_NO_WARNINGS
138 -D_SCL_SECURE_NO_DEPRECATE
139 -D_SCL_SECURE_NO_WARNINGS
140
Michael J. Spencerc3ab9ce2012-06-07 21:34:15 +0000141 # Disabled warnings.
Michael J. Spencerfa371ea2012-06-07 21:34:31 +0000142 -wd4065 # Suppress 'switch statement contains 'default' but no 'case' labels'
Oscar Fuentesd538e242011-02-03 20:57:36 +0000143 -wd4146 # Suppress 'unary minus operator applied to unsigned type, result still unsigned'
144 -wd4180 # Suppress 'qualifier applied to function type has no meaning; ignored'
Michael J. Spencerfa371ea2012-06-07 21:34:31 +0000145 -wd4181 # Suppress 'qualifier applied to reference type; ignored'
Oscar Fuentesd538e242011-02-03 20:57:36 +0000146 -wd4224 # Suppress 'nonstandard extension used : formal parameter 'identifier' was previously defined as a type'
147 -wd4244 # Suppress ''argument' : conversion from 'type1' to 'type2', possible loss of data'
148 -wd4267 # Suppress ''var' : conversion from 'size_t' to 'type', possible loss of data'
149 -wd4275 # Suppress 'An exported class was derived from a class that was not exported.'
150 -wd4291 # Suppress ''declaration' : no matching operator delete found; memory will not be freed if initialization throws an exception'
151 -wd4345 # Suppress 'behavior change: an object of POD type constructed with an initializer of the form () will be default-initialized'
152 -wd4351 # Suppress 'new behavior: elements of array 'array' will be default initialized'
153 -wd4355 # Suppress ''this' : used in base member initializer list'
154 -wd4503 # Suppress ''identifier' : decorated name length exceeded, name was truncated'
NAKAMURA Takumia69179d2011-08-17 01:28:30 +0000155 -wd4551 # Suppress 'function call missing argument list'
Oscar Fuentesd538e242011-02-03 20:57:36 +0000156 -wd4624 # Suppress ''derived class' : destructor could not be generated because a base class destructor is inaccessible'
157 -wd4715 # Suppress ''function' : not all control paths return a value'
Reid Kleckner5b7c0572013-01-25 15:36:13 +0000158 -wd4722 # Suppress ''function' : destructor never returns, potential memory leak'
Oscar Fuentesd538e242011-02-03 20:57:36 +0000159 -wd4800 # Suppress ''type' : forcing value to bool 'true' or 'false' (performance warning)'
Michael J. Spencerc3ab9ce2012-06-07 21:34:15 +0000160
161 # Promoted warnings.
162 -w14062 # Promote 'enumerator in switch of enum is not handled' to level 1 warning.
Michael J. Spencer67762d12012-06-07 23:33:56 +0000163
164 # Promoted warnings to errors.
165 -we4238 # Promote 'nonstandard extension used : class rvalue used as lvalue' to error.
Oscar Fuentesd538e242011-02-03 20:57:36 +0000166 )
167
168 # Enable warnings
169 if (LLVM_ENABLE_WARNINGS)
Michael J. Spencerc3ab9ce2012-06-07 21:34:15 +0000170 add_llvm_definitions( /W4 )
Oscar Fuentesd538e242011-02-03 20:57:36 +0000171 if (LLVM_ENABLE_PEDANTIC)
172 # No MSVC equivalent available
173 endif (LLVM_ENABLE_PEDANTIC)
174 endif (LLVM_ENABLE_WARNINGS)
175 if (LLVM_ENABLE_WERROR)
176 add_llvm_definitions( /WX )
177 endif (LLVM_ENABLE_WERROR)
Oscar Fuentes104e9922011-05-11 13:53:08 +0000178elseif( LLVM_COMPILER_IS_GCC_COMPATIBLE )
Oscar Fuentesd538e242011-02-03 20:57:36 +0000179 if (LLVM_ENABLE_WARNINGS)
180 add_llvm_definitions( -Wall -W -Wno-unused-parameter -Wwrite-strings )
Edwin Vaneadc4af62013-01-31 18:05:54 +0000181
182 # Turn off missing field initializer warnings for gcc to avoid noise from
183 # false positives with empty {}. Turn them on otherwise (they're off by
184 # default for clang).
185 check_cxx_compiler_flag("-Wmissing-field-initializers" CXX_SUPPORTS_MISSING_FIELD_INITIALIZERS_FLAG)
186 if (CXX_SUPPORTS_MISSING_FIELD_INITIALIZERS_FLAG)
187 if (CMAKE_COMPILER_IS_GNUCXX)
188 add_llvm_definitions( -Wno-missing-field-initializers )
189 else()
190 add_llvm_definitions( -Wmissing-field-initializers )
191 endif()
192 endif()
193
Oscar Fuentesd538e242011-02-03 20:57:36 +0000194 if (LLVM_ENABLE_PEDANTIC)
195 add_llvm_definitions( -pedantic -Wno-long-long )
Richard Smith1983f542013-01-31 22:19:12 +0000196 check_cxx_compiler_flag("-Werror -Wnested-anon-types" CXX_SUPPORTS_NO_NESTED_ANON_TYPES_FLAG)
197 if( CXX_SUPPORTS_NO_NESTED_ANON_TYPES_FLAG )
198 set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-nested-anon-types" )
199 endif()
Oscar Fuentesd538e242011-02-03 20:57:36 +0000200 endif (LLVM_ENABLE_PEDANTIC)
Joe Abbeyd6a93072012-11-26 02:02:08 +0000201 check_cxx_compiler_flag("-Werror -Wcovered-switch-default" CXX_SUPPORTS_COVERED_SWITCH_DEFAULT_FLAG)
202 if( CXX_SUPPORTS_COVERED_SWITCH_DEFAULT_FLAG )
Dmitri Gribenkofa45cdf2012-12-24 17:52:48 +0000203 set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wcovered-switch-default" )
Joe Abbeyd6a93072012-11-26 02:02:08 +0000204 endif()
205 check_c_compiler_flag("-Werror -Wcovered-switch-default" C_SUPPORTS_COVERED_SWITCH_DEFAULT_FLAG)
206 if( C_SUPPORTS_COVERED_SWITCH_DEFAULT_FLAG )
Dmitri Gribenkofa45cdf2012-12-24 17:52:48 +0000207 set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wcovered-switch-default" )
Rafael Espindola9993a3a2012-02-28 23:32:06 +0000208 endif()
Edwin Vane4b5dbaa2013-02-04 02:32:44 +0000209 if (USE_NO_UNINITIALIZED)
210 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-uninitialized")
211 endif()
212 if (USE_NO_MAYBE_UNINITIALIZED)
213 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-maybe-uninitialized")
214 endif()
Oscar Fuentesd538e242011-02-03 20:57:36 +0000215 endif (LLVM_ENABLE_WARNINGS)
216 if (LLVM_ENABLE_WERROR)
217 add_llvm_definitions( -Werror )
218 endif (LLVM_ENABLE_WERROR)
219endif( MSVC )
220
Oscar Fuentesd538e242011-02-03 20:57:36 +0000221add_llvm_definitions( -D__STDC_CONSTANT_MACROS )
NAKAMURA Takumie2aa5d52011-10-11 12:51:44 +0000222add_llvm_definitions( -D__STDC_FORMAT_MACROS )
NAKAMURA Takumi11b8a002011-10-11 12:51:36 +0000223add_llvm_definitions( -D__STDC_LIMIT_MACROS )