]> git.lizzy.rs Git - rust.git/blob - Makefile.in
auto merge of #8357 : omasanori/rust/cleanup, r=alexcrichton
[rust.git] / Makefile.in
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 # An explanation of how the build is structured:
12 #
13 # There are multiple build stages (0-3) needed to verify that the
14 # compiler is properly self-hosting. Each stage is divided between
15 # 'host' artifacts and 'target' artifacts, where the stageN host
16 # compiler builds artifacts for 1 or more stageN target architectures.
17 # Once the stageN target compiler has been built for the host
18 # architecture it is promoted (copied) to a stageN+1 host artifact.
19 #
20 # The stage3 host compiler is a compiler that successfully builds
21 # itself and should (in theory) be bitwise identical to the stage2
22 # host compiler. The process is bootstrapped using a stage0 host
23 # compiler downloaded from a previous snapshot.
24 #
25 # At no time should stageN artifacts be interacting with artifacts
26 # from other stages. For consistency, we use the 'promotion' logic
27 # for all artifacts, even those that don't make sense on non-host
28 # architectures.
29 #
30 # The directory layout for a stage is intended to match the layout
31 # of the installed compiler, and looks like the following:
32 #
33 # stageN - this is the system root, corresponding to, e.g. /usr
34 #   bin - binaries compiled for the host
35 #   lib - libraries used by the host compiler
36 #     rustc - rustc's own place to organize libraries
37 #       $(target) - target-specific artifacts
38 #         bin - binaries for target architectures
39 #         lib - libraries for target architectures
40 #
41 # A note about host libraries:
42 #
43 # The only libraries that get promoted to stageN/lib are those needed
44 # by rustc. In general, rust programs, even those compiled for the
45 # host architecture will use libraries from the target
46 # directories. This gives rust some freedom to experiment with how
47 # libraries are managed and versioned without polluting the common
48 # areas of the filesystem.
49 #
50 # General rust binaries may stil live in the host bin directory; they
51 # will just link against the libraries in the target lib directory.
52 #
53 # Admittedly this is a little convoluted.
54
55 STAGES = 0 1 2 3
56
57 ######################################################################
58 # Residual auto-configuration
59 ######################################################################
60
61 # Recursive wildcard function
62 # http://blog.jgc.org/2011/07/gnu-make-recursive-wildcard-function.html
63 rwildcard=$(foreach d,$(wildcard $1*),$(call rwildcard,$d/,$2) \
64   $(filter $(subst *,%,$2),$d))
65
66 include config.mk
67
68 # We track all of the object files we might build so that we can find
69 # and include all of the .d files in one fell swoop.
70 ALL_OBJ_FILES :=
71
72 MKFILE_DEPS := config.stamp $(call rwildcard,$(CFG_SRC_DIR)mk/,*)
73 NON_BUILD_HOST_TRIPLES = $(filter-out $(CFG_BUILD_TRIPLE),$(CFG_HOST_TRIPLES))
74 NON_BUILD_TARGET_TRIPLES = $(filter-out $(CFG_BUILD_TRIPLE),$(CFG_TARGET_TRIPLES))
75
76 ifneq ($(MAKE_RESTARTS),)
77 CFG_INFO := $(info cfg: make restarts: $(MAKE_RESTARTS))
78 endif
79
80 CFG_INFO := $(info cfg: build triple $(CFG_BUILD_TRIPLE))
81 CFG_INFO := $(info cfg: host triples $(CFG_HOST_TRIPLES))
82 CFG_INFO := $(info cfg: target triples $(CFG_TARGET_TRIPLES))
83
84 ifneq ($(wildcard $(NON_BUILD_HOST_TRIPLES)),)
85 CFG_INFO := $(info cfg: non-build host triples $(NON_BUILD_HOST_TRIPLES))
86 endif
87 ifneq ($(wildcard $(NON_BUILD_TARGET_TRIPLES)),)
88 CFG_INFO := $(info cfg: non-build target triples $(NON_BUILD_TARGET_TRIPLES))
89 endif
90
91 CFG_RUSTC_FLAGS := $(RUSTFLAGS)
92 CFG_GCCISH_CFLAGS :=
93 CFG_GCCISH_LINK_FLAGS :=
94
95 ifdef CFG_DISABLE_OPTIMIZE
96   $(info cfg: disabling rustc optimization (CFG_DISABLE_OPTIMIZE))
97   CFG_RUSTC_FLAGS +=
98 else
99   CFG_RUSTC_FLAGS += -O
100 endif
101
102 ifdef CFG_ENABLE_DEBUG
103   $(info cfg: enabling more debugging (CFG_ENABLE_DEBUG))
104   CFG_RUSTC_FLAGS += --cfg debug
105   CFG_GCCISH_CFLAGS += -DRUST_DEBUG
106 else
107   CFG_GCCISH_CFLAGS += -DRUST_NDEBUG
108 endif
109
110 ifdef SAVE_TEMPS
111   CFG_RUSTC_FLAGS += --save-temps
112 endif
113 ifdef ASM_COMMENTS
114   CFG_RUSTC_FLAGS += -Z asm-comments
115 endif
116 ifdef TIME_PASSES
117   CFG_RUSTC_FLAGS += -Z time-passes
118 endif
119 ifdef TIME_LLVM_PASSES
120   CFG_RUSTC_FLAGS += -Z time-llvm-passes
121 endif
122 ifdef TRACE
123   CFG_RUSTC_FLAGS += -Z trace
124 endif
125 ifndef DEBUG_BORROWS
126   RUSTFLAGS_STAGE1 += -Z no-debug-borrows
127   RUSTFLAGS_STAGE2 += -Z no-debug-borrows
128 endif
129
130 # platform-specific auto-configuration
131 include $(CFG_SRC_DIR)mk/platform.mk
132
133 # Run the stage1/2 compilers under valgrind
134 ifdef VALGRIND_COMPILE
135   CFG_VALGRIND_COMPILE :=$(CFG_VALGRIND)
136 else
137   CFG_VALGRIND_COMPILE :=
138 endif
139
140 # version-string calculation
141 CFG_GIT_DIR := $(CFG_SRC_DIR).git
142 CFG_RELEASE = 0.8-pre
143 CFG_VERSION = $(CFG_RELEASE)
144 # windows exe's need numeric versions - don't use anything but
145 # numbers and dots here
146 CFG_VERSION_WIN = 0.8
147
148 ifneq ($(wildcard $(CFG_GIT)),)
149 ifneq ($(wildcard $(CFG_GIT_DIR)),)
150     CFG_VERSION += $(shell git --git-dir=$(CFG_GIT_DIR) log -1 \
151                      --pretty=format:'(%h %ci)')
152     CFG_VER_HASH = $(shell git --git-dir=$(CFG_GIT_DIR) rev-parse HEAD)
153 endif
154 endif
155
156 ifdef CFG_ENABLE_VALGRIND
157   $(info cfg: enabling valgrind (CFG_ENABLE_VALGRIND))
158 else
159   CFG_VALGRIND :=
160 endif
161 ifdef CFG_BAD_VALGRIND
162   $(info cfg: disabling valgrind due to its unreliability on this platform)
163   CFG_VALGRIND :=
164 endif
165
166
167 ######################################################################
168 # Target-and-rule "utility variables"
169 ######################################################################
170
171 ifdef VERBOSE
172   Q :=
173   E =
174 else
175   Q := @
176   E = echo $(1)
177 endif
178
179 S := $(CFG_SRC_DIR)
180
181 define DEF_X
182 X_$(1) := $(CFG_EXE_SUFFIX_$(1))
183 endef
184 $(foreach target,$(CFG_TARGET_TRIPLES),\
185   $(eval $(call DEF_X,$(target))))
186
187 # Look in doc and src dirs.
188 VPATH := $(S)doc $(S)src
189
190 # "Source" files we generate in builddir along the way.
191 GENERATED :=
192
193 # Delete the built-in rules.
194 .SUFFIXES:
195 %:: %,v
196 %:: RCS/%,v
197 %:: RCS/%
198 %:: s.%
199 %:: SCCS/s.%
200
201
202 ######################################################################
203 # Crates
204 ######################################################################
205
206 define DEF_LIBS
207
208 CFG_RUNTIME_$(1) :=$(call CFG_LIB_NAME_$(1),rustrt)
209 CFG_RUSTLLVM_$(1) :=$(call CFG_LIB_NAME_$(1),rustllvm)
210 CFG_STDLIB_$(1) :=$(call CFG_LIB_NAME_$(1),std)
211 CFG_EXTRALIB_$(1) :=$(call CFG_LIB_NAME_$(1),extra)
212 CFG_LIBRUSTC_$(1) :=$(call CFG_LIB_NAME_$(1),rustc)
213 CFG_LIBSYNTAX_$(1) :=$(call CFG_LIB_NAME_$(1),syntax)
214 CFG_LIBRUSTPKG_$(1) :=$(call CFG_LIB_NAME_$(1),rustpkg)
215 CFG_LIBRUSTDOC_$(1) :=$(call CFG_LIB_NAME_$(1),rustdoc)
216 CFG_LIBRUSTI_$(1) :=$(call CFG_LIB_NAME_$(1),rusti)
217 CFG_LIBRUST_$(1) :=$(call CFG_LIB_NAME_$(1),rust)
218
219 EXTRALIB_GLOB_$(1) :=$(call CFG_LIB_GLOB_$(1),extra)
220 STDLIB_GLOB_$(1) :=$(call CFG_LIB_GLOB_$(1),std)
221 LIBRUSTC_GLOB_$(1) :=$(call CFG_LIB_GLOB_$(1),rustc)
222 LIBSYNTAX_GLOB_$(1) :=$(call CFG_LIB_GLOB_$(1),syntax)
223 LIBRUSTPKG_GLOB_$(1) :=$(call CFG_LIB_GLOB_$(1),rustpkg)
224 LIBRUSTDOC_GLOB_$(1) :=$(call CFG_LIB_GLOB_$(1),rustdoc)
225 LIBRUSTI_GLOB_$(1) :=$(call CFG_LIB_GLOB_$(1),rusti)
226 LIBRUST_GLOB_$(1) :=$(call CFG_LIB_GLOB_$(1),rust)
227 EXTRALIB_DSYM_GLOB_$(1) :=$(call CFG_LIB_DSYM_GLOB_$(1),extra)
228 STDLIB_DSYM_GLOB_$(1) :=$(call CFG_LIB_DSYM_GLOB_$(1),std)
229 LIBRUSTC_DSYM_GLOB_$(1) :=$(call CFG_LIB_DSYM_GLOB_$(1),rustc)
230 LIBSYNTAX_DSYM_GLOB_$(1) :=$(call CFG_LIB_DSYM_GLOB_$(1),syntax)
231 LIBRUSTPKG_DSYM_GLOB_$(1) :=$(call CFG_LIB_DSYM_GLOB_$(1),rustpkg)
232 LIBRUSTDOC_DSYM_GLOB_$(1) :=$(call CFG_LIB_DSYM_GLOB_$(1),rustdoc)
233 LIBRUSTI_DSYM_GLOB_$(1) :=$(call CFG_LIB_DSYM_GLOB_$(1),rusti)
234 LIBRUST_DSYM_GLOB_$(1) :=$(call CFG_LIB_DSYM_GLOB_$(1),rust)
235
236 endef
237
238 # $(1) is the path for directory to match against
239 # $(2) is the glob to use in the match
240 # $(3) is filename (usually the target being created) to filter out from match
241 #      (i.e. filename is not out-of-date artifact from prior Rust version/build)
242 #
243 # Note that a common bug is to accidentally construct the glob denoted
244 # by $(2) with a space character prefix, which invalidates the
245 # construction $(1)$(2).
246 define CHECK_FOR_OLD_GLOB_MATCHES_EXCEPT
247   $(Q)MATCHES="$(filter-out %$(3),$(wildcard $(1)/$(2)))"; if [ -n "$$MATCHES" ] ; then echo "Warning: there are previous" \'$(2)\' "libraries:" $$MATCHES; fi
248 endef
249
250 # Same interface as above, but deletes rather than just listing the files.
251 define REMOVE_ALL_OLD_GLOB_MATCHES_EXCEPT
252   $(Q)MATCHES="$(filter-out %$(3),$(wildcard $(1)/$(2)))"; if [ -n "$$MATCHES" ] ; then echo "Warning: removing previous" \'$(2)\' "libraries:" $$MATCHES; rm $$MATCHES ; fi
253 endef
254
255 # We use a different strategy for LIST_ALL_OLD_GLOB_MATCHES_EXCEPT
256 # than in the macros above because it needs the result of running the
257 # `ls` command after other rules in the command list have run; the
258 # macro-expander for $(wildcard ...) would deliver its results too
259 # soon. (This is in contrast to the macros above, which are meant to
260 # be run at the outset of a command list in a rule.)
261 ifdef VERBOSE
262 define LIST_ALL_OLD_GLOB_MATCHES_EXCEPT
263   @echo "Info: now are following matches for" '$(2)' "libraries:"
264   @( cd $(1) && ( ls $(2) 2>/dev/null || true ) | grep -v $(3) || true )
265 endef
266 else
267 define LIST_ALL_OLD_GLOB_MATCHES_EXCEPT
268 endef
269 endif
270
271 $(foreach target,$(CFG_TARGET_TRIPLES),\
272   $(eval $(call DEF_LIBS,$(target))))
273
274 ######################################################################
275 # Standard library variables
276 ######################################################################
277
278 STDLIB_CRATE := $(S)src/libstd/std.rs
279 STDLIB_INPUTS := $(wildcard $(addprefix $(S)src/libstd/,        \
280                                            *.rs */*.rs */*/*rs */*/*/*rs))
281
282 ######################################################################
283 # Extra library variables
284 ######################################################################
285
286 EXTRALIB_CRATE := $(S)src/libextra/extra.rs
287 EXTRALIB_INPUTS := $(wildcard $(addprefix $(S)src/libextra/,          \
288                                           *.rs */*.rs))
289
290 ######################################################################
291 # rustc crate variables
292 ######################################################################
293
294 COMPILER_CRATE := $(S)src/librustc/rustc.rs
295 COMPILER_INPUTS := $(wildcard $(addprefix $(S)src/librustc/,      \
296                            *.rs */*.rs */*/*.rs */*/*/*.rs))
297
298 LIBSYNTAX_CRATE := $(S)src/libsyntax/syntax.rs
299 LIBSYNTAX_INPUTS := $(wildcard $(addprefix $(S)src/libsyntax/, \
300                            *.rs */*.rs */*/*.rs */*/*/*.rs))
301
302 DRIVER_CRATE := $(S)src/driver/driver.rs
303
304 ######################################################################
305 # LLVM macros
306 ######################################################################
307
308 # FIXME: x86-ism
309 LLVM_COMPONENTS=x86 arm mips ipo bitreader bitwriter linker asmparser jit mcjit \
310                 interpreter instrumentation
311
312 define DEF_LLVM_VARS
313 # The configure script defines these variables with the target triples
314 # separated by Z. This defines new ones with the expected format.
315 CFG_LLVM_BUILD_DIR_$(1):=$$(CFG_LLVM_BUILD_DIR_$(subst -,_,$(1)))
316 CFG_LLVM_INST_DIR_$(1):=$$(CFG_LLVM_INST_DIR_$(subst -,_,$(1)))
317
318 # Any rules that depend on LLVM should depend on LLVM_CONFIG
319 LLVM_CONFIG_$(1):=$$(CFG_LLVM_INST_DIR_$(1))/bin/llvm-config$$(X_$(1))
320 LLVM_MC_$(1):=$$(CFG_LLVM_INST_DIR_$(1))/bin/llvm-mc$$(X_$(1))
321 LLVM_VERSION_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --version)
322 LLVM_BINDIR_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --bindir)
323 LLVM_INCDIR_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --includedir)
324 LLVM_LIBDIR_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --libdir)
325 LLVM_LIBS_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --libs $$(LLVM_COMPONENTS))
326 LLVM_LDFLAGS_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --ldflags)
327 # On FreeBSD, it may search wrong headers (that are for pre-installed LLVM),
328 # so we replace -I with -iquote to ensure that it searches bundled LLVM first.
329 LLVM_CXXFLAGS_$(1)=$$(subst -I, -iquote , $$(shell "$$(LLVM_CONFIG_$(1))" --cxxflags))
330 LLVM_HOST_TRIPLE_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --host-target)
331
332 LLVM_AS_$(1)=$$(CFG_LLVM_INST_DIR_$(1))/bin/llvm-as$$(X_$(1))
333 LLC_$(1)=$$(CFG_LLVM_INST_DIR_$(1))/bin/llc$$(X_$(1))
334
335 endef
336
337 $(foreach host,$(CFG_HOST_TRIPLES), \
338  $(eval $(call DEF_LLVM_VARS,$(host))))
339
340 ######################################################################
341 # Exports for sub-utilities
342 ######################################################################
343
344 # Note that any variable that re-configure should pick up needs to be
345 # exported
346
347 export CFG_SRC_DIR
348 export CFG_BUILD_DIR
349 export CFG_VERSION
350 export CFG_VERSION_WIN
351 export CFG_BUILD_TRIPLE
352 export CFG_LLVM_ROOT
353 export CFG_ENABLE_MINGW_CROSS
354 export CFG_PREFIX
355 export CFG_LIBDIR
356
357 ######################################################################
358 # Subprograms
359 ######################################################################
360
361 ######################################################################
362 # Per-stage targets and runner
363 ######################################################################
364
365 define SREQ
366 # $(1) is the stage number
367 # $(2) is the target triple
368 # $(3) is the host triple
369
370 # Destinations of artifacts for the host compiler
371 HROOT$(1)_H_$(3) = $(3)/stage$(1)
372 HBIN$(1)_H_$(3) = $$(HROOT$(1)_H_$(3))/bin
373 HLIB$(1)_H_$(3) = $$(HROOT$(1)_H_$(3))/$$(CFG_LIBDIR)
374
375 # Destinations of artifacts for target architectures
376 TROOT$(1)_T_$(2)_H_$(3) = $$(HLIB$(1)_H_$(3))/rustc/$(2)
377 TBIN$(1)_T_$(2)_H_$(3) = $$(TROOT$(1)_T_$(2)_H_$(3))/bin
378 TLIB$(1)_T_$(2)_H_$(3) = $$(TROOT$(1)_T_$(2)_H_$(3))/$$(CFG_LIBDIR)
379
380 # The name of the standard and extra libraries used by rustc
381 ifdef CFG_DISABLE_SHAREDSTD
382   HSTDLIB_DEFAULT$(1)_H_$(3) = \
383     $$(HLIB$(1)_H_$(3))/libstd.rlib
384   TSTDLIB_DEFAULT$(1)_T_$(2)_H_$(3) = \
385     $$(TLIB$(1)_T_$(2)_H_$(3))/libstd.rlib
386
387   HEXTRALIB_DEFAULT$(1)_H_$(3) = \
388     $$(HLIB$(1)_H_$(3))/libextra.rlib
389   TEXTRALIB_DEFAULT$(1)_T_$(2)_H_$(3) = \
390     $$(TLIB$(1)_T_$(2)_H_$(3))/libextra.rlib
391
392   HLIBRUSTC_DEFAULT$(1)_H_$(3) = \
393     $$(HLIB$(1)_H_$(3))/librustc.rlib
394   TLIBRUSTC_DEFAULT$(1)_T_$(2)_H_$(3) = \
395     $$(TLIB$(1)_T_$(2)_H_$(3))/librustc.rlib
396 else
397   HSTDLIB_DEFAULT$(1)_H_$(3) = \
398     $$(HLIB$(1)_H_$(3))/$(CFG_STDLIB_$(3))
399   TSTDLIB_DEFAULT$(1)_T_$(2)_H_$(3) = \
400     $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_STDLIB_$(2))
401
402   HEXTRALIB_DEFAULT$(1)_H_$(3) = \
403     $$(HLIB$(1)_H_$(3))/$(CFG_EXTRALIB_$(3))
404   TEXTRALIB_DEFAULT$(1)_T_$(2)_H_$(3) = \
405     $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_EXTRALIB_$(2))
406
407   HLIBRUSTC_DEFAULT$(1)_H_$(3) = \
408     $$(HLIB$(1)_H_$(3))/$(CFG_LIBRUSTC_$(3))
409   TLIBRUSTC_DEFAULT$(1)_T_$(2)_H_$(3) = \
410     $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBRUSTC_$(2))
411 endif
412
413 # Preqrequisites for using the stageN compiler
414 HSREQ$(1)_H_$(3) = \
415         $$(HBIN$(1)_H_$(3))/rustc$$(X_$(3)) \
416         $$(HLIB$(1)_H_$(3))/$(CFG_RUNTIME_$(3)) \
417         $$(HLIB$(1)_H_$(3))/$(CFG_RUSTLLVM_$(3)) \
418         $$(HSTDLIB_DEFAULT$(1)_H_$(3)) \
419         $$(HEXTRALIB_DEFAULT$(1)_H_$(3)) \
420         $$(HLIBSYNTAX_DEFAULT$(1)_H_$(3)) \
421         $$(HLIBRUSTC_DEFAULT$(1)_H_$(3)) \
422         $$(MKFILE_DEPS)
423
424 # Prerequisites for using the stageN compiler to build target artifacts
425 TSREQ$(1)_T_$(2)_H_$(3) = \
426         $$(HSREQ$(1)_H_$(3)) \
427         $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_RUNTIME_$(2)) \
428         $$(TLIB$(1)_T_$(2)_H_$(3))/libmorestack.a
429
430 # Prerequisites for a working stageN compiler and libraries, for a specific target
431 SREQ$(1)_T_$(2)_H_$(3) = \
432         $$(TSREQ$(1)_T_$(2)_H_$(3)) \
433         $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_STDLIB_$(2)) \
434         $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_EXTRALIB_$(2))
435
436 # Prerequisites for a working stageN compiler and libraries, for a specific target
437 CSREQ$(1)_T_$(2)_H_$(3) = \
438         $$(TSREQ$(1)_T_$(2)_H_$(3)) \
439         $$(HBIN$(1)_H_$(3))/rustpkg$$(X_$(3)) \
440         $$(HBIN$(1)_H_$(3))/rustdoc$$(X_$(3)) \
441         $$(HBIN$(1)_H_$(3))/rusti$$(X_$(3)) \
442         $$(HBIN$(1)_H_$(3))/rust$$(X_$(3)) \
443         $$(HLIB$(1)_H_$(3))/$(CFG_LIBRUSTPKG_$(3)) \
444         $$(HLIB$(1)_H_$(3))/$(CFG_LIBRUSTDOC_$(3)) \
445         $$(HLIB$(1)_H_$(3))/$(CFG_LIBRUSTI_$(3)) \
446         $$(HLIB$(1)_H_$(3))/$(CFG_LIBRUST_$(3)) \
447         $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_STDLIB_$(2)) \
448         $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_EXTRALIB_$(2))  \
449         $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBSYNTAX_$(2))  \
450         $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBRUSTC_$(2)) \
451         $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBRUSTPKG_$(2)) \
452         $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBRUSTDOC_$(2)) \
453         $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBRUSTI_$(2)) \
454         $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBRUST_$(2))
455
456 ifeq ($(1),0)
457 # Don't run the the stage0 compiler under valgrind - that ship has sailed
458 CFG_VALGRIND_COMPILE$(1) =
459 else
460 CFG_VALGRIND_COMPILE$(1) = $$(CFG_VALGRIND_COMPILE)
461 endif
462
463 # Add RUSTFLAGS_STAGEN values to the build command
464 EXTRAFLAGS_STAGE$(1) = $$(RUSTFLAGS_STAGE$(1))
465
466 CFGFLAG$(1)_T_$(2)_H_$(3) = stage$(1)
467
468 # Pass --cfg stage0 only for the build->host part of stage0;
469 # if you're building a cross config, the host->* parts are
470 # effectively stage1, since it uses the just-built stage0.
471 ifeq ($(1),0)
472 ifneq ($(strip $(CFG_BUILD_TRIPLE)),$(strip $(3)))
473 CFGFLAG$(1)_T_$(2)_H_$(3) = stage1
474 endif
475 endif
476
477 STAGE$(1)_T_$(2)_H_$(3) :=                                              \
478         $$(Q)$$(call CFG_RUN_TARG_$(3),$(1),                            \
479                 $$(CFG_VALGRIND_COMPILE$(1))                    \
480                 $$(HBIN$(1)_H_$(3))/rustc$$(X_$(3))                     \
481                 --cfg $$(CFGFLAG$(1)_T_$(2)_H_$(3))                     \
482                 $$(CFG_RUSTC_FLAGS) $$(EXTRAFLAGS_STAGE$(1)) --target=$(2)) \
483                 $$(RUSTC_FLAGS_$(2))
484
485 PERF_STAGE$(1)_T_$(2)_H_$(3) :=                                 \
486         $$(Q)$$(call CFG_RUN_TARG_$(3),$(1),                            \
487                 $$(CFG_PERF_TOOL)                                               \
488                 $$(HBIN$(1)_H_$(3))/rustc$$(X_$(3))                     \
489                 --cfg $$(CFGFLAG$(1)_T_$(2)_H_$(3))                     \
490                 $$(CFG_RUSTC_FLAGS) $$(EXTRAFLAGS_STAGE$(1)) --target=$(2)) \
491                 $$(RUSTC_FLAGS_$(2))
492
493 endef
494
495 $(foreach build,$(CFG_HOST_TRIPLES), \
496  $(eval $(foreach target,$(CFG_TARGET_TRIPLES), \
497   $(eval $(foreach stage,$(STAGES), \
498    $(eval $(call SREQ,$(stage),$(target),$(build))))))))
499
500 ######################################################################
501 # rustc-H-targets
502 #
503 # Builds a functional Rustc for the given host.
504 ######################################################################
505
506 define DEF_RUSTC_STAGE_TARGET
507 # $(1) == architecture
508 # $(2) == stage
509
510 rustc-stage$(2)-H-$(1):                                                 \
511         $$(foreach target,$$(CFG_TARGET_TRIPLES),       \
512                 $$(SREQ$(2)_T_$$(target)_H_$(1)))
513
514 endef
515
516 $(foreach host,$(CFG_HOST_TRIPLES),                                                     \
517  $(eval $(foreach stage,1 2 3,                                                                  \
518   $(eval $(call DEF_RUSTC_STAGE_TARGET,$(host),$(stage))))))
519
520 rustc-stage1: rustc-stage1-H-$(CFG_BUILD_TRIPLE)
521 rustc-stage2: rustc-stage2-H-$(CFG_BUILD_TRIPLE)
522 rustc-stage3: rustc-stage3-H-$(CFG_BUILD_TRIPLE)
523
524 define DEF_RUSTC_TARGET
525 # $(1) == architecture
526
527 rustc-H-$(1): rustc-stage2-H-$(1)
528 endef
529
530 $(foreach host,$(CFG_TARGET_TRIPLES),                   \
531  $(eval $(call DEF_RUSTC_TARGET,$(host))))
532
533 rustc-stage1: rustc-stage1-H-$(CFG_BUILD_TRIPLE)
534 rustc-stage2: rustc-stage2-H-$(CFG_BUILD_TRIPLE)
535 rustc-stage3: rustc-stage3-H-$(CFG_BUILD_TRIPLE)
536 rustc: rustc-H-$(CFG_BUILD_TRIPLE)
537
538 rustc-H-all: $(foreach host,$(CFG_HOST_TRIPLES),rustc-H-$(host))
539
540 ######################################################################
541 # Entrypoint rule
542 ######################################################################
543
544 .DEFAULT_GOAL := all
545
546 ifneq ($(CFG_IN_TRANSITION),)
547
548 CFG_INFO := $(info cfg:)
549 CFG_INFO := $(info cfg: *** compiler is in snapshot transition ***)
550 CFG_INFO := $(info cfg: *** stage2 and later will not be built ***)
551 CFG_INFO := $(info cfg:)
552
553 #XXX This is surely busted
554 all: $(SREQ1$(CFG_BUILD_TRIPLE)) $(GENERATED) docs
555
556 else
557
558 define ALL_TARGET_N
559 ifneq ($$(findstring $(1),$$(CFG_HOST_TRIPLES)),)
560 # This is a host
561 all-target-$(1)-host-$(2): $$(CSREQ2_T_$(1)_H_$(2))
562 else
563 # This is a target only
564 all-target-$(1)-host-$(2): $$(SREQ2_T_$(1)_H_$(2))
565 endif
566 endef
567
568 $(foreach target,$(CFG_TARGET_TRIPLES), \
569  $(foreach host,$(CFG_HOST_TRIPLES), \
570  $(eval $(call ALL_TARGET_N,$(target),$(host)))))
571
572 ALL_TARGET_RULES = $(foreach target,$(CFG_TARGET_TRIPLES), \
573         $(foreach host,$(CFG_HOST_TRIPLES), \
574  all-target-$(target)-host-$(host)))
575
576 all: rustllvm/llvm-auto-clean-stamp \
577      $(ALL_TARGET_RULES) $(GENERATED) docs
578
579 endif
580
581 # This is used to independently force an LLVM clean rebuild
582 # when we changed something not otherwise captured by builtin
583 # dependencies. In these cases, commit a change that touches
584 # the stamp in the source dir.
585 rustllvm/llvm-auto-clean-stamp: $(S)src/rustllvm/llvm-auto-clean-trigger
586         $(Q)$(MAKE) clean-llvm
587         touch $@
588
589
590 ######################################################################
591 # Re-configuration
592 ######################################################################
593
594 ifndef CFG_DISABLE_MANAGE_SUBMODULES
595 # This is a pretty expensive operation but I don't see any way to avoid it
596 NEED_GIT_RECONFIG=$(shell cd "$(CFG_SRC_DIR)" && "$(CFG_GIT)" submodule status | grep -c '^\(+\|-\)')
597 else
598 NEED_GIT_RECONFIG=0
599 endif
600
601 ifeq ($(NEED_GIT_RECONFIG),0)
602 else
603 # If the submodules have changed then always execute config.mk
604 .PHONY: config.stamp
605 endif
606
607 Makefile config.mk: config.stamp
608
609 config.stamp: $(S)configure $(S)Makefile.in $(S)src/snapshots.txt
610         @$(call E, cfg: reconfiguring)
611         $(Q)$(S)configure $(CFG_CONFIGURE_ARGS)
612
613
614 ######################################################################
615 # Primary-target makefiles
616 ######################################################################
617
618 include $(CFG_SRC_DIR)mk/target.mk
619 include $(CFG_SRC_DIR)mk/host.mk
620 include $(CFG_SRC_DIR)mk/stage0.mk
621 include $(CFG_SRC_DIR)mk/rt.mk
622 include $(CFG_SRC_DIR)mk/rustllvm.mk
623 include $(CFG_SRC_DIR)mk/tools.mk
624 include $(CFG_SRC_DIR)mk/docs.mk
625 include $(CFG_SRC_DIR)mk/llvm.mk
626
627 ######################################################################
628 # Secondary makefiles, conditionalized for speed
629 ######################################################################
630
631 ifneq ($(strip $(findstring dist,$(MAKECMDGOALS))   \
632                $(findstring check,$(MAKECMDGOALS))  \
633                $(findstring test,$(MAKECMDGOALS))   \
634                $(findstring tidy,$(MAKECMDGOALS))   \
635                $(findstring clean,$(MAKECMDGOALS))),)
636   CFG_INFO := $(info cfg: including dist rules)
637   include $(CFG_SRC_DIR)mk/dist.mk
638 endif
639
640 ifneq ($(strip $(findstring snap,$(MAKECMDGOALS))   \
641                $(findstring clean,$(MAKECMDGOALS))),)
642   CFG_INFO := $(info cfg: including snap rules)
643   include $(CFG_SRC_DIR)mk/snap.mk
644 endif
645
646 ifneq ($(findstring reformat,$(MAKECMDGOALS)),)
647   CFG_INFO := $(info cfg: including reformat rules)
648   include $(CFG_SRC_DIR)mk/pp.mk
649 endif
650
651 ifneq ($(strip $(findstring check,$(MAKECMDGOALS)) \
652                $(findstring test,$(MAKECMDGOALS))  \
653                $(findstring perf,$(MAKECMDGOALS))  \
654                $(findstring tidy,$(MAKECMDGOALS))),)
655   CFG_INFO := $(info cfg: including test rules)
656   include $(CFG_SRC_DIR)mk/tests.mk
657 endif
658
659 ifneq ($(findstring perf,$(MAKECMDGOALS)),)
660   CFG_INFO := $(info cfg: including perf rules)
661   include $(CFG_SRC_DIR)mk/perf.mk
662 endif
663
664 ifneq ($(findstring clean,$(MAKECMDGOALS)),)
665   CFG_INFO := $(info cfg: including clean rules)
666   include $(CFG_SRC_DIR)mk/clean.mk
667 endif
668
669 ifneq ($(findstring install,$(MAKECMDGOALS)),)
670   ifdef DESTDIR
671     CFG_INFO := $(info cfg: setting CFG_PREFIX via DESTDIR, $(DESTDIR)/$(CFG_PREFIX))
672     CFG_PREFIX:=$(DESTDIR)/$(CFG_PREFIX)
673     export CFG_PREFIX
674   endif
675
676   CFG_INFO := $(info cfg: including install rules)
677   include $(CFG_SRC_DIR)mk/install.mk
678 endif
679
680 ifneq ($(strip $(findstring TAGS.emacs,$(MAKECMDGOALS)) \
681                $(findstring TAGS.vi,$(MAKECMDGOALS))),)
682   CFG_INFO := $(info cfg: including ctags rules)
683   include $(CFG_SRC_DIR)mk/ctags.mk
684 endif
685
686 # Find all of the .d files and include them to add information about
687 # header file dependencies.
688 ALL_DEP_FILES := $(ALL_OBJ_FILES:%.o=%.d)
689 -include $(ALL_DEP_FILES)