blob: 8ac79709c041379d05a657004327fc048937d889 [file] [log] [blame]
Oscar Fuentesd538e242011-02-03 20:57:36 +00001include(AddLLVMDefinitions)
2
Oscar Fuentes5a858e32011-02-05 19:08:42 +00003# Run-time build mode; It is used for unittests.
4if(MSVC_IDE)
5 # Expect "$(Configuration)", "$(OutDir)", etc.
6 # It is expanded by msbuild or similar.
7 set(RUNTIME_BUILD_MODE "${CMAKE_CFG_INTDIR}")
8elseif(NOT CMAKE_BUILD_TYPE STREQUAL "")
9 # Expect "Release" "Debug", etc.
10 # Or unittests could not run.
11 set(RUNTIME_BUILD_MODE ${CMAKE_BUILD_TYPE})
12else()
13 # It might be "."
14 set(RUNTIME_BUILD_MODE "${CMAKE_CFG_INTDIR}")
15endif()
16
17set(LIT_ARGS_DEFAULT "-sv")
18if (MSVC OR XCODE)
19 set(LIT_ARGS_DEFAULT "${LIT_ARGS_DEFAULT} --no-progress-bar")
20endif()
21set(LLVM_LIT_ARGS "${LIT_ARGS_DEFAULT}"
22 CACHE STRING "Default options for lit")
23
Oscar Fuentesd538e242011-02-03 20:57:36 +000024if( LLVM_ENABLE_ASSERTIONS )
25 # MSVC doesn't like _DEBUG on release builds. See PR 4379.
26 if( NOT MSVC )
27 add_definitions( -D_DEBUG )
28 endif()
29 # On Release builds cmake automatically defines NDEBUG, so we
30 # explicitly undefine it:
31 if( uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" )
32 add_definitions( -UNDEBUG )
33 endif()
34else()
35 if( NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" )
Oscar Fuentesdd70cd82011-02-06 19:07:06 +000036 if( NOT MSVC_IDE AND NOT XCODE )
37 add_definitions( -DNDEBUG )
38 endif()
Oscar Fuentesd538e242011-02-03 20:57:36 +000039 endif()
40endif()
41
42if(WIN32)
43 if(CYGWIN)
44 set(LLVM_ON_WIN32 0)
45 set(LLVM_ON_UNIX 1)
46 else(CYGWIN)
47 set(LLVM_ON_WIN32 1)
48 set(LLVM_ON_UNIX 0)
49 endif(CYGWIN)
50 set(LTDL_SHLIB_EXT ".dll")
51 set(EXEEXT ".exe")
52 # Maximum path length is 160 for non-unicode paths
53 set(MAXPATHLEN 160)
54else(WIN32)
55 if(UNIX)
56 set(LLVM_ON_WIN32 0)
57 set(LLVM_ON_UNIX 1)
58 if(APPLE)
59 set(LTDL_SHLIB_EXT ".dylib")
60 else(APPLE)
61 set(LTDL_SHLIB_EXT ".so")
62 endif(APPLE)
63 set(EXEEXT "")
64 # FIXME: Maximum path length is currently set to 'safe' fixed value
65 set(MAXPATHLEN 2024)
66 else(UNIX)
67 MESSAGE(SEND_ERROR "Unable to determine platform")
68 endif(UNIX)
69endif(WIN32)
70
71if( LLVM_ENABLE_PIC )
72 if( XCODE )
73 # Xcode has -mdynamic-no-pic on by default, which overrides -fPIC. I don't
74 # know how to disable this, so just force ENABLE_PIC off for now.
75 message(WARNING "-fPIC not supported with Xcode.")
76 elseif( WIN32 )
77 # On Windows all code is PIC. MinGW warns if -fPIC is used.
78 else()
79 include(CheckCXXCompilerFlag)
80 check_cxx_compiler_flag("-fPIC" SUPPORTS_FPIC_FLAG)
81 if( SUPPORTS_FPIC_FLAG )
82 message(STATUS "Building with -fPIC")
83 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC")
84 set(CMAKE_C_FLAGS "${CMAKE_CXX_FLAGS} -fPIC")
85 else( SUPPORTS_FPIC_FLAG )
86 message(WARNING "-fPIC not supported.")
87 endif()
88 endif()
89endif()
90
91if( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
92 # TODO: support other platforms and toolchains.
93 option(LLVM_BUILD_32_BITS "Build 32 bits executables and libraries." OFF)
94 if( LLVM_BUILD_32_BITS )
95 message(STATUS "Building 32 bits executables and libraries.")
96 add_llvm_definitions( -m32 )
97 list(APPEND CMAKE_EXE_LINKER_FLAGS -m32)
98 list(APPEND CMAKE_SHARED_LINKER_FLAGS -m32)
99 endif( LLVM_BUILD_32_BITS )
100endif( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
101
102if( MSVC )
103 include(ChooseMSVCCRT)
104
105 # Add definitions that make MSVC much less annoying.
106 add_llvm_definitions(
107 # For some reason MS wants to deprecate a bunch of standard functions...
108 -D_CRT_SECURE_NO_DEPRECATE
109 -D_CRT_SECURE_NO_WARNINGS
110 -D_CRT_NONSTDC_NO_DEPRECATE
111 -D_CRT_NONSTDC_NO_WARNINGS
112 -D_SCL_SECURE_NO_DEPRECATE
113 -D_SCL_SECURE_NO_WARNINGS
114
115 -wd4146 # Suppress 'unary minus operator applied to unsigned type, result still unsigned'
116 -wd4180 # Suppress 'qualifier applied to function type has no meaning; ignored'
117 -wd4224 # Suppress 'nonstandard extension used : formal parameter 'identifier' was previously defined as a type'
118 -wd4244 # Suppress ''argument' : conversion from 'type1' to 'type2', possible loss of data'
119 -wd4267 # Suppress ''var' : conversion from 'size_t' to 'type', possible loss of data'
120 -wd4275 # Suppress 'An exported class was derived from a class that was not exported.'
121 -wd4291 # Suppress ''declaration' : no matching operator delete found; memory will not be freed if initialization throws an exception'
122 -wd4345 # Suppress 'behavior change: an object of POD type constructed with an initializer of the form () will be default-initialized'
123 -wd4351 # Suppress 'new behavior: elements of array 'array' will be default initialized'
124 -wd4355 # Suppress ''this' : used in base member initializer list'
125 -wd4503 # Suppress ''identifier' : decorated name length exceeded, name was truncated'
126 -wd4624 # Suppress ''derived class' : destructor could not be generated because a base class destructor is inaccessible'
127 -wd4715 # Suppress ''function' : not all control paths return a value'
128 -wd4800 # Suppress ''type' : forcing value to bool 'true' or 'false' (performance warning)'
129 -wd4065 # Suppress 'switch statement contains 'default' but no 'case' labels'
130
131 -w14062 # Promote "enumerator in switch of enum is not handled" to level 1 warning.
132 )
133
134 # Enable warnings
135 if (LLVM_ENABLE_WARNINGS)
136 add_llvm_definitions( /W4 /Wall )
137 if (LLVM_ENABLE_PEDANTIC)
138 # No MSVC equivalent available
139 endif (LLVM_ENABLE_PEDANTIC)
140 endif (LLVM_ENABLE_WARNINGS)
141 if (LLVM_ENABLE_WERROR)
142 add_llvm_definitions( /WX )
143 endif (LLVM_ENABLE_WERROR)
144elseif( CMAKE_COMPILER_IS_GNUCXX )
145 if (LLVM_ENABLE_WARNINGS)
146 add_llvm_definitions( -Wall -W -Wno-unused-parameter -Wwrite-strings )
147 if (LLVM_ENABLE_PEDANTIC)
148 add_llvm_definitions( -pedantic -Wno-long-long )
149 endif (LLVM_ENABLE_PEDANTIC)
150 endif (LLVM_ENABLE_WARNINGS)
151 if (LLVM_ENABLE_WERROR)
152 add_llvm_definitions( -Werror )
153 endif (LLVM_ENABLE_WERROR)
154endif( MSVC )
155
156add_llvm_definitions( -D__STDC_LIMIT_MACROS )
157add_llvm_definitions( -D__STDC_CONSTANT_MACROS )
158