blob: e72568426178851c449d517be49b9921aa659b6d [file] [log] [blame]
Oscar Fuentesd538e242011-02-03 20:57:36 +00001include(AddLLVMDefinitions)
2
Oscar Fuentes104e9922011-05-11 13:53:08 +00003if( CMAKE_COMPILER_IS_GNUCXX )
4 set(LLVM_COMPILER_IS_GCC_COMPATIBLE ON)
5elseif( "${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang" )
6 set(LLVM_COMPILER_IS_GCC_COMPATIBLE ON)
7endif()
8
Oscar Fuentes5a858e32011-02-05 19:08:42 +00009# Run-time build mode; It is used for unittests.
10if(MSVC_IDE)
11 # Expect "$(Configuration)", "$(OutDir)", etc.
12 # It is expanded by msbuild or similar.
13 set(RUNTIME_BUILD_MODE "${CMAKE_CFG_INTDIR}")
14elseif(NOT CMAKE_BUILD_TYPE STREQUAL "")
15 # Expect "Release" "Debug", etc.
16 # Or unittests could not run.
17 set(RUNTIME_BUILD_MODE ${CMAKE_BUILD_TYPE})
18else()
19 # It might be "."
20 set(RUNTIME_BUILD_MODE "${CMAKE_CFG_INTDIR}")
21endif()
22
23set(LIT_ARGS_DEFAULT "-sv")
24if (MSVC OR XCODE)
25 set(LIT_ARGS_DEFAULT "${LIT_ARGS_DEFAULT} --no-progress-bar")
26endif()
27set(LLVM_LIT_ARGS "${LIT_ARGS_DEFAULT}"
28 CACHE STRING "Default options for lit")
29
Oscar Fuentesd538e242011-02-03 20:57:36 +000030if( LLVM_ENABLE_ASSERTIONS )
31 # MSVC doesn't like _DEBUG on release builds. See PR 4379.
32 if( NOT MSVC )
33 add_definitions( -D_DEBUG )
34 endif()
35 # On Release builds cmake automatically defines NDEBUG, so we
36 # explicitly undefine it:
37 if( uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" )
38 add_definitions( -UNDEBUG )
Andrew Trickdc9c76a2011-06-16 22:19:20 +000039 set(LLVM_BUILD_MODE "Release")
40 else()
41 set(LLVM_BUILD_MODE "Debug")
Oscar Fuentesd538e242011-02-03 20:57:36 +000042 endif()
Andrew Trickdc9c76a2011-06-16 22:19:20 +000043 set(LLVM_BUILD_MODE "${LLVM_BUILD_MODE}+Asserts")
Oscar Fuentesd538e242011-02-03 20:57:36 +000044else()
Andrew Trickdc9c76a2011-06-16 22:19:20 +000045 set(LLVM_BUILD_MODE "Release")
Oscar Fuentesd538e242011-02-03 20:57:36 +000046 if( NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" )
Oscar Fuentesdd70cd82011-02-06 19:07:06 +000047 if( NOT MSVC_IDE AND NOT XCODE )
48 add_definitions( -DNDEBUG )
49 endif()
Oscar Fuentesd538e242011-02-03 20:57:36 +000050 endif()
51endif()
52
53if(WIN32)
54 if(CYGWIN)
55 set(LLVM_ON_WIN32 0)
56 set(LLVM_ON_UNIX 1)
57 else(CYGWIN)
58 set(LLVM_ON_WIN32 1)
59 set(LLVM_ON_UNIX 0)
NAKAMURA Takumicbf023d2011-02-10 10:29:42 +000060
61 # This is effective only on Win32 hosts to use gnuwin32 tools.
62 set(LLVM_LIT_TOOLS_DIR "" CACHE PATH "Path to GnuWin32 tools")
Oscar Fuentesd538e242011-02-03 20:57:36 +000063 endif(CYGWIN)
64 set(LTDL_SHLIB_EXT ".dll")
65 set(EXEEXT ".exe")
66 # Maximum path length is 160 for non-unicode paths
67 set(MAXPATHLEN 160)
68else(WIN32)
69 if(UNIX)
70 set(LLVM_ON_WIN32 0)
71 set(LLVM_ON_UNIX 1)
72 if(APPLE)
73 set(LTDL_SHLIB_EXT ".dylib")
74 else(APPLE)
75 set(LTDL_SHLIB_EXT ".so")
76 endif(APPLE)
77 set(EXEEXT "")
78 # FIXME: Maximum path length is currently set to 'safe' fixed value
79 set(MAXPATHLEN 2024)
80 else(UNIX)
81 MESSAGE(SEND_ERROR "Unable to determine platform")
82 endif(UNIX)
83endif(WIN32)
84
85if( LLVM_ENABLE_PIC )
86 if( XCODE )
87 # Xcode has -mdynamic-no-pic on by default, which overrides -fPIC. I don't
88 # know how to disable this, so just force ENABLE_PIC off for now.
89 message(WARNING "-fPIC not supported with Xcode.")
90 elseif( WIN32 )
91 # On Windows all code is PIC. MinGW warns if -fPIC is used.
92 else()
93 include(CheckCXXCompilerFlag)
94 check_cxx_compiler_flag("-fPIC" SUPPORTS_FPIC_FLAG)
95 if( SUPPORTS_FPIC_FLAG )
96 message(STATUS "Building with -fPIC")
97 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC")
Oscar Fuentesc2db19e2011-04-01 19:36:06 +000098 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fPIC")
Oscar Fuentesd538e242011-02-03 20:57:36 +000099 else( SUPPORTS_FPIC_FLAG )
100 message(WARNING "-fPIC not supported.")
101 endif()
102 endif()
103endif()
104
105if( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
106 # TODO: support other platforms and toolchains.
107 option(LLVM_BUILD_32_BITS "Build 32 bits executables and libraries." OFF)
108 if( LLVM_BUILD_32_BITS )
109 message(STATUS "Building 32 bits executables and libraries.")
110 add_llvm_definitions( -m32 )
111 list(APPEND CMAKE_EXE_LINKER_FLAGS -m32)
112 list(APPEND CMAKE_SHARED_LINKER_FLAGS -m32)
113 endif( LLVM_BUILD_32_BITS )
114endif( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
115
Oscar Fuentes0dddbc32011-03-02 17:47:37 +0000116if( MSVC_IDE AND ( MSVC90 OR MSVC10 ) )
117 # Only Visual Studio 2008 and 2010 officially supports /MP.
118 # Visual Studio 2005 do support it but it's experimental there.
119 set(LLVM_COMPILER_JOBS "0" CACHE STRING
120 "Number of parallel compiler jobs. 0 means use all processors. Default is 0.")
121 if( NOT LLVM_COMPILER_JOBS STREQUAL "1" )
122 if( LLVM_COMPILER_JOBS STREQUAL "0" )
123 add_llvm_definitions( /MP )
124 else()
125 if (MSVC10)
126 message(FATAL_ERROR
127 "Due to a bug in CMake only 0 and 1 is supported for "
128 "LLVM_COMPILER_JOBS when generating for Visual Studio 2010")
129 else()
130 message(STATUS "Number of parallel compiler jobs set to " ${LLVM_COMPILER_JOBS})
131 add_llvm_definitions( /MP${LLVM_COMPILER_JOBS} )
132 endif()
133 endif()
134 else()
135 message(STATUS "Parallel compilation disabled")
136 endif()
137endif()
138
Oscar Fuentesd538e242011-02-03 20:57:36 +0000139if( MSVC )
140 include(ChooseMSVCCRT)
141
142 # Add definitions that make MSVC much less annoying.
143 add_llvm_definitions(
144 # For some reason MS wants to deprecate a bunch of standard functions...
145 -D_CRT_SECURE_NO_DEPRECATE
146 -D_CRT_SECURE_NO_WARNINGS
147 -D_CRT_NONSTDC_NO_DEPRECATE
148 -D_CRT_NONSTDC_NO_WARNINGS
149 -D_SCL_SECURE_NO_DEPRECATE
150 -D_SCL_SECURE_NO_WARNINGS
151
152 -wd4146 # Suppress 'unary minus operator applied to unsigned type, result still unsigned'
153 -wd4180 # Suppress 'qualifier applied to function type has no meaning; ignored'
154 -wd4224 # Suppress 'nonstandard extension used : formal parameter 'identifier' was previously defined as a type'
155 -wd4244 # Suppress ''argument' : conversion from 'type1' to 'type2', possible loss of data'
156 -wd4267 # Suppress ''var' : conversion from 'size_t' to 'type', possible loss of data'
157 -wd4275 # Suppress 'An exported class was derived from a class that was not exported.'
158 -wd4291 # Suppress ''declaration' : no matching operator delete found; memory will not be freed if initialization throws an exception'
159 -wd4345 # Suppress 'behavior change: an object of POD type constructed with an initializer of the form () will be default-initialized'
160 -wd4351 # Suppress 'new behavior: elements of array 'array' will be default initialized'
161 -wd4355 # Suppress ''this' : used in base member initializer list'
162 -wd4503 # Suppress ''identifier' : decorated name length exceeded, name was truncated'
163 -wd4624 # Suppress ''derived class' : destructor could not be generated because a base class destructor is inaccessible'
164 -wd4715 # Suppress ''function' : not all control paths return a value'
165 -wd4800 # Suppress ''type' : forcing value to bool 'true' or 'false' (performance warning)'
166 -wd4065 # Suppress 'switch statement contains 'default' but no 'case' labels'
Francois Pichet05a5ff12011-04-19 00:03:17 +0000167 -wd4181 # Suppress 'qualifier applied to reference type; ignored'
Oscar Fuentesd538e242011-02-03 20:57:36 +0000168 -w14062 # Promote "enumerator in switch of enum is not handled" to level 1 warning.
169 )
170
171 # Enable warnings
172 if (LLVM_ENABLE_WARNINGS)
173 add_llvm_definitions( /W4 /Wall )
174 if (LLVM_ENABLE_PEDANTIC)
175 # No MSVC equivalent available
176 endif (LLVM_ENABLE_PEDANTIC)
177 endif (LLVM_ENABLE_WARNINGS)
178 if (LLVM_ENABLE_WERROR)
179 add_llvm_definitions( /WX )
180 endif (LLVM_ENABLE_WERROR)
Oscar Fuentes104e9922011-05-11 13:53:08 +0000181elseif( LLVM_COMPILER_IS_GCC_COMPATIBLE )
Oscar Fuentesd538e242011-02-03 20:57:36 +0000182 if (LLVM_ENABLE_WARNINGS)
183 add_llvm_definitions( -Wall -W -Wno-unused-parameter -Wwrite-strings )
184 if (LLVM_ENABLE_PEDANTIC)
185 add_llvm_definitions( -pedantic -Wno-long-long )
186 endif (LLVM_ENABLE_PEDANTIC)
187 endif (LLVM_ENABLE_WARNINGS)
188 if (LLVM_ENABLE_WERROR)
189 add_llvm_definitions( -Werror )
190 endif (LLVM_ENABLE_WERROR)
191endif( MSVC )
192
193add_llvm_definitions( -D__STDC_LIMIT_MACROS )
194add_llvm_definitions( -D__STDC_CONSTANT_MACROS )
195
NAKAMURA Takumiafcf6ac2011-02-21 03:21:06 +0000196option(LLVM_INCLUDE_TESTS "Generate build targets for the LLVM unit tests." ON)