]> git.lizzy.rs Git - rust.git/blob - mk/target.mk
3c7ffd83d968197f7c5ff6fff1852f326d5047a6
[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_LIBSYNTAX_$(3)): \
98                 $$(LIBSYNTAX_CRATE) $$(LIBSYNTAX_INPUTS) \
99                 $$(TSREQ$(1)_T_$(2)_H_$(3))                     \
100                 $$(TSTDLIB_DEFAULT$(1)_T_$(2)_H_$(3))      \
101                 $$(TEXTRALIB_DEFAULT$(1)_T_$(2)_H_$(3)) \
102                 $$(TLIBRUSTUV_DEFAULT$(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 $$@),$(LIBSYNTAX_GLOB_$(2)),$$(notdir $$@))
106         $$(call REMOVE_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBSYNTAX_RGLOB_$(2)),$$(notdir $$@))
107         $$(STAGE$(1)_T_$(2)_H_$(3)) $$(WFLAGS_ST$(1)) $(BORROWCK) --out-dir $$(@D) $$< && touch $$@
108         $$(call LIST_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBSYNTAX_GLOB_$(2)),$$(notdir $$@))
109         $$(call LIST_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBSYNTAX_RGLOB_$(2)),$$(notdir $$@))
110
111 # Only build the compiler for host triples
112 ifneq ($$(findstring $(2),$$(CFG_HOST)),)
113
114 $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_RUSTLLVM_$(3)): \
115                 $(2)/rustllvm/$(CFG_RUSTLLVM_$(3)) \
116                 | $$(TLIB$(1)_T_$(2)_H_$(3))/ \
117                   $(SNAPSHOT_RUSTC_POST_CLEANUP)
118         @$$(call E, cp: $$@)
119         $$(Q)cp $$< $$@
120
121 $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBRUSTC_$(3)): CFG_COMPILER = $(2)
122 $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBRUSTC_$(3)):                \
123                 $$(COMPILER_CRATE) $$(COMPILER_INPUTS)          \
124                 $(S)src/librustc/lib/llvmdeps.rs                \
125                 $$(TSREQ$(1)_T_$(2)_H_$(3)) \
126                 $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBSYNTAX_$(3)) \
127                 $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_RUSTLLVM_$(3)) \
128                 | $$(TLIB$(1)_T_$(2)_H_$(3))/
129         @$$(call E, compile_and_link: $$@)
130         $$(call REMOVE_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBRUSTC_GLOB_$(2)),$$(notdir $$@))
131         $$(call REMOVE_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBRUSTC_RGLOB_$(2)),$$(notdir $$@))
132         $$(STAGE$(1)_T_$(2)_H_$(3)) $$(WFLAGS_ST$(1)) \
133             -L "$$(LLVM_LIBDIR_$(2))" \
134             --out-dir $$(@D) $$< && touch $$@
135         $$(call LIST_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBRUSTC_GLOB_$(2)),$$(notdir $$@))
136         $$(call LIST_ALL_OLD_GLOB_MATCHES_EXCEPT,$$(dir $$@),$(LIBRUSTC_RGLOB_$(2)),$$(notdir $$@))
137
138 # NOTE: after the next snapshot remove these '-L' flags
139 $$(TBIN$(1)_T_$(2)_H_$(3))/rustc$$(X_$(3)):                     \
140                 $$(DRIVER_CRATE)                                \
141                 $$(TSREQ$(1)_T_$(2)_H_$(3)) \
142                 $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBRUSTC_$(3)) \
143                 | $$(TBIN$(1)_T_$(2)_H_$(3))/
144         @$$(call E, compile_and_link: $$@)
145         $$(STAGE$(1)_T_$(2)_H_$(3)) --cfg rustc -o $$@ $$< \
146                 -L $$(UV_SUPPORT_DIR_$(2)) \
147                 -L $$(dir $$(LIBUV_LIB_$(2)))
148 ifdef CFG_ENABLE_PAX_FLAGS
149         @$$(call E, apply PaX flags: $$@)
150         @"$(CFG_PAXCTL)" -cm "$$@"
151 endif
152
153 endif
154
155 $$(TBIN$(1)_T_$(2)_H_$(3))/:
156         mkdir -p $$@
157
158 ifneq ($(CFG_LIBDIR),bin)
159 $$(TLIB$(1)_T_$(2)_H_$(3))/:
160         mkdir -p $$@
161 endif
162
163 endef
164
165 # In principle, each host can build each target:
166 $(foreach source,$(CFG_HOST),                           \
167  $(foreach target,$(CFG_TARGET),                        \
168   $(eval $(call TARGET_STAGE_N,0,$(target),$(source)))          \
169   $(eval $(call TARGET_STAGE_N,1,$(target),$(source)))          \
170   $(eval $(call TARGET_STAGE_N,2,$(target),$(source)))          \
171   $(eval $(call TARGET_STAGE_N,3,$(target),$(source)))))