]> git.lizzy.rs Git - rust.git/blob - mk/llvm.mk
602c20430298b8414c9e910a56244fb43ffa7125
[rust.git] / mk / llvm.mk
1 # Copyright 2012 The Rust Project Developers. See the COPYRIGHT
2 # file at the top-level directory of this distribution and at
3 # http://rust-lang.org/COPYRIGHT.
4 #
5 # Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 # http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 # <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 # option. This file may not be copied, modified, or distributed
9 # except according to those terms.
10
11
12 ifdef CFG_ENABLE_FAST_MAKE
13 LLVM_DEPS := $(S)/.gitmodules
14 else
15
16 # This is just a rough approximation of LLVM deps
17 LLVM_DEPS_SRC=$(call rwildcard,$(CFG_LLVM_SRC_DIR)lib,*cpp *hpp)
18 LLVM_DEPS_INC=$(call rwildcard,$(CFG_LLVM_SRC_DIR)include,*cpp *hpp)
19 LLVM_DEPS=$(LLVM_DEPS_SRC) $(LLVM_DEPS_INC)
20 endif
21
22 ifdef CFG_DISABLE_OPTIMIZE_LLVM
23 LLVM_BUILD_CONFIG_MODE := Debug
24 else
25 LLVM_BUILD_CONFIG_MODE := Release
26 endif
27
28 define DEF_LLVM_RULES
29
30 ifeq ($(1),$$(CFG_BUILD))
31 LLVM_DEPS_TARGET_$(1) := $$(LLVM_DEPS)
32 else
33 LLVM_DEPS_TARGET_$(1) := $$(LLVM_DEPS) $$(LLVM_CONFIG_$$(CFG_BUILD))
34 endif
35
36 # If CFG_LLVM_ROOT is defined then we don't build LLVM ourselves
37 ifeq ($(CFG_LLVM_ROOT),)
38
39 LLVM_STAMP_$(1) = $$(CFG_LLVM_BUILD_DIR_$(1))/llvm-auto-clean-stamp
40 LLVM_DONE_$(1) = $$(CFG_LLVM_BUILD_DIR_$(1))/llvm-finished-building
41
42 $$(LLVM_CONFIG_$(1)): $$(LLVM_DONE_$(1))
43
44 $$(LLVM_DONE_$(1)): $$(LLVM_DEPS_TARGET_$(1)) $$(LLVM_STAMP_$(1))
45         @$$(call E, cmake: llvm)
46 ifneq ($$(CFG_NINJA),)
47         $$(Q)$$(CFG_NINJA) -C $$(CFG_LLVM_BUILD_DIR_$(1))
48 else ifeq ($$(findstring msvc,$(1)),msvc)
49         $$(Q)$$(CFG_CMAKE) --build $$(CFG_LLVM_BUILD_DIR_$(1)) \
50                 --config $$(LLVM_BUILD_CONFIG_MODE)
51 else
52         $$(Q)$$(MAKE) -C $$(CFG_LLVM_BUILD_DIR_$(1))
53 endif
54         $$(Q)touch $$@
55
56 ifneq ($$(CFG_NINJA),)
57 clean-llvm$(1):
58         @$$(call E, clean: llvm)
59         $$(Q)$$(CFG_NINJA) -C $$(CFG_LLVM_BUILD_DIR_$(1)) -t clean
60 else ifeq ($$(findstring msvc,$(1)),msvc)
61 clean-llvm$(1):
62 else
63 clean-llvm$(1):
64         @$$(call E, clean: llvm)
65         $$(Q)$$(MAKE) -C $$(CFG_LLVM_BUILD_DIR_$(1)) clean
66 endif
67
68 else
69 clean-llvm$(1):
70 endif
71
72 $$(LLVM_AR_$(1)): $$(LLVM_CONFIG_$(1))
73
74 # This is used to independently force an LLVM clean rebuild
75 # when we changed something not otherwise captured by builtin
76 # dependencies. In these cases, commit a change that touches
77 # the stamp in the source dir.
78 $$(LLVM_STAMP_$(1)): $$(S)src/rustllvm/llvm-auto-clean-trigger
79         @$$(call E, make: cleaning llvm)
80         $$(Q)touch $$@.start_time
81         $$(Q)$$(MAKE) clean-llvm$(1)
82         @$$(call E, make: done cleaning llvm)
83         touch -r $$@.start_time $$@ && rm $$@.start_time
84
85 ifeq ($$(CFG_ENABLE_LLVM_STATIC_STDCPP),1)
86 LLVM_STDCPP_RUSTFLAGS_$(1) = -L "$$(dir $$(shell $$(CC_$(1)) $$(CFG_GCCISH_CFLAGS_$(1)) \
87                                         -print-file-name=lib$(CFG_STDCPP_NAME).a))"
88 else
89 LLVM_STDCPP_RUSTFLAGS_$(1) =
90 endif
91
92
93 # LLVM linkage:
94 # Note: Filter with llvm-config so that optional targets which aren't present
95 # don't cause errors (ie PNaCl's target is only present within PNaCl's LLVM
96 # fork).
97 LLVM_LINKAGE_PATH_$(1):=$$(abspath $$(RT_OUTPUT_DIR_$(1))/llvmdeps.rs)
98 $$(LLVM_LINKAGE_PATH_$(1)): $(S)src/etc/mklldeps.py $$(LLVM_CONFIG_$(1))
99         $(Q)$(CFG_PYTHON) "$$<" "$$@" "$$(filter $$(shell \
100                                 $$(LLVM_CONFIG_$(1)) --components), \
101                         $(LLVM_OPTIONAL_COMPONENTS)) $(LLVM_REQUIRED_COMPONENTS)" \
102                 "$$(CFG_ENABLE_LLVM_STATIC_STDCPP)" $$(LLVM_CONFIG_$(1)) \
103                 "$(CFG_STDCPP_NAME)" "$$(CFG_USING_LIBCPP)"
104 endef
105
106 $(foreach host,$(CFG_HOST), \
107  $(eval $(call DEF_LLVM_RULES,$(host))))
108
109 $(foreach host,$(CFG_HOST), \
110  $(eval LLVM_CONFIGS := $(LLVM_CONFIGS) $(LLVM_CONFIG_$(host))))
111
112 # This can't be done in target.mk because it's included before this file.
113 define LLVM_LINKAGE_DEPS
114 $$(TLIB$(1)_T_$(2)_H_$(3))/stamp.rustc_llvm: $$(LLVM_LINKAGE_PATH_$(2))
115 RUSTFLAGS$(1)_rustc_llvm_T_$(2) += $$(shell echo $$(LLVM_ALL_COMPONENTS_$(2)) | tr '-' '_' |\
116         sed -e 's/^ //;s/\([^ ]*\)/\-\-cfg "llvm_component=\\"\1\\""/g')
117 endef
118
119 $(foreach source,$(CFG_HOST), \
120  $(foreach target,$(CFG_TARGET), \
121   $(eval $(call LLVM_LINKAGE_DEPS,0,$(target),$(source))) \
122   $(eval $(call LLVM_LINKAGE_DEPS,1,$(target),$(source))) \
123   $(eval $(call LLVM_LINKAGE_DEPS,2,$(target),$(source))) \
124   $(eval $(call LLVM_LINKAGE_DEPS,3,$(target),$(source)))))