implement a nice new optimization: CodeGenTypes::UpdateCompletedType
[clang/stm8.git] / CMakeLists.txt
blobaa89823e76f8fd1943063636ba49fb00d9e3bbcc
1 # If we are not building as a part of LLVM, build Clang as an
2 # standalone project, using LLVM as an external library:
3 if( CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR )
4   project(Clang)
5   cmake_minimum_required(VERSION 2.8)
7   set(CLANG_PATH_TO_LLVM_SOURCE "" CACHE PATH
8     "Path to LLVM source code. Not necessary if using an installed LLVM.")
9   set(CLANG_PATH_TO_LLVM_BUILD "" CACHE PATH
10     "Path to the directory where LLVM was built or installed.")
12   if( CLANG_PATH_TO_LLVM_SOURCE )
13     if( NOT EXISTS "${CLANG_PATH_TO_LLVM_SOURCE}/cmake/config-ix.cmake" )
14       message(FATAL_ERROR "Please set CLANG_PATH_TO_LLVM_SOURCE to the root directory of LLVM source code.")
15     else()
16       get_filename_component(LLVM_MAIN_SRC_DIR ${CLANG_PATH_TO_LLVM_SOURCE}
17         ABSOLUTE)
18       list(APPEND CMAKE_MODULE_PATH "${LLVM_MAIN_SRC_DIR}/cmake/modules")
19     endif()
20   endif()
22   if( NOT EXISTS "${CLANG_PATH_TO_LLVM_BUILD}/bin/tblgen${CMAKE_EXECUTABLE_SUFFIX}" )
23     message(FATAL_ERROR "Please set CLANG_PATH_TO_LLVM_BUILD to a directory containing a LLVM build.")
24   endif()
26   list(APPEND CMAKE_MODULE_PATH "${CLANG_PATH_TO_LLVM_BUILD}/share/llvm/cmake")
28   get_filename_component(PATH_TO_LLVM_BUILD ${CLANG_PATH_TO_LLVM_BUILD}
29     ABSOLUTE)
31   include(AddLLVM)
32   include(TableGen)
33   include("${CLANG_PATH_TO_LLVM_BUILD}/share/llvm/cmake/LLVMConfig.cmake")
34   include(HandleLLVMOptions)
36   set(PACKAGE_VERSION "${LLVM_PACKAGE_VERSION}")
38   set(LLVM_MAIN_INCLUDE_DIR "${LLVM_MAIN_SRC_DIR}/include")
39   set(LLVM_BINARY_DIR ${CMAKE_BINARY_DIR})
41   set(CMAKE_INCLUDE_CURRENT_DIR ON)
42   include_directories("${PATH_TO_LLVM_BUILD}/include" "${LLVM_MAIN_INCLUDE_DIR}")
43   link_directories("${PATH_TO_LLVM_BUILD}/lib")
45   set(LLVM_TABLEGEN_EXE "${PATH_TO_LLVM_BUILD}/bin/tblgen")
47   set( CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin )
48   set( CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib )
49   set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib )
51   set( CLANG_BUILT_STANDALONE 1 )
52 endif()
54 set(CLANG_RESOURCE_DIR "" CACHE STRING
55   "Relative directory from the Clang binary to its resource files.")
57 set(C_INCLUDE_DIRS "" CACHE STRING
58   "Colon separated list of directories clang will search for headers.")
60 set(CLANG_VENDOR "" CACHE STRING
61   "Vendor-specific text for showing with version information.")
63 if( CLANG_VENDOR )
64   add_definitions( -DCLANG_VENDOR="${CLANG_VENDOR} " )
65 endif()
67 set(CLANG_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR})
68 set(CLANG_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR})
70 if( CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR AND NOT MSVC_IDE )
71   message(FATAL_ERROR "In-source builds are not allowed. CMake would overwrite "
72 "the makefiles distributed with LLVM. Please create a directory and run cmake "
73 "from there, passing the path to this source directory as the last argument. "
74 "This process created the file `CMakeCache.txt' and the directory "
75 "`CMakeFiles'. Please delete them.")
76 endif()
78 if( NOT CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR )
79   file(GLOB_RECURSE
80     tablegenned_files_on_include_dir
81     "${CLANG_SOURCE_DIR}/include/clang/*.inc")
82   if( tablegenned_files_on_include_dir )
83     message(FATAL_ERROR "Apparently there is a previous in-source build, "
84 "probably as the result of running `configure' and `make' on "
85 "${CLANG_SOURCE_DIR}. This may cause problems. The suspicious files are:\n"
86 "${tablegenned_files_on_include_dir}\nPlease clean the source directory.")
87   endif()
88 endif()
90 # Compute the Clang version from the LLVM version.
91 string(REGEX MATCH "[0-9]+\\.[0-9]+(\\.[0-9]+)?" CLANG_VERSION
92   ${PACKAGE_VERSION})
93 message(STATUS "Clang version: ${CLANG_VERSION}")
95 string(REGEX REPLACE "([0-9]+)\\.[0-9]+(\\.[0-9]+)?" "\\1" CLANG_VERSION_MAJOR
96   ${CLANG_VERSION})
97 string(REGEX REPLACE "[0-9]+\\.([0-9]+)(\\.[0-9]+)?" "\\1" CLANG_VERSION_MINOR
98   ${CLANG_VERSION})
99 if (${CLANG_VERSION} MATCHES "[0-9]+\\.[0-9]+\\.[0-9]+")
100   set(CLANG_HAS_VERSION_PATCHLEVEL 1)
101   string(REGEX REPLACE "[0-9]+\\.[0-9]+\\.([0-9]+)" "\\1" CLANG_VERSION_PATCHLEVEL
102     ${CLANG_VERSION})
103 else()
104   set(CLANG_HAS_VERSION_PATCHLEVEL 0)
105 endif()
107 # Configure the Version.inc file.
108 configure_file(
109   ${CMAKE_CURRENT_SOURCE_DIR}/include/clang/Basic/Version.inc.in
110   ${CMAKE_CURRENT_BINARY_DIR}/include/clang/Basic/Version.inc)
112 # Add appropriate flags for GCC
113 if (LLVM_COMPILER_IS_GCC_COMPATIBLE)
114   set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-common -Woverloaded-virtual -Wcast-qual -fno-strict-aliasing -pedantic -Wno-long-long -Wall -W -Wno-unused-parameter -Wwrite-strings")
115 endif ()
117 if (APPLE)
118   set(CMAKE_MODULE_LINKER_FLAGS "-Wl,-flat_namespace -Wl,-undefined -Wl,suppress")
119 endif ()
121 configure_file(
122   ${CLANG_SOURCE_DIR}/include/clang/Config/config.h.cmake
123   ${CLANG_BINARY_DIR}/include/clang/Config/config.h)
125 include(LLVMParseArguments)
127 function(clang_tablegen)
128   # Syntax:
129   # clang_tablegen output-file [tablegen-arg ...] SOURCE source-file
130   # [[TARGET cmake-target-name] [DEPENDS extra-dependency ...]]
131   #
132   # Generates a custom command for invoking tblgen as
133   #
134   # tblgen source-file -o=output-file tablegen-arg ...
135   #
136   # and, if cmake-target-name is provided, creates a custom target for
137   # executing the custom command depending on output-file. It is
138   # possible to list more files to depend after DEPENDS.
140   parse_arguments( CTG "SOURCE;TARGET;DEPENDS" "" ${ARGN} )
142   if( NOT CTG_SOURCE )
143     message(FATAL_ERROR "SOURCE source-file required by clang_tablegen")
144   endif()
146   set( LLVM_TARGET_DEFINITIONS ${CTG_SOURCE} )
147   tablegen( ${CTG_DEFAULT_ARGS} )
149   list( GET CTG_DEFAULT_ARGS 0 output_file )
150   if( CTG_TARGET )
151     add_custom_target( ${CTG_TARGET} DEPENDS ${output_file} ${CTG_DEPENDS} )
152     set_target_properties( ${CTG_TARGET} PROPERTIES FOLDER "Clang tablegenning")
153   endif()
154 endfunction(clang_tablegen)
156 macro(add_clang_library name)
157   llvm_process_sources(srcs ${ARGN})
158   if(MSVC_IDE OR XCODE)
159     string( REGEX MATCHALL "/[^/]+" split_path ${CMAKE_CURRENT_SOURCE_DIR})
160     list( GET split_path -1 dir)
161     file( GLOB_RECURSE headers
162       ../../../include/clang/StaticAnalyzer${dir}/*.h
163       ../../../include/clang/StaticAnalyzer${dir}/*.td
164       ../../../include/clang/StaticAnalyzer${dir}/*.def
165       ../../include/clang${dir}/*.h
166       ../../include/clang${dir}/*.td
167       ../../include/clang${dir}/*.def)
168     set(srcs ${srcs} ${headers})
169   endif(MSVC_IDE OR XCODE)
170   if (MODULE)
171     set(libkind MODULE)
172   elseif (SHARED_LIBRARY)
173     set(libkind SHARED)
174   else()
175     set(libkind)
176   endif()
177   add_library( ${name} ${libkind} ${srcs} )
178   if( LLVM_COMMON_DEPENDS )
179     add_dependencies( ${name} ${LLVM_COMMON_DEPENDS} )
180   endif( LLVM_COMMON_DEPENDS )
182   target_link_libraries( ${name} ${LLVM_USED_LIBS} )
183   llvm_config( ${name} ${LLVM_LINK_COMPONENTS} )
184   target_link_libraries( ${name} ${LLVM_COMMON_LIBS} )
185   link_system_libs( ${name} )
187   add_dependencies(${name} ClangDiagnosticCommon)
188   if(MSVC)
189     get_target_property(cflag ${name} COMPILE_FLAGS)
190     if(NOT cflag)
191       set(cflag "")
192     endif(NOT cflag)
193     set(cflag "${cflag} /Za")
194     set_target_properties(${name} PROPERTIES COMPILE_FLAGS ${cflag})
195   endif(MSVC)
196   install(TARGETS ${name}
197     LIBRARY DESTINATION lib${LLVM_LIBDIR_SUFFIX}
198     ARCHIVE DESTINATION lib${LLVM_LIBDIR_SUFFIX})
199   set_target_properties(${name} PROPERTIES FOLDER "Clang libraries")
200 endmacro(add_clang_library)
202 macro(add_clang_executable name)
203   add_llvm_executable( ${name} ${ARGN} )
204   set_target_properties(${name} PROPERTIES FOLDER "Clang executables")
205 endmacro(add_clang_executable)
207 include_directories(BEFORE
208   ${CMAKE_CURRENT_BINARY_DIR}/include
209   ${CMAKE_CURRENT_SOURCE_DIR}/include
210   )
212 install(DIRECTORY include/
213   DESTINATION include
214   FILES_MATCHING
215   PATTERN "*.def"
216   PATTERN "*.h"
217   PATTERN ".svn" EXCLUDE
218   )
220 install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/include/
221   DESTINATION include
222   FILES_MATCHING
223   PATTERN "CMakeFiles" EXCLUDE
224   PATTERN "*.inc"
225   )
227 add_definitions( -D_GNU_SOURCE -DHAVE_CLANG_CONFIG_H )
229 # Clang version information
230 set(CLANG_EXECUTABLE_VERSION
231      "${CLANG_VERSION_MAJOR}.${CLANG_VERSION_MINOR}" CACHE STRING
232     "Version number that will be placed into the clang executable, in the form XX.YY")
233 set(LIBCLANG_LIBRARY_VERSION
234      "${CLANG_VERSION_MAJOR}.${CLANG_VERSION_MINOR}" CACHE STRING
235     "Version number that will be placed into the libclang library , in the form XX.YY")
236 mark_as_advanced(CLANG_EXECUTABLE_VERSION LIBCLANG_LIBRARY_VERSION)
239 option(CLANG_BUILD_EXAMPLES "Build CLANG example programs." OFF)
240 if(CLANG_BUILD_EXAMPLES)
241   add_subdirectory(examples)
242 endif ()
244 add_subdirectory(include)
245 add_subdirectory(lib)
246 add_subdirectory(tools)
247 add_subdirectory(runtime)
249 # TODO: docs.
250 add_subdirectory(test)
252 if( LLVM_INCLUDE_TESTS )
253   if( NOT CLANG_BUILT_STANDALONE )
254     add_subdirectory(unittests)
255   endif()
256 endif()
258 # Workaround for MSVS10 to avoid the Dialog Hell
259 # FIXME: This could be removed with future version of CMake.
260 if( CLANG_BUILT_STANDALONE AND MSVC_VERSION EQUAL 1600 )
261   set(CLANG_SLN_FILENAME "${CMAKE_CURRENT_BINARY_DIR}/Clang.sln")
262   if( EXISTS "${CLANG_SLN_FILENAME}" )
263     file(APPEND "${CLANG_SLN_FILENAME}" "\n# This should be regenerated!\n")
264   endif()
265 endif()