blob: e946de21a1dcf549ce661881a9b2c2d1e6d803be [file] [log] [blame]
Bob Wilsonda79da22011-09-30 20:24:28 +00001##===- clang/runtime/compiler-rt/Makefile ------------------*- Makefile -*-===##
Owen Anderson562627d2011-04-15 17:35:58 +00002#
Daniel Dunbar253521b2010-01-19 21:12:58 +00003# The LLVM Compiler Infrastructure
4#
5# This file is distributed under the University of Illinois Open Source
6# License. See LICENSE.TXT for details.
Owen Anderson562627d2011-04-15 17:35:58 +00007#
8##===----------------------------------------------------------------------===##
9#
10# This file defines support for building the Clang runtime libraries (which are
11# implemented by compiler-rt) and placing them in the proper locations in the
12# Clang resources directory (i.e., where the driver expects them).
13#
Daniel Dunbar253521b2010-01-19 21:12:58 +000014##===----------------------------------------------------------------------===##
15
Nick Lewycky484fc572011-04-15 18:33:24 +000016CLANG_LEVEL := ../..
Daniel Dunbarafed0992010-06-08 20:34:18 +000017include $(CLANG_LEVEL)/Makefile
Daniel Dunbar253521b2010-01-19 21:12:58 +000018
Owen Anderson562627d2011-04-15 17:35:58 +000019CLANG_VERSION := $(word 3,$(shell grep "CLANG_VERSION " \
20 $(PROJ_OBJ_DIR)/$(CLANG_LEVEL)/include/clang/Basic/Version.inc))
21
22ResourceDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib/clang/$(CLANG_VERSION)
23PROJ_resources := $(DESTDIR)$(PROJ_prefix)/lib/clang/$(CLANG_VERSION)
24
25ResourceLibDir := $(ResourceDir)/lib
26PROJ_resources_lib := $(PROJ_resources)/lib
27
28# Expect compiler-rt to be in llvm/projects/compiler-rt
29COMPILERRT_SRC_ROOT := $(LLVM_SRC_ROOT)/projects/compiler-rt
30
Daniel Dunbare33218a2011-11-16 23:22:07 +000031# We don't currently support building runtime libraries when we are
32# cross-compiling. The issue is that we really want to be set up so that the
33# available compiler targets are independent of the current build.
34#
35# Since we have to build the runtime libraries for the target, it requires we
36# have a cross compiler from the build machine to the target. Although in the
37# case where for the current build (host == target), we do have such a cross
38# compiler, but not defined in a way that is easy for us to reuse. Regardless,
39# that also wouldn't help for other possible compiler configurations.
40#
41# Thus, the simple set up we currently use is to assume that we will be using
42# the just built Clang to compile the compiler-rt libraries. As we grow better
43# cross compilation support inside Clang and tool support in LLVM, this makes it
44# easier for us to achieve the goal of having the compiler targets be easily
45# selected at configure time. However, this design does currently preclude the
46# building of compiler-rt libraries when the Clang itself is being cross
47# compiled.
48#
49# There are three possible solutions:
50# 1. Require building a build-target version of Clang when cross compiling. This
51# is simplest, but als greatly increases the build time of cross builds.
52#
53# 2. Require cross builds have a build-target version of Clang available for
54# use. This is a reasonable compromise on #1, as the compiler-rt libraries
55# are simple enough that there is not a strong desire to ensure they are
56# built with the exact version of Clang being used. Similarly, as Clang
57# becomes a better cross compiler it is also increasingly more likely that
58# the cross compiler being used will already be a version of Clang.
59#
60# 3. Come up with an alternate mechanism to define all the toolchain
61# information that compiler-rt would need to build libraries for all the
62# requested targets. This might be a simple short term solution, but is
63# likely to be unwieldly and irritating to maintain in the long term.
64ifneq ($(LLVM_CROSS_COMPILING),1)
Owen Anderson562627d2011-04-15 17:35:58 +000065ifneq ($(CLANG_NO_RUNTIME),1)
66ifeq ($(shell test -d $(COMPILERRT_SRC_ROOT) && echo OK),OK)
67
68# Select the compiler-rt configuration to use, and install directory.
69#
70# FIXME: Eventually, we want some kind of configure support for this. We want to
71# build/install runtime libraries for as many targets as clang was configured to
72# support.
73RuntimeDirs :=
74ifeq ($(OS),Darwin)
75RuntimeDirs += darwin
Daniel Dunbarf4714872011-11-17 00:36:57 +000076RuntimeLibrary.darwin.Configs := \
Daniel Dunbar7a0c0642012-10-15 22:23:53 +000077 eprintf.a 10.4.a osx.a ios.a cc_kext.a cc_kext_ios5.a \
Daniel Dunbar12f5fe52012-09-14 21:30:17 +000078 asan_osx.a asan_osx_dynamic.dylib \
Alexey Samsonov75fcb192012-11-16 12:53:14 +000079 profile_osx.a profile_ios.a \
80 ubsan_osx.a
Owen Anderson562627d2011-04-15 17:35:58 +000081endif
Daniel Dunbarff986522011-12-02 02:31:32 +000082
83# On Linux, include a library which has all the runtime functions.
84ifeq ($(OS),Linux)
85RuntimeDirs += linux
86RuntimeLibrary.linux.Configs :=
87
Alexey Samsonovf288d222012-10-09 16:03:52 +000088# TryCompile compiler source flags
89# Returns exit code of running a compiler invocation.
90TryCompile = \
91 $(shell \
92 cflags=""; \
93 for flag in $(3); do \
94 cflags="$$cflags $$flag"; \
95 done; \
96 $(1) $$cflags $(2) -o /dev/null > /dev/null 2> /dev/null ; \
97 echo $$?)
98
Daniel Dunbarff986522011-12-02 02:31:32 +000099# We currently only try to generate runtime libraries on x86.
100ifeq ($(ARCH),x86)
Daniel Dunbar7df67e62011-12-07 19:35:10 +0000101RuntimeLibrary.linux.Configs += \
Richard Smith61a574f2013-03-20 23:49:07 +0000102 full-i386.a profile-i386.a san-i386.a asan-i386.a ubsan-i386.a \
103 ubsan_cxx-i386.a
Daniel Dunbarff986522011-12-02 02:31:32 +0000104endif
Alexey Samsonovf288d222012-10-09 16:03:52 +0000105
Daniel Dunbarff986522011-12-02 02:31:32 +0000106ifeq ($(ARCH),x86_64)
Daniel Dunbar7df67e62011-12-07 19:35:10 +0000107RuntimeLibrary.linux.Configs += \
Richard Smith61a574f2013-03-20 23:49:07 +0000108 full-x86_64.a profile-x86_64.a san-x86_64.a asan-x86_64.a \
109 tsan-x86_64.a msan-x86_64.a ubsan-x86_64.a ubsan_cxx-x86_64.a
Alexey Samsonove0d80f12012-11-15 12:40:37 +0000110# We need to build 32-bit ASan/UBsan libraries on 64-bit platform, and add them
111# to the list of runtime libraries to make
112# "clang -fsanitize=(address|undefined) -m32" work.
Alexey Samsonovf288d222012-10-09 16:03:52 +0000113# We check that Clang can produce working 32-bit binaries by compiling a simple
114# executable.
115test_source = $(LLVM_SRC_ROOT)/tools/clang/runtime/compiler-rt/clang_linux_test_input.c
116ifeq ($(call TryCompile,$(ToolDir)/clang,$(test_source),-m32),0)
Richard Smith61a574f2013-03-20 23:49:07 +0000117RuntimeLibrary.linux.Configs += san-i386.a asan-i386.a ubsan-i386.a \
118 ubsan_cxx-i386.a
Daniel Dunbarff986522011-12-02 02:31:32 +0000119endif
Evgeniy Stepanov19baf062012-10-24 14:05:29 +0000120ifneq ($(LLVM_ANDROID_TOOLCHAIN_DIR),)
121RuntimeLibrary.linux.Configs += asan-arm-android.so
122endif
Alexey Samsonovf288d222012-10-09 16:03:52 +0000123endif
Daniel Dunbarff986522011-12-02 02:31:32 +0000124
Owen Anderson562627d2011-04-15 17:35:58 +0000125endif
126
Daniel Dunbare33218a2011-11-16 23:22:07 +0000127####
128# The build rules below are designed to be generic and should only need to be
129# modified based on changes in the compiler-rt layout or build system.
130####
131
Owen Anderson562627d2011-04-15 17:35:58 +0000132# Rule to build the compiler-rt libraries we need.
133#
134# We build all the libraries in a single shot to avoid recursive make as much as
135# possible.
136BuildRuntimeLibraries:
137 $(Verb) $(MAKE) -C $(COMPILERRT_SRC_ROOT) \
138 ProjSrcRoot=$(COMPILERRT_SRC_ROOT) \
139 ProjObjRoot=$(PROJ_OBJ_DIR) \
Daniel Dunbar35180582012-03-05 20:19:03 +0000140 CC="$(ToolDir)/clang" \
Evgeniy Stepanov19baf062012-10-24 14:05:29 +0000141 LLVM_ANDROID_TOOLCHAIN_DIR="$(LLVM_ANDROID_TOOLCHAIN_DIR)" \
Owen Anderson562627d2011-04-15 17:35:58 +0000142 $(RuntimeDirs:%=clang_%)
143.PHONY: BuildRuntimeLibraries
144CleanRuntimeLibraries:
145 $(Verb) $(MAKE) -C $(COMPILERRT_SRC_ROOT) \
146 ProjSrcRoot=$(COMPILERRT_SRC_ROOT) \
147 ProjObjRoot=$(PROJ_OBJ_DIR) \
148 clean
149.PHONY: CleanRuntimeLibraries
150
151$(PROJ_resources_lib):
152 $(Verb) $(MKDIR) $@
153
154# Expand rules for copying/installing each individual library. We can't use
155# implicit rules here because we need to match against multiple things.
156define RuntimeLibraryTemplate
157$(PROJ_OBJ_DIR)/clang_$1/%/libcompiler_rt.a: BuildRuntimeLibraries
158 @true
Daniel Dunbar12f5fe52012-09-14 21:30:17 +0000159$(PROJ_OBJ_DIR)/clang_$1/%/libcompiler_rt.so: BuildRuntimeLibraries
160 @true
161$(PROJ_OBJ_DIR)/clang_$1/%/libcompiler_rt.dylib: BuildRuntimeLibraries
162 @true
Owen Anderson562627d2011-04-15 17:35:58 +0000163.PRECIOUS: $(PROJ_OBJ_DIR)/clang_$1/%/libcompiler_rt.a
164
165# Rule to copy the libraries to their resource directory location.
166$(ResourceLibDir)/$1/libclang_rt.%.a: \
167 $(PROJ_OBJ_DIR)/clang_$1/%/libcompiler_rt.a \
168 $(ResourceLibDir)/$1/.dir
169 $(Echo) Copying runtime library $1/$$* to build dir
170 $(Verb) cp $(PROJ_OBJ_DIR)/clang_$1/$$*/libcompiler_rt.a $$@
Daniel Dunbar12f5fe52012-09-14 21:30:17 +0000171$(ResourceLibDir)/$1/libclang_rt.%.so: \
172 $(PROJ_OBJ_DIR)/clang_$1/%/libcompiler_rt.so \
173 $(ResourceLibDir)/$1/.dir
174 $(Echo) Copying runtime library $1/$$* to build dir
175 $(Verb) cp $(PROJ_OBJ_DIR)/clang_$1/$$*/libcompiler_rt.so $$@
176$(ResourceLibDir)/$1/libclang_rt.%.dylib: \
177 $(PROJ_OBJ_DIR)/clang_$1/%/libcompiler_rt.dylib \
178 $(ResourceLibDir)/$1/.dir
179 $(Echo) Copying runtime library $1/$$* to build dir
180 $(Verb) cp $(PROJ_OBJ_DIR)/clang_$1/$$*/libcompiler_rt.dylib $$@
Alexander Potapenkob6262802012-09-17 14:18:41 +0000181 $(Echo) Fixing LC_ID_DYLIB of $$@
182 $(Verb) install_name_tool $$@ -id $$@
Owen Anderson562627d2011-04-15 17:35:58 +0000183RuntimeLibrary.$1: \
Daniel Dunbar12f5fe52012-09-14 21:30:17 +0000184 $(RuntimeLibrary.$1.Configs:%=$(ResourceLibDir)/$1/libclang_rt.%)
Owen Anderson562627d2011-04-15 17:35:58 +0000185.PHONY: RuntimeLibrary.$1
186
187$(PROJ_resources_lib)/$1: $(PROJ_resources_lib)
188 $(Verb) $(MKDIR) $$@
189
190$(PROJ_resources_lib)/$1/libclang_rt.%.a: \
191 $(ResourceLibDir)/$1/libclang_rt.%.a | $(PROJ_resources_lib)/$1
192 $(Echo) Installing compiler runtime library: $1/$$*
193 $(Verb) $(DataInstall) $$< $(PROJ_resources_lib)/$1
Daniel Dunbar12f5fe52012-09-14 21:30:17 +0000194$(PROJ_resources_lib)/$1/libclang_rt.%.so: \
195 $(ResourceLibDir)/$1/libclang_rt.%.so | $(PROJ_resources_lib)/$1
196 $(Echo) Installing compiler runtime library: $1/$$*
197 $(Verb) $(DataInstall) $$< $(PROJ_resources_lib)/$1
198$(PROJ_resources_lib)/$1/libclang_rt.%.dylib: \
199 $(ResourceLibDir)/$1/libclang_rt.%.dylib | $(PROJ_resources_lib)/$1
200 $(Echo) Installing compiler runtime library: $1/$$*
201 $(Verb) $(DataInstall) $$< $(PROJ_resources_lib)/$1
Owen Anderson562627d2011-04-15 17:35:58 +0000202
203# Rule to install runtime libraries.
204RuntimeLibraryInstall.$1: \
Daniel Dunbar12f5fe52012-09-14 21:30:17 +0000205 $(RuntimeLibrary.$1.Configs:%=$(PROJ_resources_lib)/$1/libclang_rt.%)
Owen Anderson562627d2011-04-15 17:35:58 +0000206.PHONY: RuntimeLibraryInstall.$1
207endef
208$(foreach lib,$(RuntimeDirs), $(eval $(call RuntimeLibraryTemplate,$(lib))))
209
210# Hook into the standard Makefile rules.
211all-local:: $(RuntimeDirs:%=RuntimeLibrary.%)
212install-local:: $(RuntimeDirs:%=RuntimeLibraryInstall.%)
213clean-local:: CleanRuntimeLibraries
214
215endif
216endif
Daniel Dunbare33218a2011-11-16 23:22:07 +0000217endif