blob: 997643857d98e95558469e48a0dde45ef460290f [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
Alexander Potapenko0e7a1cf2013-10-28 08:21:35 +000026ResourceIncludeDir := $(ResourceDir)/include
Owen Anderson562627d2011-04-15 17:35:58 +000027PROJ_resources_lib := $(PROJ_resources)/lib
Alexander Potapenko0e7a1cf2013-10-28 08:21:35 +000028PROJ_resources_include := $(PROJ_resources)/include
Owen Anderson562627d2011-04-15 17:35:58 +000029
30# Expect compiler-rt to be in llvm/projects/compiler-rt
31COMPILERRT_SRC_ROOT := $(LLVM_SRC_ROOT)/projects/compiler-rt
32
Daniel Dunbare33218a2011-11-16 23:22:07 +000033# We don't currently support building runtime libraries when we are
34# cross-compiling. The issue is that we really want to be set up so that the
35# available compiler targets are independent of the current build.
36#
37# Since we have to build the runtime libraries for the target, it requires we
38# have a cross compiler from the build machine to the target. Although in the
39# case where for the current build (host == target), we do have such a cross
40# compiler, but not defined in a way that is easy for us to reuse. Regardless,
41# that also wouldn't help for other possible compiler configurations.
42#
43# Thus, the simple set up we currently use is to assume that we will be using
44# the just built Clang to compile the compiler-rt libraries. As we grow better
45# cross compilation support inside Clang and tool support in LLVM, this makes it
46# easier for us to achieve the goal of having the compiler targets be easily
47# selected at configure time. However, this design does currently preclude the
48# building of compiler-rt libraries when the Clang itself is being cross
49# compiled.
50#
51# There are three possible solutions:
52# 1. Require building a build-target version of Clang when cross compiling. This
53# is simplest, but als greatly increases the build time of cross builds.
54#
55# 2. Require cross builds have a build-target version of Clang available for
56# use. This is a reasonable compromise on #1, as the compiler-rt libraries
57# are simple enough that there is not a strong desire to ensure they are
58# built with the exact version of Clang being used. Similarly, as Clang
59# becomes a better cross compiler it is also increasingly more likely that
60# the cross compiler being used will already be a version of Clang.
61#
62# 3. Come up with an alternate mechanism to define all the toolchain
63# information that compiler-rt would need to build libraries for all the
64# requested targets. This might be a simple short term solution, but is
Stephen Hines651f13c2014-04-23 16:59:28 -070065# likely to be unwieldy and irritating to maintain in the long term.
Daniel Dunbare33218a2011-11-16 23:22:07 +000066ifneq ($(LLVM_CROSS_COMPILING),1)
Owen Anderson562627d2011-04-15 17:35:58 +000067ifneq ($(CLANG_NO_RUNTIME),1)
68ifeq ($(shell test -d $(COMPILERRT_SRC_ROOT) && echo OK),OK)
69
70# Select the compiler-rt configuration to use, and install directory.
71#
72# FIXME: Eventually, we want some kind of configure support for this. We want to
73# build/install runtime libraries for as many targets as clang was configured to
74# support.
75RuntimeDirs :=
76ifeq ($(OS),Darwin)
Stephen Hines651f13c2014-04-23 16:59:28 -070077RuntimeDirs += darwin macho_embedded
Daniel Dunbarf4714872011-11-17 00:36:57 +000078RuntimeLibrary.darwin.Configs := \
Stephen Hines176edba2014-12-01 14:53:08 -080079 eprintf.a 10.4.a osx.a cc_kext.a \
Alexey Samsonovf8d4a6b2013-05-20 14:33:20 +000080 asan_osx_dynamic.dylib \
Stephen Hines176edba2014-12-01 14:53:08 -080081 profile_osx.a \
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -070082 ubsan_osx_dynamic.dylib
Stephen Hines651f13c2014-04-23 16:59:28 -070083
Stephen Hines176edba2014-12-01 14:53:08 -080084IOS_SDK := $(shell xcrun --show-sdk-path -sdk iphoneos 2> /dev/null)
85IOSSIM_SDK := $(shell xcrun --show-sdk-path -sdk iphonesimulator 2> /dev/null)
86
87ifneq ($(IOS_SDK)$(IOSSIM_SDK),)
88RuntimeLibrary.darwin.Configs += ios.a profile_ios.a
89endif
90
91ifneq ($(IOS_SDK),)
92RuntimeLibrary.darwin.Configs += cc_kext_ios5.a
93endif
94
95ifneq ($(IOSSIM_SDK),)
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -070096RuntimeLibrary.darwin.Configs += asan_iossim_dynamic.dylib \
97 ubsan_iossim_dynamic.dylib
Stephen Hines176edba2014-12-01 14:53:08 -080098endif
99
Stephen Hines651f13c2014-04-23 16:59:28 -0700100RuntimeLibrary.macho_embedded.Configs := \
101 hard_static.a hard_pic.a
102ifneq (,$(findstring ARM,$(TARGETS_TO_BUILD)))
103RuntimeLibrary.macho_embedded.Configs += \
104 soft_static.a soft_pic.a
105endif
Owen Anderson562627d2011-04-15 17:35:58 +0000106endif
Daniel Dunbarff986522011-12-02 02:31:32 +0000107
108# On Linux, include a library which has all the runtime functions.
109ifeq ($(OS),Linux)
110RuntimeDirs += linux
111RuntimeLibrary.linux.Configs :=
112
Alexey Samsonovf288d222012-10-09 16:03:52 +0000113# TryCompile compiler source flags
114# Returns exit code of running a compiler invocation.
115TryCompile = \
116 $(shell \
117 cflags=""; \
118 for flag in $(3); do \
119 cflags="$$cflags $$flag"; \
120 done; \
121 $(1) $$cflags $(2) -o /dev/null > /dev/null 2> /dev/null ; \
122 echo $$?)
123
Chandler Carruth230cdaa2013-06-23 10:10:25 +0000124# We try to build 32-bit runtimes both on 32-bit hosts and 64-bit hosts.
125Runtime32BitConfigs = \
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700126 builtins-i386.a profile-i386.a
Chandler Carruth230cdaa2013-06-23 10:10:25 +0000127
128# We currently only try to generate runtime libraries on x86.
129ifeq ($(ARCH),x86)
130RuntimeLibrary.linux.Configs += $(Runtime32BitConfigs)
Daniel Dunbarff986522011-12-02 02:31:32 +0000131endif
Alexey Samsonovf288d222012-10-09 16:03:52 +0000132
Daniel Dunbarff986522011-12-02 02:31:32 +0000133ifeq ($(ARCH),x86_64)
Daniel Dunbar7df67e62011-12-07 19:35:10 +0000134RuntimeLibrary.linux.Configs += \
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700135 builtins-x86_64.a profile-x86_64.a
136# We need to build 32-bit libraries on 64-bit platform, and add them
137# to the list of runtime libraries to make "clang -m32" work.
Alexey Samsonovf288d222012-10-09 16:03:52 +0000138# We check that Clang can produce working 32-bit binaries by compiling a simple
139# executable.
140test_source = $(LLVM_SRC_ROOT)/tools/clang/runtime/compiler-rt/clang_linux_test_input.c
141ifeq ($(call TryCompile,$(ToolDir)/clang,$(test_source),-m32),0)
Chandler Carruth230cdaa2013-06-23 10:10:25 +0000142RuntimeLibrary.linux.Configs += $(Runtime32BitConfigs)
Daniel Dunbarff986522011-12-02 02:31:32 +0000143endif
Alexey Samsonovf288d222012-10-09 16:03:52 +0000144endif
Daniel Dunbarff986522011-12-02 02:31:32 +0000145
Owen Anderson562627d2011-04-15 17:35:58 +0000146endif
147
Daniel Dunbare33218a2011-11-16 23:22:07 +0000148####
149# The build rules below are designed to be generic and should only need to be
150# modified based on changes in the compiler-rt layout or build system.
151####
152
Owen Anderson562627d2011-04-15 17:35:58 +0000153# Rule to build the compiler-rt libraries we need.
154#
155# We build all the libraries in a single shot to avoid recursive make as much as
156# possible.
157BuildRuntimeLibraries:
158 $(Verb) $(MAKE) -C $(COMPILERRT_SRC_ROOT) \
159 ProjSrcRoot=$(COMPILERRT_SRC_ROOT) \
160 ProjObjRoot=$(PROJ_OBJ_DIR) \
Daniel Dunbar35180582012-03-05 20:19:03 +0000161 CC="$(ToolDir)/clang" \
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700162 VERBOSE=$(VERBOSE) \
Owen Anderson562627d2011-04-15 17:35:58 +0000163 $(RuntimeDirs:%=clang_%)
164.PHONY: BuildRuntimeLibraries
165CleanRuntimeLibraries:
166 $(Verb) $(MAKE) -C $(COMPILERRT_SRC_ROOT) \
167 ProjSrcRoot=$(COMPILERRT_SRC_ROOT) \
168 ProjObjRoot=$(PROJ_OBJ_DIR) \
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700169 VERBOSE=$(VERBOSE) \
Owen Anderson562627d2011-04-15 17:35:58 +0000170 clean
171.PHONY: CleanRuntimeLibraries
Alexander Potapenko0e7a1cf2013-10-28 08:21:35 +0000172RuntimeHeader: $(ResourceIncludeDir)/sanitizer
Owen Anderson562627d2011-04-15 17:35:58 +0000173
174$(PROJ_resources_lib):
175 $(Verb) $(MKDIR) $@
176
Alexander Potapenko0e7a1cf2013-10-28 08:21:35 +0000177$(ResourceIncludeDir):
178 $(Verb) $(MKDIR) $@
179
180$(ResourceIncludeDir)/sanitizer: $(ResourceIncludeDir)
181 $(Verb) $(MKDIR) $@
182 $(Verb) cp $(COMPILERRT_SRC_ROOT)/include/sanitizer/*.h $@
183
Owen Anderson562627d2011-04-15 17:35:58 +0000184# Expand rules for copying/installing each individual library. We can't use
185# implicit rules here because we need to match against multiple things.
186define RuntimeLibraryTemplate
187$(PROJ_OBJ_DIR)/clang_$1/%/libcompiler_rt.a: BuildRuntimeLibraries
188 @true
Daniel Dunbar12f5fe52012-09-14 21:30:17 +0000189$(PROJ_OBJ_DIR)/clang_$1/%/libcompiler_rt.so: BuildRuntimeLibraries
190 @true
191$(PROJ_OBJ_DIR)/clang_$1/%/libcompiler_rt.dylib: BuildRuntimeLibraries
192 @true
Owen Anderson562627d2011-04-15 17:35:58 +0000193.PRECIOUS: $(PROJ_OBJ_DIR)/clang_$1/%/libcompiler_rt.a
194
195# Rule to copy the libraries to their resource directory location.
196$(ResourceLibDir)/$1/libclang_rt.%.a: \
197 $(PROJ_OBJ_DIR)/clang_$1/%/libcompiler_rt.a \
198 $(ResourceLibDir)/$1/.dir
199 $(Echo) Copying runtime library $1/$$* to build dir
200 $(Verb) cp $(PROJ_OBJ_DIR)/clang_$1/$$*/libcompiler_rt.a $$@
Daniel Dunbar12f5fe52012-09-14 21:30:17 +0000201$(ResourceLibDir)/$1/libclang_rt.%.so: \
202 $(PROJ_OBJ_DIR)/clang_$1/%/libcompiler_rt.so \
203 $(ResourceLibDir)/$1/.dir
204 $(Echo) Copying runtime library $1/$$* to build dir
205 $(Verb) cp $(PROJ_OBJ_DIR)/clang_$1/$$*/libcompiler_rt.so $$@
206$(ResourceLibDir)/$1/libclang_rt.%.dylib: \
207 $(PROJ_OBJ_DIR)/clang_$1/%/libcompiler_rt.dylib \
208 $(ResourceLibDir)/$1/.dir
209 $(Echo) Copying runtime library $1/$$* to build dir
210 $(Verb) cp $(PROJ_OBJ_DIR)/clang_$1/$$*/libcompiler_rt.dylib $$@
Owen Anderson562627d2011-04-15 17:35:58 +0000211RuntimeLibrary.$1: \
Daniel Dunbar12f5fe52012-09-14 21:30:17 +0000212 $(RuntimeLibrary.$1.Configs:%=$(ResourceLibDir)/$1/libclang_rt.%)
Owen Anderson562627d2011-04-15 17:35:58 +0000213.PHONY: RuntimeLibrary.$1
214
215$(PROJ_resources_lib)/$1: $(PROJ_resources_lib)
216 $(Verb) $(MKDIR) $$@
217
218$(PROJ_resources_lib)/$1/libclang_rt.%.a: \
219 $(ResourceLibDir)/$1/libclang_rt.%.a | $(PROJ_resources_lib)/$1
220 $(Echo) Installing compiler runtime library: $1/$$*
221 $(Verb) $(DataInstall) $$< $(PROJ_resources_lib)/$1
Daniel Dunbar12f5fe52012-09-14 21:30:17 +0000222$(PROJ_resources_lib)/$1/libclang_rt.%.so: \
223 $(ResourceLibDir)/$1/libclang_rt.%.so | $(PROJ_resources_lib)/$1
224 $(Echo) Installing compiler runtime library: $1/$$*
225 $(Verb) $(DataInstall) $$< $(PROJ_resources_lib)/$1
226$(PROJ_resources_lib)/$1/libclang_rt.%.dylib: \
227 $(ResourceLibDir)/$1/libclang_rt.%.dylib | $(PROJ_resources_lib)/$1
228 $(Echo) Installing compiler runtime library: $1/$$*
229 $(Verb) $(DataInstall) $$< $(PROJ_resources_lib)/$1
Owen Anderson562627d2011-04-15 17:35:58 +0000230
231# Rule to install runtime libraries.
232RuntimeLibraryInstall.$1: \
Daniel Dunbar12f5fe52012-09-14 21:30:17 +0000233 $(RuntimeLibrary.$1.Configs:%=$(PROJ_resources_lib)/$1/libclang_rt.%)
Owen Anderson562627d2011-04-15 17:35:58 +0000234.PHONY: RuntimeLibraryInstall.$1
235endef
236$(foreach lib,$(RuntimeDirs), $(eval $(call RuntimeLibraryTemplate,$(lib))))
237
Alexander Potapenko0e7a1cf2013-10-28 08:21:35 +0000238$(PROJ_resources_include):
239 $(Verb) $(MKDIR) $@
240
241$(PROJ_resources_include)/sanitizer: $(ResourceIncludeDir)/sanitizer $(PROJ_resources_include)
242 $(Verb) $(MKDIR) $@
243 $(Echo) Installing compiler runtime headers
244 $(Verb) $(DataInstall) $(ResourceIncludeDir)/sanitizer/* \
245 $(PROJ_resources_include)/sanitizer
246
247RuntimeHeaderInstall: $(PROJ_resources_include)/sanitizer
248.PHONY: RuntimeHeaderInstall
249
Owen Anderson562627d2011-04-15 17:35:58 +0000250# Hook into the standard Makefile rules.
Alexander Potapenko0e7a1cf2013-10-28 08:21:35 +0000251all-local:: $(RuntimeDirs:%=RuntimeLibrary.%) RuntimeHeader
252install-local:: $(RuntimeDirs:%=RuntimeLibraryInstall.%) RuntimeHeaderInstall
Owen Anderson562627d2011-04-15 17:35:58 +0000253clean-local:: CleanRuntimeLibraries
254
255endif
256endif
Daniel Dunbare33218a2011-11-16 23:22:07 +0000257endif