]> git.lizzy.rs Git - rust.git/blob - mk/target.mk
auto merge of #11436 : alexcrichton/rust/update-forks, r=huonw
[rust.git] / mk / target.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 # This is the compile-time target-triple for the compiler. For the compiler at
12 # runtime, this should be considered the host-triple. More explanation for why
13 # this exists can be found on issue #2400
14 export CFG_COMPILER
15
16 # The standard libraries should be held up to a higher standard than any old
17 # code, make sure that these common warnings are denied by default. These can
18 # be overridden during development temporarily. For stage0, we allow warnings
19 # which may be bugs in stage0 (should be fixed in stage1+)
20 WFLAGS_ST0 = -W warnings
21 WFLAGS_ST1 = -D warnings
22 WFLAGS_ST2 = -D warnings
23
24 # TARGET_STAGE_N template: This defines how target artifacts are built
25 # for all stage/target architecture combinations. The arguments:
26 # $(1) is the stage
27 # $(2) is the target triple
28 # $(3) is the host triple
29
30 # Every recipe in TARGET_STAGE_N outputs to $$(TLIB$(1)_T_$(2)_H_$(3),
31 # a directory that can be cleaned out during the middle of a run of
32 # the get-snapshot.py script.  Therefore, every recipe needs to have
33 # an order-only dependency either on $(SNAPSHOT_RUSTC_POST_CLEANUP) or
34 # on $$(TSREQ$(1)_T_$(2)_H_$(3)), to ensure that no products will be
35 # put into the target area until after the get-snapshot.py script has
36 # had its chance to clean it out; otherwise the other products will be
37 # inadvertantly included in the clean out.
38
39 SNAPSHOT_RUSTC_POST_CLEANUP=$(HBIN0_H_$(CFG_BUILD))/rustc$(X_$(CFG_BUILD))
40
41 define TARGET_STAGE_N
42
43 $$(TLIB$(1)_T_$(2)_H_$(3))/libmorestack.a: \
44                 $(2)/rt/stage$(1)/arch/$$(HOST_$(2))/libmorestack.a \
45                 | $$(TLIB$(1)_T_$(2)_H_$(3))/ \
46                   $(SNAPSHOT_RUSTC_POST_CLEANUP)
47         @$$(call E, cp: $$@)
48         $$(Q)cp $$< $$@
49
50 $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_RUNTIME_$(2)): \
51                 $(2)/rt/stage$(1)/$(CFG_RUNTIME_$(2)) \
52                 | $$(TLIB$(1)_T_$(2)_H_$(3))/ \
53                   $(SNAPSHOT_RUSTC_POST_CLEANUP)
54         @$$(call E, cp: $$@)
55         $$(Q)cp $$< $$@
56
57 $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_STDLIB_$(2)): \
58                 $$(STDLIB_CRATE) $$(STDLIB_INPUTS) \
59                 $$(TSREQ$(1)_T_$(2)_H_$(3)) \
60                 | $$(TLIB$(1)_T_$(2)_H_$(3))/
61         @$$(call E, compile_and_link: $$@)
62         $$(call REMOVE_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(STDLIB_GLOB_$(2)),$$(notdir $$@))
63         $$(call REMOVE_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(STDLIB_RGLOB_$(2)),$$(notdir $$@))
64         $$(STAGE$(1)_T_$(2)_H_$(3)) $$(WFLAGS_ST$(1)) \
65                 --out-dir $$(@D) $$< && touch $$@
66         $$(call LIST_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(STDLIB_GLOB_$(2)),$$(notdir $$@))
67         $$(call LIST_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(STDLIB_RGLOB_$(2)),$$(notdir $$@))
68
69 $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_EXTRALIB_$(2)): \
70                 $$(EXTRALIB_CRATE) $$(EXTRALIB_INPUTS) \
71                 $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_STDLIB_$(2)) \
72                 $$(TSREQ$(1)_T_$(2)_H_$(3)) \
73                 | $$(TLIB$(1)_T_$(2)_H_$(3))/
74         @$$(call E, compile_and_link: $$@)
75         $$(call REMOVE_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(EXTRALIB_GLOB_$(2)),$$(notdir $$@))
76         $$(call REMOVE_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(EXTRALIB_RGLOB_$(2)),$$(notdir $$@))
77         $$(STAGE$(1)_T_$(2)_H_$(3)) $$(WFLAGS_ST$(1)) \
78                 --out-dir $$(@D) $$< && touch $$@
79         $$(call LIST_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(EXTRALIB_GLOB_$(2)),$$(notdir $$@))
80         $$(call LIST_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(EXTRALIB_RGLOB_$(2)),$$(notdir $$@))
81
82 $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBRUSTUV_$(2)): \
83                 $$(LIBRUSTUV_CRATE) $$(LIBRUSTUV_INPUTS) \
84                 $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_STDLIB_$(2)) \
85                 $$(TSREQ$(1)_T_$(2)_H_$(3)) \
86                 $$(LIBUV_LIB_$(2)) \
87                 $$(UV_SUPPORT_LIB_$(2)) \
88                 | $$(TLIB$(1)_T_$(2)_H_$(3))/
89         @$$(call E, compile_and_link: $$@)
90         $$(call REMOVE_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBRUSTUV_GLOB_$(2)),$$(notdir $$@))
91         $$(call REMOVE_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBRUSTUV_RGLOB_$(2)),$$(notdir $$@))
92         $$(STAGE$(1)_T_$(2)_H_$(3)) $$(WFLAGS_ST$(1)) \
93                 -L $$(UV_SUPPORT_DIR_$(2)) \
94                 -L $$(dir $$(LIBUV_LIB_$(2))) \
95                 --out-dir $$(@D) $$< && touch $$@
96         $$(call LIST_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBRUSTUV_GLOB_$(2)),$$(notdir $$@))
97         $$(call LIST_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBRUSTUV_RGLOB_$(2)),$$(notdir $$@))
98
99 $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBGREEN_$(2)): \
100                 $$(LIBGREEN_CRATE) $$(LIBGREEN_INPUTS) \
101                 $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_STDLIB_$(2)) \
102                 $$(TSREQ$(1)_T_$(2)_H_$(3)) \
103                 | $$(TLIB$(1)_T_$(2)_H_$(3))/
104         @$$(call E, compile_and_link: $$@)
105         $$(call REMOVE_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBGREEN_GLOB_$(2)),$$(notdir $$@))
106         $$(call REMOVE_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBGREEN_RGLOB_$(2)),$$(notdir $$@))
107         $$(STAGE$(1)_T_$(2)_H_$(3)) $$(WFLAGS_ST$(1)) \
108                 --out-dir $$(@D) $$< && touch $$@
109         $$(call LIST_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBGREEN_GLOB_$(2)),$$(notdir $$@))
110         $$(call LIST_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBGREEN_RGLOB_$(2)),$$(notdir $$@))
111
112 $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBNATIVE_$(2)): \
113                 $$(LIBNATIVE_CRATE) $$(LIBNATIVE_INPUTS) \
114                 $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_STDLIB_$(2)) \
115                 $$(TSREQ$(1)_T_$(2)_H_$(3)) \
116                 | $$(TLIB$(1)_T_$(2)_H_$(3))/
117         @$$(call E, compile_and_link: $$@)
118         $$(call REMOVE_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBNATIVE_GLOB_$(2)),$$(notdir $$@))
119         $$(call REMOVE_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBNATIVE_RGLOB_$(2)),$$(notdir $$@))
120         $$(STAGE$(1)_T_$(2)_H_$(3)) $$(WFLAGS_ST$(1)) \
121                 --out-dir $$(@D) $$< && touch $$@
122         $$(call LIST_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBNATIVE_GLOB_$(2)),$$(notdir $$@))
123         $$(call LIST_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBNATIVE_RGLOB_$(2)),$$(notdir $$@))
124
125 $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBSYNTAX_$(3)): \
126                 $$(LIBSYNTAX_CRATE) $$(LIBSYNTAX_INPUTS) \
127                 $$(TSREQ$(1)_T_$(2)_H_$(3))                     \
128                 $$(TSTDLIB_DEFAULT$(1)_T_$(2)_H_$(3))      \
129                 $$(TEXTRALIB_DEFAULT$(1)_T_$(2)_H_$(3)) \
130                 | $$(TLIB$(1)_T_$(2)_H_$(3))/
131         @$$(call E, compile_and_link: $$@)
132         $$(call REMOVE_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBSYNTAX_GLOB_$(2)),$$(notdir $$@))
133         $$(call REMOVE_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBSYNTAX_RGLOB_$(2)),$$(notdir $$@))
134         $$(STAGE$(1)_T_$(2)_H_$(3)) $$(WFLAGS_ST$(1)) $(BORROWCK) \
135             --out-dir $$(@D) $$< && touch $$@
136         $$(call LIST_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBSYNTAX_GLOB_$(2)),$$(notdir $$@))
137         $$(call LIST_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBSYNTAX_RGLOB_$(2)),$$(notdir $$@))
138
139 # Only build the compiler for host triples
140 ifneq ($$(findstring $(2),$$(CFG_HOST)),)
141
142 $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_RUSTLLVM_$(3)): \
143                 $(2)/rustllvm/$(CFG_RUSTLLVM_$(3)) \
144                 | $$(TLIB$(1)_T_$(2)_H_$(3))/ \
145                   $(SNAPSHOT_RUSTC_POST_CLEANUP)
146         @$$(call E, cp: $$@)
147         $$(Q)cp $$< $$@
148
149 $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBRUSTC_$(3)): CFG_COMPILER = $(2)
150 $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBRUSTC_$(3)):                \
151                 $$(COMPILER_CRATE) $$(COMPILER_INPUTS)          \
152                 $(S)src/librustc/lib/llvmdeps.rs                \
153                 $$(TSREQ$(1)_T_$(2)_H_$(3)) \
154                 $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBSYNTAX_$(3)) \
155                 $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_RUSTLLVM_$(3)) \
156                 | $$(TLIB$(1)_T_$(2)_H_$(3))/
157         @$$(call E, compile_and_link: $$@)
158         $$(call REMOVE_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBRUSTC_GLOB_$(2)),$$(notdir $$@))
159         $$(call REMOVE_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBRUSTC_RGLOB_$(2)),$$(notdir $$@))
160         $$(STAGE$(1)_T_$(2)_H_$(3)) $$(WFLAGS_ST$(1)) \
161             -L "$$(LLVM_LIBDIR_$(2))" \
162             --out-dir $$(@D) $$< && touch $$@
163         $$(call LIST_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBRUSTC_GLOB_$(2)),$$(notdir $$@))
164         $$(call LIST_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBRUSTC_RGLOB_$(2)),$$(notdir $$@))
165
166 $$(TBIN$(1)_T_$(2)_H_$(3))/rustc$$(X_$(3)):                     \
167                 $$(DRIVER_CRATE)                                \
168                 $$(SREQ$(1)_T_$(2)_H_$(3)) \
169                 $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBRUSTC_$(3)) \
170                 | $$(TBIN$(1)_T_$(2)_H_$(3))/
171         @$$(call E, compile_and_link: $$@)
172         $$(STAGE$(1)_T_$(2)_H_$(3)) --cfg rustc -o $$@ $$<
173 ifdef CFG_ENABLE_PAX_FLAGS
174         @$$(call E, apply PaX flags: $$@)
175         @"$(CFG_PAXCTL)" -cm "$$@"
176 endif
177
178 endif
179
180 $$(TBIN$(1)_T_$(2)_H_$(3))/:
181         mkdir -p $$@
182
183 $$(TLIB$(1)_T_$(2)_H_$(3))/:
184         mkdir -p $$@
185
186 endef
187
188 # In principle, each host can build each target:
189 $(foreach source,$(CFG_HOST),                           \
190  $(foreach target,$(CFG_TARGET),                        \
191   $(eval $(call TARGET_STAGE_N,0,$(target),$(source)))          \
192   $(eval $(call TARGET_STAGE_N,1,$(target),$(source)))          \
193   $(eval $(call TARGET_STAGE_N,2,$(target),$(source)))          \
194   $(eval $(call TARGET_STAGE_N,3,$(target),$(source)))))