blob: 375f312debd1191395ba8dbf35c58683a58e8ba4 [file] [log] [blame]
Daniel Dunbarac141e62010-06-30 22:10:38 +00001##===- clang/runtime/Makefile ------------------------------*- Makefile -*-===##
Daniel Dunbar253521b2010-01-19 21:12:58 +00002#
3# The LLVM Compiler Infrastructure
4#
5# This file is distributed under the University of Illinois Open Source
6# License. See LICENSE.TXT for details.
7#
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#
14##===----------------------------------------------------------------------===##
15
Daniel Dunbarac141e62010-06-30 22:10:38 +000016CLANG_LEVEL := ..
Daniel Dunbarafed0992010-06-08 20:34:18 +000017include $(CLANG_LEVEL)/Makefile
Daniel Dunbar253521b2010-01-19 21:12:58 +000018
Daniel Dunbarbc817cf2010-06-25 17:33:49 +000019CLANG_VERSION := $(word 3,$(shell grep "CLANG_VERSION " \
20 $(PROJ_OBJ_DIR)/$(CLANG_LEVEL)/include/clang/Basic/Version.inc))
21
Daniel Dunbar253521b2010-01-19 21:12:58 +000022ResourceDir := $(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 Dunbardb0ab632011-02-11 01:29:49 +000031# Additional flags to pass to Clang.
32CLANG_CCFLAGS := -no-integrated-as
33
Daniel Dunbar880efcb2010-12-22 22:23:39 +000034ifneq ($(CLANG_NO_RUNTIME),1)
Daniel Dunbar253521b2010-01-19 21:12:58 +000035ifeq ($(shell test -d $(COMPILERRT_SRC_ROOT) && echo OK),OK)
36
37# Select the compiler-rt configuration to use, and install directory.
38#
39# FIXME: Eventually, we want some kind of configure support for this. We want to
40# build/install runtime libraries for as many targets as clang was configured to
41# support.
42RuntimeDirs :=
43ifeq ($(OS),Darwin)
44RuntimeDirs += darwin
Daniel Dunbar885b1db2010-09-22 00:03:52 +000045RuntimeLibrary.darwin.Configs = eprintf 10.4 armv6 cc_kext
Daniel Dunbardb0ab632011-02-11 01:29:49 +000046
47# On Darwin, fake Clang into using the iOS assembler (since compiler-rt wants to
48# build ARM bits).
49ifeq ($(OS),Darwin)
50CLANG_CCFLAGS += -ccc-install-dir \
51 /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/
52endif
Daniel Dunbar253521b2010-01-19 21:12:58 +000053endif
54
Daniel Dunbar253521b2010-01-19 21:12:58 +000055# Rule to build the compiler-rt libraries we need.
56#
57# We build all the libraries in a single shot to avoid recursive make as much as
58# possible.
59BuildRuntimeLibraries:
60 $(Verb) $(MAKE) -C $(COMPILERRT_SRC_ROOT) \
61 ProjSrcRoot=$(COMPILERRT_SRC_ROOT) \
62 ProjObjRoot=$(PROJ_OBJ_DIR) \
Daniel Dunbardb0ab632011-02-11 01:29:49 +000063 CC="$(ToolDir)/clang $(CLANG_CCFLAGS)" \
Daniel Dunbar253521b2010-01-19 21:12:58 +000064 $(RuntimeDirs:%=clang_%)
65.PHONY: BuildRuntimeLibraries
66CleanRuntimeLibraries:
67 $(Verb) $(MAKE) -C $(COMPILERRT_SRC_ROOT) \
68 ProjSrcRoot=$(COMPILERRT_SRC_ROOT) \
69 ProjObjRoot=$(PROJ_OBJ_DIR) \
70 clean
71.PHONY: CleanRuntimeLibraries
72
73$(PROJ_resources_lib):
74 $(Verb) $(MKDIR) $@
75
76# Expand rules for copying/installing each individual library. We can't use
77# implicit rules here because we need to match against multiple things.
78define RuntimeLibraryTemplate
79$(PROJ_OBJ_DIR)/clang_$1/%/libcompiler_rt.a: BuildRuntimeLibraries
80 @true
81.PRECIOUS: $(PROJ_OBJ_DIR)/clang_$1/%/libcompiler_rt.a
82
83# Rule to copy the libraries to their resource directory location.
84$(ResourceLibDir)/$1/libclang_rt.%.a: \
85 $(PROJ_OBJ_DIR)/clang_$1/%/libcompiler_rt.a \
86 $(ResourceLibDir)/$1/.dir
87 $(Echo) Copying runtime library $1/$$* to build dir
88 $(Verb) cp $(PROJ_OBJ_DIR)/clang_$1/$$*/libcompiler_rt.a $$@
89RuntimeLibrary.$1: \
90 $(RuntimeLibrary.$1.Configs:%=$(ResourceLibDir)/$1/libclang_rt.%.a)
91.PHONY: RuntimeLibrary.$1
92
93$(PROJ_resources_lib)/$1: $(PROJ_resources_lib)
94 $(Verb) $(MKDIR) $$@
95
96$(PROJ_resources_lib)/$1/libclang_rt.%.a: \
97 $(ResourceLibDir)/$1/libclang_rt.%.a | $(PROJ_resources_lib)/$1
98 $(Echo) Installing compiler runtime library: $1/$$*
99 $(Verb) $(DataInstall) $$< $(PROJ_resources_lib)/$1
100
101# Rule to install runtime libraries.
102RuntimeLibraryInstall.$1: \
103 $(RuntimeLibrary.$1.Configs:%=$(PROJ_resources_lib)/$1/libclang_rt.%.a)
104.PHONY: RuntimeLibraryInstall.$1
105endef
106$(foreach lib,$(RuntimeDirs), $(eval $(call RuntimeLibraryTemplate,$(lib))))
107
108# Hook into the standard Makefile rules.
109all-local:: $(RuntimeDirs:%=RuntimeLibrary.%)
110install-local:: $(RuntimeDirs:%=RuntimeLibraryInstall.%)
111clean-local:: CleanRuntimeLibraries
Daniel Dunbar46bbbdd2010-01-19 21:28:04 +0000112
113endif
Daniel Dunbar6e45cbc2010-04-28 23:36:26 +0000114endif