blob: 357e0a5e59cefeceffe01b7eca000d1de5a343f2 [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
Alexander Potapenko49496742013-11-07 10:08:19 +000024# Same as above, but adds universal osx library for either OSX or iOS simulator
25# with name "<name>.<os>" targeting multiple architectures.
26# add_compiler_rt_darwin_object_library(<name> <os> ARCH <architectures>
27# SOURCES <source files>
28# CFLAGS <compile flags>
29# DEFS <compile definitions>)
30macro(add_compiler_rt_darwin_object_library name os)
Alexey Samsonov05fa3802013-09-16 15:50:53 +000031 parse_arguments(LIB "ARCH;SOURCES;CFLAGS;DEFS" "" ${ARGN})
Alexander Potapenko49496742013-11-07 10:08:19 +000032 set(libname "${name}.${os}")
Alexey Samsonov51623142013-01-20 14:36:12 +000033 add_library(${libname} OBJECT ${LIB_SOURCES})
Alexander Potapenko49496742013-11-07 10:08:19 +000034 set_target_compile_flags(${libname} ${LIB_CFLAGS} ${DARWIN_${os}_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
Alexander Potapenko49496742013-11-07 10:08:19 +000085# Adds dynamic runtime library on osx/iossim, which supports multiple
86# architectures.
87# add_compiler_rt_darwin_dynamic_runtime(<name> <os>
88# ARCH <architectures>
89# SOURCES <source files>
90# CFLAGS <compile flags>
91# DEFS <compile definitions>
92# LINKFLAGS <link flags>)
93macro(add_compiler_rt_darwin_dynamic_runtime name os)
Alexey Samsonov2aad7c12013-01-21 08:12:20 +000094 parse_arguments(LIB "ARCH;SOURCES;CFLAGS;DEFS;LINKFLAGS" "" ${ARGN})
95 add_library(${name} SHARED ${LIB_SOURCES})
Alexander Potapenko49496742013-11-07 10:08:19 +000096 set_target_compile_flags(${name} ${LIB_CFLAGS} ${DARWIN_${os}_CFLAGS})
97 set_target_link_flags(${name} ${LIB_LINKFLAGS} ${DARWIN_${os}_LINKFLAGS})
Alexey Samsonov2aad7c12013-01-21 08:12:20 +000098 set_property(TARGET ${name} APPEND PROPERTY
99 COMPILE_DEFINITIONS ${LIB_DEFS})
100 set_target_properties(${name} PROPERTIES
101 OSX_ARCHITECTURES "${LIB_ARCH}"
102 LIBRARY_OUTPUT_DIRECTORY ${COMPILER_RT_LIBRARY_OUTPUT_DIR})
103 install(TARGETS ${name}
104 LIBRARY DESTINATION ${COMPILER_RT_LIBRARY_INSTALL_DIR})
105endmacro()
106
Alexey Samsonov392c50d2013-01-18 16:05:21 +0000107# Unittests support.
Alexey Samsonov02dcc632012-12-19 12:33:39 +0000108set(COMPILER_RT_GTEST_PATH ${LLVM_MAIN_SRC_DIR}/utils/unittest/googletest)
Chandler Carruthace53502013-11-15 10:21:15 +0000109set(COMPILER_RT_GTEST_SOURCE ${COMPILER_RT_GTEST_PATH}/src/gtest-all.cc)
Alexey Samsonov02dcc632012-12-19 12:33:39 +0000110set(COMPILER_RT_GTEST_INCLUDE_CFLAGS
111 -DGTEST_NO_LLVM_RAW_OSTREAM=1
112 -I${COMPILER_RT_GTEST_PATH}/include
Chandler Carruthace53502013-11-15 10:21:15 +0000113 -I${COMPILER_RT_GTEST_PATH}
Alexey Samsonov02dcc632012-12-19 12:33:39 +0000114)
115
Alexey Samsonov17cf7c52014-02-19 13:01:03 +0000116# Link objects into a single executable with COMPILER_RT_TEST_COMPILER,
117# using specified link flags. Make executable a part of provided
Alexey Samsonov02dcc632012-12-19 12:33:39 +0000118# test_suite.
119# add_compiler_rt_test(<test_suite> <test_name>
120# OBJECTS <object files>
121# DEPS <deps (e.g. runtime libs)>
122# LINK_FLAGS <link flags>)
123macro(add_compiler_rt_test test_suite test_name)
124 parse_arguments(TEST "OBJECTS;DEPS;LINK_FLAGS" "" ${ARGN})
Alexey Samsonovf6acafc2013-01-28 07:16:22 +0000125 set(output_bin "${CMAKE_CURRENT_BINARY_DIR}/${test_name}")
Alexey Samsonov17cf7c52014-02-19 13:01:03 +0000126 # Use host compiler in a standalone build, and just-built Clang otherwise.
127 if(NOT COMPILER_RT_STANDALONE_BUILD)
128 list(APPEND TEST_DEPS clang)
129 endif()
Alexey Samsonova74424e2013-01-28 09:07:30 +0000130 add_custom_target(${test_name}
Alexey Samsonov17cf7c52014-02-19 13:01:03 +0000131 COMMAND ${COMPILER_RT_TEST_COMPILER} ${TEST_OBJECTS} -o "${output_bin}"
Alexey Samsonov02dcc632012-12-19 12:33:39 +0000132 ${TEST_LINK_FLAGS}
Alexey Samsonov17cf7c52014-02-19 13:01:03 +0000133 DEPENDS ${TEST_DEPS})
Alexey Samsonov02dcc632012-12-19 12:33:39 +0000134 # Make the test suite depend on the binary.
135 add_dependencies(${test_suite} ${test_name})
136endmacro()
Alexey Samsonovc1caace2013-05-21 13:48:27 +0000137
138macro(add_compiler_rt_resource_file target_name file_name)
139 set(src_file "${CMAKE_CURRENT_SOURCE_DIR}/${file_name}")
Alexey Samsonova52e2dc2014-02-18 14:28:53 +0000140 set(dst_file "${COMPILER_RT_OUTPUT_DIR}/${file_name}")
Alexey Samsonovc1caace2013-05-21 13:48:27 +0000141 add_custom_target(${target_name}
142 COMMAND ${CMAKE_COMMAND} -E copy_if_different ${src_file} ${dst_file}
143 DEPENDS ${file_name})
144 # Install in Clang resource directory.
Alexey Samsonova52e2dc2014-02-18 14:28:53 +0000145 install(FILES ${file_name} DESTINATION ${COMPILER_RT_INSTALL_PATH})
Alexey Samsonovc1caace2013-05-21 13:48:27 +0000146endmacro()