]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - opencl/llvm.git/blob - cmake/modules/HandleLLVMOptions.cmake
Re-enabling some more MSVC warnings; all of these compile cleanly with no further...
[opencl/llvm.git] / cmake / modules / HandleLLVMOptions.cmake
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.
5 include(AddLLVMDefinitions)
6 include(CheckCCompilerFlag)
7 include(CheckCXXCompilerFlag)
9 if( CMAKE_COMPILER_IS_GNUCXX )
10   set(LLVM_COMPILER_IS_GCC_COMPATIBLE ON)
11 elseif( "${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang" )
12   set(LLVM_COMPILER_IS_GCC_COMPATIBLE ON)
13 endif()
15 if( 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 non-Debug builds cmake automatically defines NDEBUG, so we
21   # explicitly undefine it:
22   if( NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG" )
23     add_definitions( -UNDEBUG )
24     # Also remove /D NDEBUG to avoid MSVC warnings about conflicting defines.
25     string (REGEX REPLACE "(^| )[/-]D *NDEBUG($| )" " "
26       CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE}")
27   endif()
28 else()
29   if( NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" )
30     if( NOT MSVC_IDE AND NOT XCODE )
31       add_definitions( -DNDEBUG )
32     endif()
33   endif()
34 endif()
36 if(WIN32)
37   if(CYGWIN)
38     set(LLVM_ON_WIN32 0)
39     set(LLVM_ON_UNIX 1)
40   else(CYGWIN)
41     set(LLVM_ON_WIN32 1)
42     set(LLVM_ON_UNIX 0)
43   endif(CYGWIN)
44   set(LTDL_SHLIB_EXT ".dll")
45   set(EXEEXT ".exe")
46   # Maximum path length is 160 for non-unicode paths
47   set(MAXPATHLEN 160)
48 else(WIN32)
49   if(UNIX)
50     set(LLVM_ON_WIN32 0)
51     set(LLVM_ON_UNIX 1)
52     if(APPLE)
53       set(LTDL_SHLIB_EXT ".dylib")
54     else(APPLE)
55       set(LTDL_SHLIB_EXT ".so")
56     endif(APPLE)
57     set(EXEEXT "")
58     # FIXME: Maximum path length is currently set to 'safe' fixed value
59     set(MAXPATHLEN 2024)
60   else(UNIX)
61     MESSAGE(SEND_ERROR "Unable to determine platform")
62   endif(UNIX)
63 endif(WIN32)
65 function(add_flag_or_print_warning flag)
66   check_c_compiler_flag(${flag} C_SUPPORTS_FLAG)
67   check_cxx_compiler_flag(${flag} CXX_SUPPORTS_FLAG)
68   if (C_SUPPORTS_FLAG AND CXX_SUPPORTS_FLAG)
69     message(STATUS "Building with ${flag}")
70     set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${flag}" PARENT_SCOPE)
71     set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${flag}" PARENT_SCOPE)
72   else()
73     message(WARNING "${flag} is not supported.")
74   endif()
75 endfunction()
77 function(append value)
78   foreach(variable ${ARGN})
79     set(${variable} "${${variable}} ${value}" PARENT_SCOPE)
80   endforeach(variable)
81 endfunction()
83 function(append_if condition value)
84   if (${condition})
85     foreach(variable ${ARGN})
86       set(${variable} "${${variable}} ${value}" PARENT_SCOPE)
87     endforeach(variable)
88   endif()
89 endfunction()
91 macro(add_flag_if_supported flag)
92   check_c_compiler_flag(${flag} C_SUPPORTS_FLAG)
93   append_if(C_SUPPORTS_FLAG "${flag}" CMAKE_C_FLAGS)
94   check_cxx_compiler_flag(${flag} CXX_SUPPORTS_FLAG)
95   append_if(CXX_SUPPORTS_FLAG "${flag}" CMAKE_CXX_FLAGS)
96 endmacro()
98 if( LLVM_ENABLE_PIC )
99   if( XCODE )
100     # Xcode has -mdynamic-no-pic on by default, which overrides -fPIC. I don't
101     # know how to disable this, so just force ENABLE_PIC off for now.
102     message(WARNING "-fPIC not supported with Xcode.")
103   elseif( WIN32 OR CYGWIN)
104     # On Windows all code is PIC. MinGW warns if -fPIC is used.
105   else()
106     add_flag_or_print_warning("-fPIC")
108     if( WIN32 OR CYGWIN)
109       # MinGW warns if -fvisibility-inlines-hidden is used.
110     else()
111       check_cxx_compiler_flag("-fvisibility-inlines-hidden" SUPPORTS_FVISIBILITY_INLINES_HIDDEN_FLAG)
112       append_if(SUPPORTS_FVISIBILITY_INLINES_HIDDEN_FLAG "-fvisibility-inlines-hidden" CMAKE_CXX_FLAGS)
113     endif()
114   endif()
115 endif()
117 if( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
118   # TODO: support other platforms and toolchains.
119   if( LLVM_BUILD_32_BITS )
120     message(STATUS "Building 32 bits executables and libraries.")
121     add_llvm_definitions( -m32 )
122     set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -m32")
123     set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -m32")
124     set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -m32")
125   endif( LLVM_BUILD_32_BITS )
126 endif( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
128 # On Win32 using MS tools, provide an option to set the number of parallel jobs
129 # to use.
130 if( MSVC_IDE )
131   set(LLVM_COMPILER_JOBS "0" CACHE STRING
132     "Number of parallel compiler jobs. 0 means use all processors. Default is 0.")
133   if( NOT LLVM_COMPILER_JOBS STREQUAL "1" )
134     if( LLVM_COMPILER_JOBS STREQUAL "0" )
135       add_llvm_definitions( /MP )
136     else()
137       if (MSVC10)
138         message(FATAL_ERROR
139           "Due to a bug in CMake only 0 and 1 is supported for "
140           "LLVM_COMPILER_JOBS when generating for Visual Studio 2010")
141       else()
142         message(STATUS "Number of parallel compiler jobs set to " ${LLVM_COMPILER_JOBS})
143         add_llvm_definitions( /MP${LLVM_COMPILER_JOBS} )
144       endif()
145     endif()
146   else()
147     message(STATUS "Parallel compilation disabled")
148   endif()
149 endif()
151 if( MSVC )
152   include(ChooseMSVCCRT)
154   if( MSVC11 )
155     add_llvm_definitions(-D_VARIADIC_MAX=10)
156   endif()
158   # Add definitions that make MSVC much less annoying.
159   add_llvm_definitions(
160     # For some reason MS wants to deprecate a bunch of standard functions...
161     -D_CRT_SECURE_NO_DEPRECATE
162     -D_CRT_SECURE_NO_WARNINGS
163     -D_CRT_NONSTDC_NO_DEPRECATE
164     -D_CRT_NONSTDC_NO_WARNINGS
165     -D_SCL_SECURE_NO_DEPRECATE
166     -D_SCL_SECURE_NO_WARNINGS
168     # Disabled warnings.
169     -wd4146 # Suppress 'unary minus operator applied to unsigned type, result still unsigned'
170     -wd4180 # Suppress 'qualifier applied to function type has no meaning; ignored'
171     -wd4181 # Suppress 'qualifier applied to reference type; ignored'
172     -wd4244 # Suppress ''argument' : conversion from 'type1' to 'type2', possible loss of data'
173     -wd4267 # Suppress ''var' : conversion from 'size_t' to 'type', possible loss of data'
174     -wd4275 # Suppress 'An exported class was derived from a class that was not exported.'
175     -wd4345 # Suppress 'behavior change: an object of POD type constructed with an initializer of the form () will be default-initialized'
176     -wd4351 # Suppress 'new behavior: elements of array 'array' will be default initialized'
177     -wd4355 # Suppress ''this' : used in base member initializer list'
178     -wd4503 # Suppress ''identifier' : decorated name length exceeded, name was truncated'
179     -wd4551 # Suppress 'function call missing argument list'
180     -wd4624 # Suppress ''derived class' : destructor could not be generated because a base class destructor is inaccessible'
181     -wd4800 # Suppress ''type' : forcing value to bool 'true' or 'false' (performance warning)'
183     # Promoted warnings.
184     -w14062 # Promote 'enumerator in switch of enum is not handled' to level 1 warning.
186     # Promoted warnings to errors.
187     -we4238 # Promote 'nonstandard extension used : class rvalue used as lvalue' to error.
188     )
190   # Enable warnings
191   if (LLVM_ENABLE_WARNINGS)
192     add_llvm_definitions( /W4 )
193     if (LLVM_ENABLE_PEDANTIC)
194       # No MSVC equivalent available
195     endif (LLVM_ENABLE_PEDANTIC)
196   endif (LLVM_ENABLE_WARNINGS)
197   if (LLVM_ENABLE_WERROR)
198     add_llvm_definitions( /WX )
199   endif (LLVM_ENABLE_WERROR)
200 elseif( LLVM_COMPILER_IS_GCC_COMPATIBLE )
201   if (LLVM_ENABLE_WARNINGS)
202     append("-Wall -W -Wno-unused-parameter -Wwrite-strings" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
204     # Turn off missing field initializer warnings for gcc to avoid noise from
205     # false positives with empty {}. Turn them on otherwise (they're off by
206     # default for clang).
207     check_cxx_compiler_flag("-Wmissing-field-initializers" CXX_SUPPORTS_MISSING_FIELD_INITIALIZERS_FLAG)
208     if (CXX_SUPPORTS_MISSING_FIELD_INITIALIZERS_FLAG)
209       if (CMAKE_COMPILER_IS_GNUCXX)
210         append("-Wno-missing-field-initializers" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
211       else()
212         append("-Wmissing-field-initializers" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
213       endif()
214     endif()
216     append_if(LLVM_ENABLE_PEDANTIC "-pedantic -Wno-long-long" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
217     check_cxx_compiler_flag("-Werror -Wcovered-switch-default" CXX_SUPPORTS_COVERED_SWITCH_DEFAULT_FLAG)
218     append_if(CXX_SUPPORTS_COVERED_SWITCH_DEFAULT_FLAG "-Wcovered-switch-default" CMAKE_CXX_FLAGS)
219     check_c_compiler_flag("-Werror -Wcovered-switch-default" C_SUPPORTS_COVERED_SWITCH_DEFAULT_FLAG)
220     append_if(C_SUPPORTS_COVERED_SWITCH_DEFAULT_FLAG "-Wcovered-switch-default" CMAKE_C_FLAGS)
221     append_if(USE_NO_UNINITIALIZED "-Wno-uninitialized" CMAKE_CXX_FLAGS)
222     append_if(USE_NO_MAYBE_UNINITIALIZED "-Wno-maybe-uninitialized" CMAKE_CXX_FLAGS)
223     check_cxx_compiler_flag("-Werror -Wnon-virtual-dtor" CXX_SUPPORTS_NON_VIRTUAL_DTOR_FLAG)
224     append_if(CXX_SUPPORTS_NON_VIRTUAL_DTOR_FLAG "-Wnon-virtual-dtor" CMAKE_CXX_FLAGS)
225   endif (LLVM_ENABLE_WARNINGS)
226   if (LLVM_ENABLE_WERROR)
227     add_llvm_definitions( -Werror )
228   endif (LLVM_ENABLE_WERROR)
229 endif( MSVC )
231 macro(append_common_sanitizer_flags)
232   # Append -fno-omit-frame-pointer and turn on debug info to get better
233   # stack traces.
234   add_flag_if_supported("-fno-omit-frame-pointer")
235   if (NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG" AND
236       NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "RELWITHDEBINFO")
237     add_flag_if_supported("-gline-tables-only")
238   endif()
239 endmacro()
241 # Turn on sanitizers if necessary.
242 if(LLVM_USE_SANITIZER)
243   if (LLVM_ON_UNIX)
244     if (LLVM_USE_SANITIZER STREQUAL "Address")
245       append_common_sanitizer_flags()
246       add_flag_or_print_warning("-fsanitize=address")
247     elseif (LLVM_USE_SANITIZER MATCHES "Memory(WithOrigins)?")
248       append_common_sanitizer_flags()
249       add_flag_or_print_warning("-fsanitize=memory")
250       if(LLVM_USE_SANITIZER STREQUAL "MemoryWithOrigins")
251         add_flag_or_print_warning("-fsanitize-memory-track-origins")
252       endif()
253     else()
254       message(WARNING "Unsupported value of LLVM_USE_SANITIZER: ${LLVM_USE_SANITIZER}")
255     endif()
256   else()
257     message(WARNING "LLVM_USE_SANITIZER is not supported on this platform.")
258   endif()
259 endif()
261 add_llvm_definitions( -D__STDC_CONSTANT_MACROS )
262 add_llvm_definitions( -D__STDC_FORMAT_MACROS )
263 add_llvm_definitions( -D__STDC_LIMIT_MACROS )
265 # clang doesn't print colored diagnostics when invoked from Ninja
266 if (UNIX AND
267     CMAKE_CXX_COMPILER_ID STREQUAL "Clang" AND
268     CMAKE_GENERATOR STREQUAL "Ninja")
269   append("-fcolor-diagnostics" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
270 endif()