]> git.lizzy.rs Git - rust.git/blob - mk/target.mk
3746a4eafc0e66ca6a4f9d07d41b037a59a47198
[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)) --out-dir $$(@D) $$< && touch $$@
65         $$(call LIST_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(STDLIB_GLOB_$(2)),$$(notdir $$@))
66         $$(call LIST_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(STDLIB_RGLOB_$(2)),$$(notdir $$@))
67
68 $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_EXTRALIB_$(2)): \
69                 $$(EXTRALIB_CRATE) $$(EXTRALIB_INPUTS) \
70                 $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_STDLIB_$(2)) \
71                 $$(TSREQ$(1)_T_$(2)_H_$(3)) \
72                 | $$(TLIB$(1)_T_$(2)_H_$(3))/
73         @$$(call E, compile_and_link: $$@)
74         $$(call REMOVE_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(EXTRALIB_GLOB_$(2)),$$(notdir $$@))
75         $$(call REMOVE_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(EXTRALIB_RGLOB_$(2)),$$(notdir $$@))
76         $$(STAGE$(1)_T_$(2)_H_$(3)) $$(WFLAGS_ST$(1)) --out-dir $$(@D) $$< && touch $$@
77         $$(call LIST_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(EXTRALIB_GLOB_$(2)),$$(notdir $$@))
78         $$(call LIST_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(EXTRALIB_RGLOB_$(2)),$$(notdir $$@))
79
80 $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBRUSTUV_$(2)): \
81                 $$(LIBRUSTUV_CRATE) $$(LIBRUSTUV_INPUTS) \
82                 $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_STDLIB_$(2)) \
83                 $$(TSREQ$(1)_T_$(2)_H_$(3)) \
84                 $$(LIBUV_LIB_$(2)) \
85                 $$(UV_SUPPORT_LIB_$(2)) \
86                 | $$(TLIB$(1)_T_$(2)_H_$(3))/
87         @$$(call E, compile_and_link: $$@)
88         $$(call REMOVE_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBRUSTUV_GLOB_$(2)),$$(notdir $$@))
89         $$(call REMOVE_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBRUSTUV_RGLOB_$(2)),$$(notdir $$@))
90         $$(STAGE$(1)_T_$(2)_H_$(3)) $$(WFLAGS_ST$(1)) \
91                 -L $$(UV_SUPPORT_DIR_$(2)) \
92                 -L $$(dir $$(LIBUV_LIB_$(2))) \
93                 --out-dir $$(@D) $$< && touch $$@
94         $$(call LIST_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBRUSTUV_GLOB_$(2)),$$(notdir $$@))
95         $$(call LIST_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBRUSTUV_RGLOB_$(2)),$$(notdir $$@))
96
97 $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBGREEN_$(2)): \
98                 $$(LIBGREEN_CRATE) $$(LIBGREEN_INPUTS) \
99                 $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_STDLIB_$(2)) \
100                 $$(TSREQ$(1)_T_$(2)_H_$(3)) \
101                 | $$(TLIB$(1)_T_$(2)_H_$(3))/
102         @$$(call E, compile_and_link: $$@)
103         $$(call REMOVE_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBGREEN_GLOB_$(2)),$$(notdir $$@))
104         $$(call REMOVE_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBGREEN_RGLOB_$(2)),$$(notdir $$@))
105         $$(STAGE$(1)_T_$(2)_H_$(3)) $$(WFLAGS_ST$(1)) \
106                 --out-dir $$(@D) $$< && touch $$@
107         $$(call LIST_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBGREEN_GLOB_$(2)),$$(notdir $$@))
108         $$(call LIST_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBGREEN_RGLOB_$(2)),$$(notdir $$@))
109
110 $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBNATIVE_$(2)): \
111                 $$(LIBNATIVE_CRATE) $$(LIBNATIVE_INPUTS) \
112                 $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_STDLIB_$(2)) \
113                 $$(TSREQ$(1)_T_$(2)_H_$(3)) \
114                 | $$(TLIB$(1)_T_$(2)_H_$(3))/
115         @$$(call E, compile_and_link: $$@)
116         $$(call REMOVE_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBNATIVE_GLOB_$(2)),$$(notdir $$@))
117         $$(call REMOVE_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBNATIVE_RGLOB_$(2)),$$(notdir $$@))
118         $$(STAGE$(1)_T_$(2)_H_$(3)) $$(WFLAGS_ST$(1)) \
119                 --out-dir $$(@D) $$< && touch $$@
120         $$(call LIST_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBNATIVE_GLOB_$(2)),$$(notdir $$@))
121         $$(call LIST_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBNATIVE_RGLOB_$(2)),$$(notdir $$@))
122
123 $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBSYNTAX_$(3)): \
124                 $$(LIBSYNTAX_CRATE) $$(LIBSYNTAX_INPUTS) \
125                 $$(TSREQ$(1)_T_$(2)_H_$(3))                     \
126                 $$(TSTDLIB_DEFAULT$(1)_T_$(2)_H_$(3))      \
127                 $$(TEXTRALIB_DEFAULT$(1)_T_$(2)_H_$(3)) \
128                 $$(TLIBRUSTUV_DEFAULT$(1)_T_$(2)_H_$(3)) \
129                 | $$(TLIB$(1)_T_$(2)_H_$(3))/
130         @$$(call E, compile_and_link: $$@)
131         $$(call REMOVE_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBSYNTAX_GLOB_$(2)),$$(notdir $$@))
132         $$(call REMOVE_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBSYNTAX_RGLOB_$(2)),$$(notdir $$@))
133         $$(STAGE$(1)_T_$(2)_H_$(3)) $$(WFLAGS_ST$(1)) $(BORROWCK) --out-dir $$(@D) $$< && touch $$@
134         $$(call LIST_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBSYNTAX_GLOB_$(2)),$$(notdir $$@))
135         $$(call LIST_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBSYNTAX_RGLOB_$(2)),$$(notdir $$@))
136
137 # Only build the compiler for host triples
138 ifneq ($$(findstring $(2),$$(CFG_HOST)),)
139
140 $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_RUSTLLVM_$(3)): \
141                 $(2)/rustllvm/$(CFG_RUSTLLVM_$(3)) \
142                 | $$(TLIB$(1)_T_$(2)_H_$(3))/ \
143                   $(SNAPSHOT_RUSTC_POST_CLEANUP)
144         @$$(call E, cp: $$@)
145         $$(Q)cp $$< $$@
146
147 $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBRUSTC_$(3)): CFG_COMPILER = $(2)
148 $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBRUSTC_$(3)):                \
149                 $$(COMPILER_CRATE) $$(COMPILER_INPUTS)          \
150                 $(S)src/librustc/lib/llvmdeps.rs                \
151                 $$(TSREQ$(1)_T_$(2)_H_$(3)) \
152                 $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBSYNTAX_$(3)) \
153                 $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_RUSTLLVM_$(3)) \
154                 | $$(TLIB$(1)_T_$(2)_H_$(3))/
155         @$$(call E, compile_and_link: $$@)
156         $$(call REMOVE_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBRUSTC_GLOB_$(2)),$$(notdir $$@))
157         $$(call REMOVE_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBRUSTC_RGLOB_$(2)),$$(notdir $$@))
158         $$(STAGE$(1)_T_$(2)_H_$(3)) $$(WFLAGS_ST$(1)) \
159             -L "$$(LLVM_LIBDIR_$(2))" \
160             --out-dir $$(@D) $$< && touch $$@
161         $$(call LIST_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBRUSTC_GLOB_$(2)),$$(notdir $$@))
162         $$(call LIST_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBRUSTC_RGLOB_$(2)),$$(notdir $$@))
163
164 # NOTE: after the next snapshot remove these '-L' flags
165 $$(TBIN$(1)_T_$(2)_H_$(3))/rustc$$(X_$(3)):                     \
166                 $$(DRIVER_CRATE)                                \
167                 $$(TSREQ$(1)_T_$(2)_H_$(3)) \
168                 $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBRUSTC_$(3)) \
169                 | $$(TBIN$(1)_T_$(2)_H_$(3))/
170         @$$(call E, compile_and_link: $$@)
171         $$(STAGE$(1)_T_$(2)_H_$(3)) --cfg rustc -o $$@ $$< \
172                 -L $$(UV_SUPPORT_DIR_$(2)) \
173                 -L $$(dir $$(LIBUV_LIB_$(2)))
174 ifdef CFG_ENABLE_PAX_FLAGS
175         @$$(call E, apply PaX flags: $$@)
176         @"$(CFG_PAXCTL)" -cm "$$@"
177 endif
178
179 endif
180
181 $$(TBIN$(1)_T_$(2)_H_$(3))/:
182         mkdir -p $$@
183
184 ifneq ($(CFG_LIBDIR),bin)
185 $$(TLIB$(1)_T_$(2)_H_$(3))/:
186         mkdir -p $$@
187 endif
188
189 endef
190
191 # In principle, each host can build each target:
192 $(foreach source,$(CFG_HOST),                           \
193  $(foreach target,$(CFG_TARGET),                        \
194   $(eval $(call TARGET_STAGE_N,0,$(target),$(source)))          \
195   $(eval $(call TARGET_STAGE_N,1,$(target),$(source)))          \
196   $(eval $(call TARGET_STAGE_N,2,$(target),$(source)))          \
197   $(eval $(call TARGET_STAGE_N,3,$(target),$(source)))))