blob: 021920c9eb0ae5f36863c129589c55b70a2508ed [file] [log] [blame]
Alexey Samsonov02dcc632012-12-19 12:33:39 +00001include(AddLLVM)
2include(LLVMParseArguments)
Alexey Samsonov392c50d2013-01-18 16:05:21 +00003include(CompilerRTUtils)
Alexey Samsonov02dcc632012-12-19 12:33:39 +00004
Alexey Samsonov392c50d2013-01-18 16:05:21 +00005# Tries to add "object library" target for a given architecture
6# with name "<name>.<arch>" if architecture can be targeted.
7# add_compiler_rt_object_library(<name> <arch>
8# SOURCES <source files>
Alexey Samsonov05fa3802013-09-16 15:50:53 +00009# CFLAGS <compile flags>
10# DEFS <compile definitions>)
Alexey Samsonov392c50d2013-01-18 16:05:21 +000011macro(add_compiler_rt_object_library name arch)
12 if(CAN_TARGET_${arch})
Alexey Samsonov05fa3802013-09-16 15:50:53 +000013 parse_arguments(LIB "SOURCES;CFLAGS;DEFS" "" ${ARGN})
Alexey Samsonov392c50d2013-01-18 16:05:21 +000014 add_library(${name}.${arch} OBJECT ${LIB_SOURCES})
15 set_target_compile_flags(${name}.${arch}
16 ${TARGET_${arch}_CFLAGS} ${LIB_CFLAGS})
Alexey Samsonov05fa3802013-09-16 15:50:53 +000017 set_property(TARGET ${name}.${arch} APPEND PROPERTY
18 COMPILE_DEFINITIONS ${LIB_DEFS})
Alexey Samsonov392c50d2013-01-18 16:05:21 +000019 else()
20 message(FATAL_ERROR "Archtecture ${arch} can't be targeted")
21 endif()
22endmacro()
23
Alexey Samsonov51623142013-01-20 14:36:12 +000024# Same as above, but adds universal osx library with name "<name>.osx"
25# targeting multiple architectures.
26# add_compiler_rt_osx_object_library(<name> ARCH <architectures>
27# SOURCES <source files>
28# CFLAGS <compile flags>)
Alexey Samsonov05fa3802013-09-16 15:50:53 +000029# DEFS <compile definitions>)
Alexey Samsonov51623142013-01-20 14:36:12 +000030macro(add_compiler_rt_osx_object_library name)
Alexey Samsonov05fa3802013-09-16 15:50:53 +000031 parse_arguments(LIB "ARCH;SOURCES;CFLAGS;DEFS" "" ${ARGN})
Alexey Samsonov51623142013-01-20 14:36:12 +000032 set(libname "${name}.osx")
33 add_library(${libname} OBJECT ${LIB_SOURCES})
34 set_target_compile_flags(${libname} ${LIB_CFLAGS})
Alexey Samsonov2aad7c12013-01-21 08:12:20 +000035 set_target_properties(${libname} PROPERTIES OSX_ARCHITECTURES "${LIB_ARCH}")
Alexey Samsonov05fa3802013-09-16 15:50:53 +000036 set_property(TARGET ${libname} APPEND PROPERTY
37 COMPILE_DEFINITIONS ${LIB_DEFS})
Alexey Samsonov51623142013-01-20 14:36:12 +000038endmacro()
39
Alexey Samsonove16af952013-01-20 13:58:10 +000040# Adds static runtime for a given architecture and puts it in the proper
41# directory in the build and install trees.
42# add_compiler_rt_static_runtime(<name> <arch>
43# SOURCES <source files>
44# CFLAGS <compile flags>
Alexey Samsonove5fa2432013-08-27 15:08:02 +000045# DEFS <compile definitions>)
Alexey Samsonove16af952013-01-20 13:58:10 +000046macro(add_compiler_rt_static_runtime name arch)
47 if(CAN_TARGET_${arch})
Alexey Samsonove5fa2432013-08-27 15:08:02 +000048 parse_arguments(LIB "SOURCES;CFLAGS;DEFS" "" ${ARGN})
Alexey Samsonove16af952013-01-20 13:58:10 +000049 add_library(${name} STATIC ${LIB_SOURCES})
50 # Setup compile flags and definitions.
51 set_target_compile_flags(${name}
52 ${TARGET_${arch}_CFLAGS} ${LIB_CFLAGS})
53 set_property(TARGET ${name} APPEND PROPERTY
54 COMPILE_DEFINITIONS ${LIB_DEFS})
55 # Setup correct output directory in the build tree.
56 set_target_properties(${name} PROPERTIES
Alexey Samsonov2aad7c12013-01-21 08:12:20 +000057 ARCHIVE_OUTPUT_DIRECTORY ${COMPILER_RT_LIBRARY_OUTPUT_DIR})
Alexey Samsonove16af952013-01-20 13:58:10 +000058 # Add installation command.
59 install(TARGETS ${name}
60 ARCHIVE DESTINATION ${COMPILER_RT_LIBRARY_INSTALL_DIR})
61 else()
62 message(FATAL_ERROR "Archtecture ${arch} can't be targeted")
63 endif()
64endmacro()
65
Alexey Samsonov2aad7c12013-01-21 08:12:20 +000066# Same as add_compiler_rt_static_runtime, but creates a universal library
67# for several architectures.
68# add_compiler_rt_osx_static_runtime(<name> ARCH <architectures>
69# SOURCES <source files>
70# CFLAGS <compile flags>
71# DEFS <compile definitions>)
72macro(add_compiler_rt_osx_static_runtime name)
73 parse_arguments(LIB "ARCH;SOURCES;CFLAGS;DEFS" "" ${ARGN})
74 add_library(${name} STATIC ${LIB_SOURCES})
75 set_target_compile_flags(${name} ${LIB_CFLAGS})
76 set_property(TARGET ${name} APPEND PROPERTY
77 COMPILE_DEFINITIONS ${LIB_DEFS})
78 set_target_properties(${name} PROPERTIES
79 OSX_ARCHITECTURES "${LIB_ARCH}"
80 ARCHIVE_OUTPUT_DIRECTORY ${COMPILER_RT_LIBRARY_OUTPUT_DIR})
81 install(TARGETS ${name}
82 ARCHIVE DESTINATION ${COMPILER_RT_LIBRARY_INSTALL_DIR})
83endmacro()
84
85# Adds dynamic runtime library on osx, which supports multiple architectures.
86# add_compiler_rt_osx_dynamic_runtime(<name> ARCH <architectures>
87# SOURCES <source files>
88# CFLAGS <compile flags>
89# DEFS <compile definitions>
90# LINKFLAGS <link flags>)
91macro(add_compiler_rt_osx_dynamic_runtime name)
92 parse_arguments(LIB "ARCH;SOURCES;CFLAGS;DEFS;LINKFLAGS" "" ${ARGN})
93 add_library(${name} SHARED ${LIB_SOURCES})
94 set_target_compile_flags(${name} ${LIB_CFLAGS})
95 set_target_link_flags(${name} ${LIB_LINKFLAGS})
96 set_property(TARGET ${name} APPEND PROPERTY
97 COMPILE_DEFINITIONS ${LIB_DEFS})
98 set_target_properties(${name} PROPERTIES
99 OSX_ARCHITECTURES "${LIB_ARCH}"
100 LIBRARY_OUTPUT_DIRECTORY ${COMPILER_RT_LIBRARY_OUTPUT_DIR})
101 install(TARGETS ${name}
102 LIBRARY DESTINATION ${COMPILER_RT_LIBRARY_INSTALL_DIR})
103endmacro()
104
Alexey Samsonov392c50d2013-01-18 16:05:21 +0000105# Unittests support.
Alexey Samsonov02dcc632012-12-19 12:33:39 +0000106set(COMPILER_RT_GTEST_PATH ${LLVM_MAIN_SRC_DIR}/utils/unittest/googletest)
107set(COMPILER_RT_GTEST_SOURCE ${COMPILER_RT_GTEST_PATH}/gtest-all.cc)
108set(COMPILER_RT_GTEST_INCLUDE_CFLAGS
109 -DGTEST_NO_LLVM_RAW_OSTREAM=1
110 -I${COMPILER_RT_GTEST_PATH}/include
111)
112
113# Use Clang to link objects into a single executable with just-built
114# Clang, using specific link flags. Make executable a part of provided
115# test_suite.
116# add_compiler_rt_test(<test_suite> <test_name>
117# OBJECTS <object files>
118# DEPS <deps (e.g. runtime libs)>
119# LINK_FLAGS <link flags>)
120macro(add_compiler_rt_test test_suite test_name)
121 parse_arguments(TEST "OBJECTS;DEPS;LINK_FLAGS" "" ${ARGN})
Alexey Samsonovf6acafc2013-01-28 07:16:22 +0000122 set(output_bin "${CMAKE_CURRENT_BINARY_DIR}/${test_name}")
Alexey Samsonova74424e2013-01-28 09:07:30 +0000123 add_custom_target(${test_name}
Alexey Samsonov02dcc632012-12-19 12:33:39 +0000124 COMMAND clang ${TEST_OBJECTS} -o "${output_bin}"
125 ${TEST_LINK_FLAGS}
Alexey Samsonov32b89912012-12-21 08:56:14 +0000126 DEPENDS clang ${TEST_DEPS})
Alexey Samsonov02dcc632012-12-19 12:33:39 +0000127 # Make the test suite depend on the binary.
128 add_dependencies(${test_suite} ${test_name})
129endmacro()
Alexey Samsonovc1caace2013-05-21 13:48:27 +0000130
131macro(add_compiler_rt_resource_file target_name file_name)
132 set(src_file "${CMAKE_CURRENT_SOURCE_DIR}/${file_name}")
133 set(dst_file "${CLANG_RESOURCE_DIR}/${file_name}")
134 add_custom_target(${target_name}
135 COMMAND ${CMAKE_COMMAND} -E copy_if_different ${src_file} ${dst_file}
136 DEPENDS ${file_name})
137 # Install in Clang resource directory.
138 install(FILES ${file_name} DESTINATION ${LIBCLANG_INSTALL_PATH})
139endmacro()