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