Fix assignment of -fPIC to CMAKE_C_FLAGS. Configure llvm-config.in.in
[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_C_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 if( MSVC_IDE AND ( MSVC90 OR MSVC10 ) )
106   # Only Visual Studio 2008 and 2010 officially supports /MP.
107   # Visual Studio 2005 do support it but it's experimental there.
108   set(LLVM_COMPILER_JOBS "0" CACHE STRING
109     "Number of parallel compiler jobs. 0 means use all processors. Default is 0.")
110   if( NOT LLVM_COMPILER_JOBS STREQUAL "1" )
111     if( LLVM_COMPILER_JOBS STREQUAL "0" )
112       add_llvm_definitions( /MP )
113     else()
114       if (MSVC10)
115         message(FATAL_ERROR
116           "Due to a bug in CMake only 0 and 1 is supported for "
117           "LLVM_COMPILER_JOBS when generating for Visual Studio 2010")
118       else()
119         message(STATUS "Number of parallel compiler jobs set to " ${LLVM_COMPILER_JOBS})
120         add_llvm_definitions( /MP${LLVM_COMPILER_JOBS} )
121       endif()
122     endif()
123   else()
124     message(STATUS "Parallel compilation disabled")
125   endif()
126 endif()
127
128 if( MSVC )
129   include(ChooseMSVCCRT)
130
131   # 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
141     -wd4146 # Suppress 'unary minus operator applied to unsigned type, result still unsigned'
142     -wd4180 # Suppress 'qualifier applied to function type has no meaning; ignored'
143     -wd4224 # Suppress 'nonstandard extension used : formal parameter 'identifier' was previously defined as a type'
144     -wd4244 # Suppress ''argument' : conversion from 'type1' to 'type2', possible loss of data'
145     -wd4267 # Suppress ''var' : conversion from 'size_t' to 'type', possible loss of data'
146     -wd4275 # Suppress 'An exported class was derived from a class that was not exported.'
147     -wd4291 # Suppress ''declaration' : no matching operator delete found; memory will not be freed if initialization throws an exception'
148     -wd4345 # Suppress 'behavior change: an object of POD type constructed with an initializer of the form () will be default-initialized'
149     -wd4351 # Suppress 'new behavior: elements of array 'array' will be default initialized'
150     -wd4355 # Suppress ''this' : used in base member initializer list'
151     -wd4503 # Suppress ''identifier' : decorated name length exceeded, name was truncated'
152     -wd4624 # Suppress ''derived class' : destructor could not be generated because a base class destructor is inaccessible'
153     -wd4715 # Suppress ''function' : not all control paths return a value'
154     -wd4800 # Suppress ''type' : forcing value to bool 'true' or 'false' (performance warning)'
155     -wd4065 # Suppress 'switch statement contains 'default' but no 'case' labels'
156
157     -w14062 # Promote "enumerator in switch of enum is not handled" to level 1 warning.
158     )
159
160   # Enable warnings
161   if (LLVM_ENABLE_WARNINGS)
162     add_llvm_definitions( /W4 /Wall )
163     if (LLVM_ENABLE_PEDANTIC)
164       # No MSVC equivalent available
165     endif (LLVM_ENABLE_PEDANTIC)
166   endif (LLVM_ENABLE_WARNINGS)
167   if (LLVM_ENABLE_WERROR)
168     add_llvm_definitions( /WX )
169   endif (LLVM_ENABLE_WERROR)
170 elseif( CMAKE_COMPILER_IS_GNUCXX )
171   if (LLVM_ENABLE_WARNINGS)
172     add_llvm_definitions( -Wall -W -Wno-unused-parameter -Wwrite-strings )
173     if (LLVM_ENABLE_PEDANTIC)
174       add_llvm_definitions( -pedantic -Wno-long-long )
175     endif (LLVM_ENABLE_PEDANTIC)
176   endif (LLVM_ENABLE_WARNINGS)
177   if (LLVM_ENABLE_WERROR)
178     add_llvm_definitions( -Werror )
179   endif (LLVM_ENABLE_WERROR)
180 endif( MSVC )
181
182 add_llvm_definitions( -D__STDC_LIMIT_MACROS )
183 add_llvm_definitions( -D__STDC_CONSTANT_MACROS )
184
185 option(LLVM_INCLUDE_TESTS "Generate build targets for the LLVM unit tests." ON)