]> git.lizzy.rs Git - rust.git/blob - Makefile.in
auto merge of #11332 : sfackler/rust/de-at-se, r=huonw
[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 #     rustlib - 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 = $(filter-out $(CFG_BUILD),$(CFG_HOST))
74 NON_BUILD_TARGET = $(filter-out $(CFG_BUILD),$(CFG_TARGET))
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))
81 CFG_INFO := $(info cfg: host triples $(CFG_HOST))
82 CFG_INFO := $(info cfg: target triples $(CFG_TARGET))
83
84 ifneq ($(wildcard $(NON_BUILD_HOST)),)
85 CFG_INFO := $(info cfg: non-build host triples $(NON_BUILD_HOST))
86 endif
87 ifneq ($(wildcard $(NON_BUILD_TARGET)),)
88 CFG_INFO := $(info cfg: non-build target triples $(NON_BUILD_TARGET))
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   # The rtopt cfg turns off runtime sanity checks
100   CFG_RUSTC_FLAGS += -O --cfg rtopt
101 endif
102
103 ifdef CFG_DISABLE_DEBUG
104   CFG_RUSTC_FLAGS += --cfg ndebug
105   CFG_GCCISH_CFLAGS += -DRUST_NDEBUG
106 else
107   $(info cfg: enabling more debugging (CFG_ENABLE_DEBUG))
108   CFG_RUSTC_FLAGS += --cfg debug
109   CFG_GCCISH_CFLAGS += -DRUST_DEBUG
110 endif
111
112 ifdef SAVE_TEMPS
113   CFG_RUSTC_FLAGS += --save-temps
114 endif
115 ifdef ASM_COMMENTS
116   CFG_RUSTC_FLAGS += -Z asm-comments
117 endif
118 ifdef TIME_PASSES
119   CFG_RUSTC_FLAGS += -Z time-passes
120 endif
121 ifdef TIME_LLVM_PASSES
122   CFG_RUSTC_FLAGS += -Z time-llvm-passes
123 endif
124 ifdef TRACE
125   CFG_RUSTC_FLAGS += -Z trace
126 endif
127 ifndef DEBUG_BORROWS
128   RUSTFLAGS_STAGE0 += -Z no-debug-borrows
129   RUSTFLAGS_STAGE1 += -Z no-debug-borrows
130   RUSTFLAGS_STAGE2 += -Z no-debug-borrows
131 endif
132
133 # The executables crated during this compilation process have no need to include
134 # static copies of libstd and libextra. We also generate dynamic versions of all
135 # libraries, so in the interest of space, prefer dynamic linking throughout the
136 # compilation process.
137 #
138 # Note though that these flags are omitted for stage2+. This means that the
139 # snapshot will be generated with a statically linked rustc so we only have to
140 # worry about the distribution of one file (with its native dynamic
141 # dependencies)
142 RUSTFLAGS_STAGE0 += -Z prefer-dynamic
143 RUSTFLAGS_STAGE1 += -Z prefer-dynamic
144
145 # platform-specific auto-configuration
146 include $(CFG_SRC_DIR)mk/platform.mk
147
148 # Run the stage1/2 compilers under valgrind
149 ifdef VALGRIND_COMPILE
150   CFG_VALGRIND_COMPILE :=$(CFG_VALGRIND)
151 else
152   CFG_VALGRIND_COMPILE :=
153 endif
154
155 # version-string calculation
156 CFG_GIT_DIR := $(CFG_SRC_DIR).git
157 CFG_RELEASE = 0.9
158 CFG_VERSION = $(CFG_RELEASE)
159 # windows exe's need numeric versions - don't use anything but
160 # numbers and dots here
161 CFG_VERSION_WIN = 0.9
162
163 # since $(CFG_GIT) may contain spaces (especially on Windows),
164 # we need to escape them. (" " to r"\ ")
165 # Note that $(subst ...) ignores space after `subst`,
166 # so we use a hack: define $(SPACE) which contains space character.
167 SPACE :=
168 SPACE +=
169 ifneq ($(wildcard $(subst $(SPACE),\$(SPACE),$(CFG_GIT))),)
170 ifneq ($(wildcard $(subst $(SPACE),\$(SPACE),$(CFG_GIT_DIR))),)
171     CFG_VERSION += $(shell git --git-dir='$(CFG_GIT_DIR)' log -1 \
172                      --pretty=format:'(%h %ci)')
173     CFG_VER_HASH = $(shell git --git-dir='$(CFG_GIT_DIR)' rev-parse HEAD)
174 endif
175 endif
176
177 ifdef CFG_ENABLE_VALGRIND
178   $(info cfg: enabling valgrind (CFG_ENABLE_VALGRIND))
179 else
180   CFG_VALGRIND :=
181 endif
182 ifdef CFG_BAD_VALGRIND
183   $(info cfg: disabling valgrind due to its unreliability on this platform)
184   CFG_VALGRIND :=
185 endif
186
187
188 ######################################################################
189 # Target-and-rule "utility variables"
190 ######################################################################
191
192 ifdef VERBOSE
193   Q :=
194   E =
195 else
196   Q := @
197   E = echo $(1)
198 endif
199
200 S := $(CFG_SRC_DIR)
201
202 define DEF_X
203 X_$(1) := $(CFG_EXE_SUFFIX_$(1))
204 endef
205 $(foreach target,$(CFG_TARGET),\
206   $(eval $(call DEF_X,$(target))))
207
208 # Look in doc and src dirs.
209 VPATH := $(S)doc $(S)src
210
211 # "Source" files we generate in builddir along the way.
212 GENERATED :=
213
214 # Delete the built-in rules.
215 .SUFFIXES:
216 %:: %,v
217 %:: RCS/%,v
218 %:: RCS/%
219 %:: s.%
220 %:: SCCS/s.%
221
222
223 ######################################################################
224 # Crates
225 ######################################################################
226
227 define DEF_LIBS
228
229 CFG_RUNTIME_$(1) :=$(call CFG_STATIC_LIB_NAME_$(1),rustrt)
230 CFG_RUSTLLVM_$(1) :=$(call CFG_STATIC_LIB_NAME_$(1),rustllvm)
231 CFG_STDLIB_$(1) :=$(call CFG_LIB_NAME_$(1),std)
232 CFG_EXTRALIB_$(1) :=$(call CFG_LIB_NAME_$(1),extra)
233 CFG_LIBRUSTC_$(1) :=$(call CFG_LIB_NAME_$(1),rustc)
234 CFG_LIBSYNTAX_$(1) :=$(call CFG_LIB_NAME_$(1),syntax)
235 CFG_LIBRUSTPKG_$(1) :=$(call CFG_LIB_NAME_$(1),rustpkg)
236 CFG_LIBRUSTDOC_$(1) :=$(call CFG_LIB_NAME_$(1),rustdoc)
237 CFG_LIBRUSTUV_$(1) :=$(call CFG_LIB_NAME_$(1),rustuv)
238 CFG_LIBGREEN_$(1) :=$(call CFG_LIB_NAME_$(1),green)
239 CFG_LIBNATIVE_$(1) :=$(call CFG_LIB_NAME_$(1),native)
240
241 EXTRALIB_GLOB_$(1) :=$(call CFG_LIB_GLOB_$(1),extra)
242 STDLIB_GLOB_$(1) :=$(call CFG_LIB_GLOB_$(1),std)
243 LIBRUSTC_GLOB_$(1) :=$(call CFG_LIB_GLOB_$(1),rustc)
244 LIBSYNTAX_GLOB_$(1) :=$(call CFG_LIB_GLOB_$(1),syntax)
245 LIBRUSTPKG_GLOB_$(1) :=$(call CFG_LIB_GLOB_$(1),rustpkg)
246 LIBRUSTDOC_GLOB_$(1) :=$(call CFG_LIB_GLOB_$(1),rustdoc)
247 LIBRUSTUV_GLOB_$(1) :=$(call CFG_LIB_GLOB_$(1),rustuv)
248 LIBGREEN_GLOB_$(1) :=$(call CFG_LIB_GLOB_$(1),green)
249 LIBNATIVE_GLOB_$(1) :=$(call CFG_LIB_GLOB_$(1),native)
250 EXTRALIB_DSYM_GLOB_$(1) :=$(call CFG_LIB_DSYM_GLOB_$(1),extra)
251 STDLIB_DSYM_GLOB_$(1) :=$(call CFG_LIB_DSYM_GLOB_$(1),std)
252 LIBRUSTC_DSYM_GLOB_$(1) :=$(call CFG_LIB_DSYM_GLOB_$(1),rustc)
253 LIBSYNTAX_DSYM_GLOB_$(1) :=$(call CFG_LIB_DSYM_GLOB_$(1),syntax)
254 LIBRUSTPKG_DSYM_GLOB_$(1) :=$(call CFG_LIB_DSYM_GLOB_$(1),rustpkg)
255 LIBRUSTDOC_DSYM_GLOB_$(1) :=$(call CFG_LIB_DSYM_GLOB_$(1),rustdoc)
256 LIBRUSTUV_DSYM_GLOB_$(1) :=$(call CFG_LIB_DSYM_GLOB_$(1),rustuv)
257 LIBGREEN_DSYM_GLOB_$(1) :=$(call CFG_LIB_DSYM_GLOB_$(1),green)
258 LIBNATIVE_DSYM_GLOB_$(1) :=$(call CFG_LIB_DSYM_GLOB_$(1),native)
259
260 EXTRALIB_RGLOB_$(1) :=$(call CFG_RLIB_GLOB,extra)
261 STDLIB_RGLOB_$(1) :=$(call CFG_RLIB_GLOB,std)
262 LIBRUSTUV_RGLOB_$(1) :=$(call CFG_RLIB_GLOB,rustuv)
263 LIBSYNTAX_RGLOB_$(1) :=$(call CFG_RLIB_GLOB,syntax)
264 LIBRUSTC_RGLOB_$(1) :=$(call CFG_RLIB_GLOB,rustc)
265 LIBNATIVE_RGLOB_$(1) :=$(call CFG_RLIB_GLOB,native)
266 LIBGREEN_RGLOB_$(1) :=$(call CFG_RLIB_GLOB,green)
267
268 endef
269
270 # $(1) is the path for directory to match against
271 # $(2) is the glob to use in the match
272 # $(3) is filename (usually the target being created) to filter out from match
273 #      (i.e. filename is not out-of-date artifact from prior Rust version/build)
274 #
275 # Note that a common bug is to accidentally construct the glob denoted
276 # by $(2) with a space character prefix, which invalidates the
277 # construction $(1)$(2).
278 define CHECK_FOR_OLD_GLOB_MATCHES_EXCEPT
279   $(Q)MATCHES="$(filter-out %$(3),$(wildcard $(1)/$(2)))"; if [ -n "$$MATCHES" ] ; then echo "warning: there are previous" \'$(2)\' "libraries:" $$MATCHES; fi
280 endef
281
282 # Same interface as above, but deletes rather than just listing the files.
283 ifdef VERBOSE
284 define REMOVE_ALL_OLD_GLOB_MATCHES_EXCEPT
285   $(Q)MATCHES="$(filter-out %$(3),$(wildcard $(1)/$(2)))"; if [ -n "$$MATCHES" ] ; then echo "warning: removing previous" \'$(2)\' "libraries:" $$MATCHES; rm $$MATCHES ; fi
286 endef
287 else
288 define REMOVE_ALL_OLD_GLOB_MATCHES_EXCEPT
289   $(Q)MATCHES="$(filter-out %$(3),$(wildcard $(1)/$(2)))"; if [ -n "$$MATCHES" ] ; then rm $$MATCHES ; fi
290 endef
291 endif
292
293 # We use a different strategy for LIST_ALL_OLD_GLOB_MATCHES_EXCEPT
294 # than in the macros above because it needs the result of running the
295 # `ls` command after other rules in the command list have run; the
296 # macro-expander for $(wildcard ...) would deliver its results too
297 # soon. (This is in contrast to the macros above, which are meant to
298 # be run at the outset of a command list in a rule.)
299 ifdef VERBOSE
300 define LIST_ALL_OLD_GLOB_MATCHES_EXCEPT
301   @echo "info: now are following matches for" '$(2)' "libraries:"
302   @( cd $(1) && ( ls $(2) 2>/dev/null || true ) | grep -v $(3) || true )
303 endef
304 else
305 define LIST_ALL_OLD_GLOB_MATCHES_EXCEPT
306 endef
307 endif
308
309 $(foreach target,$(CFG_TARGET),\
310   $(eval $(call DEF_LIBS,$(target))))
311
312 ######################################################################
313 # Standard library variables
314 ######################################################################
315
316 STDLIB_CRATE := $(S)src/libstd/lib.rs
317 STDLIB_INPUTS := $(wildcard $(addprefix $(S)src/libstd/,        \
318                                            *.rs */*.rs */*/*rs */*/*/*rs))
319
320 ######################################################################
321 # Extra library variables
322 ######################################################################
323
324 EXTRALIB_CRATE := $(S)src/libextra/lib.rs
325 EXTRALIB_INPUTS := $(wildcard $(addprefix $(S)src/libextra/,          \
326                                           *.rs */*.rs))
327
328 ######################################################################
329 # Rust UV library variables
330 ######################################################################
331
332 LIBRUSTUV_CRATE := $(S)src/librustuv/lib.rs
333 LIBRUSTUV_INPUTS := $(wildcard $(addprefix $(S)src/librustuv/,          \
334                                           *.rs */*.rs))
335
336 ######################################################################
337 # Green threading library variables
338 ######################################################################
339
340 LIBGREEN_CRATE := $(S)src/libgreen/lib.rs
341 LIBGREEN_INPUTS := $(wildcard $(addprefix $(S)src/libgreen/,          \
342                                           *.rs */*.rs))
343
344 ######################################################################
345 # Native threading library variables
346 ######################################################################
347
348 LIBNATIVE_CRATE := $(S)src/libnative/lib.rs
349 LIBNATIVE_INPUTS := $(wildcard $(addprefix $(S)src/libnative/,          \
350                                           *.rs */*.rs))
351
352 ######################################################################
353 # rustc crate variables
354 ######################################################################
355
356 COMPILER_CRATE := $(S)src/librustc/lib.rs
357 COMPILER_INPUTS := $(wildcard $(addprefix $(S)src/librustc/,      \
358                            *.rs */*.rs */*/*.rs */*/*/*.rs))
359
360 LIBSYNTAX_CRATE := $(S)src/libsyntax/lib.rs
361 LIBSYNTAX_INPUTS := $(wildcard $(addprefix $(S)src/libsyntax/, \
362                            *.rs */*.rs */*/*.rs */*/*/*.rs))
363
364 DRIVER_CRATE := $(S)src/driver/driver.rs
365
366 ######################################################################
367 # LLVM macros
368 ######################################################################
369
370 # FIXME: x86-ism
371 LLVM_COMPONENTS=x86 arm mips ipo bitreader bitwriter linker asmparser jit mcjit \
372                 interpreter instrumentation
373
374 define DEF_LLVM_VARS
375 # The configure script defines these variables with the target triples
376 # separated by Z. This defines new ones with the expected format.
377 CFG_LLVM_BUILD_DIR_$(1):=$$(CFG_LLVM_BUILD_DIR_$(subst -,_,$(1)))
378 CFG_LLVM_INST_DIR_$(1):=$$(CFG_LLVM_INST_DIR_$(subst -,_,$(1)))
379
380 # Any rules that depend on LLVM should depend on LLVM_CONFIG
381 LLVM_CONFIG_$(1):=$$(CFG_LLVM_INST_DIR_$(1))/bin/llvm-config$$(X_$(1))
382 LLVM_MC_$(1):=$$(CFG_LLVM_INST_DIR_$(1))/bin/llvm-mc$$(X_$(1))
383 LLVM_VERSION_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --version)
384 LLVM_BINDIR_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --bindir)
385 LLVM_INCDIR_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --includedir)
386 LLVM_LIBDIR_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --libdir)
387 LLVM_LIBS_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --libs $$(LLVM_COMPONENTS))
388 LLVM_LDFLAGS_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --ldflags)
389 # On FreeBSD, it may search wrong headers (that are for pre-installed LLVM),
390 # so we replace -I with -iquote to ensure that it searches bundled LLVM first.
391 LLVM_CXXFLAGS_$(1)=$$(subst -I, -iquote , $$(shell "$$(LLVM_CONFIG_$(1))" --cxxflags))
392 LLVM_HOST_TRIPLE_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --host-target)
393
394 LLVM_AS_$(1)=$$(CFG_LLVM_INST_DIR_$(1))/bin/llvm-as$$(X_$(1))
395 LLC_$(1)=$$(CFG_LLVM_INST_DIR_$(1))/bin/llc$$(X_$(1))
396
397 endef
398
399 $(foreach host,$(CFG_HOST), \
400  $(eval $(call DEF_LLVM_VARS,$(host))))
401
402 ######################################################################
403 # Exports for sub-utilities
404 ######################################################################
405
406 # Note that any variable that re-configure should pick up needs to be
407 # exported
408
409 export CFG_SRC_DIR
410 export CFG_BUILD_DIR
411 export CFG_VERSION
412 export CFG_VERSION_WIN
413 export CFG_BUILD
414 export CFG_LLVM_ROOT
415 export CFG_ENABLE_MINGW_CROSS
416 export CFG_PREFIX
417 export CFG_LIBDIR
418 export CFG_RUSTLIBDIR
419
420 ######################################################################
421 # Subprograms
422 ######################################################################
423
424 ######################################################################
425 # Per-stage targets and runner
426 ######################################################################
427
428 define SREQ
429 # $(1) is the stage number
430 # $(2) is the target triple
431 # $(3) is the host triple
432
433 # Destinations of artifacts for the host compiler
434 HROOT$(1)_H_$(3) = $(3)/stage$(1)
435 HBIN$(1)_H_$(3) = $$(HROOT$(1)_H_$(3))/bin
436 HLIB$(1)_H_$(3) = $$(HROOT$(1)_H_$(3))/$$(CFG_LIBDIR)
437
438 # Destinations of artifacts for target architectures
439 TROOT$(1)_T_$(2)_H_$(3) = $$(HLIB$(1)_H_$(3))/$$(CFG_RUSTLIBDIR)/$(2)
440 TBIN$(1)_T_$(2)_H_$(3) = $$(TROOT$(1)_T_$(2)_H_$(3))/bin
441 TLIB$(1)_T_$(2)_H_$(3) = $$(TROOT$(1)_T_$(2)_H_$(3))/$$(CFG_LIBDIR)
442
443 # The name of the standard and extra libraries used by rustc
444 HSTDLIB_DEFAULT$(1)_H_$(3) = \
445   $$(HLIB$(1)_H_$(3))/$(CFG_STDLIB_$(3))
446 TSTDLIB_DEFAULT$(1)_T_$(2)_H_$(3) = \
447   $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_STDLIB_$(2))
448
449 HEXTRALIB_DEFAULT$(1)_H_$(3) = \
450   $$(HLIB$(1)_H_$(3))/$(CFG_EXTRALIB_$(3))
451 TEXTRALIB_DEFAULT$(1)_T_$(2)_H_$(3) = \
452   $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_EXTRALIB_$(2))
453
454 HLIBRUSTC_DEFAULT$(1)_H_$(3) = \
455   $$(HLIB$(1)_H_$(3))/$(CFG_LIBRUSTC_$(3))
456 TLIBRUSTC_DEFAULT$(1)_T_$(2)_H_$(3) = \
457   $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBRUSTC_$(2))
458
459 HLIBRUSTUV_DEFAULT$(1)_H_$(3) = \
460   $$(HLIB$(1)_H_$(3))/$(CFG_LIBRUSTUV_$(3))
461 TLIBRUSTUV_DEFAULT$(1)_T_$(2)_H_$(3) = \
462   $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBRUSTUV_$(2))
463
464 HLIBGREEN_DEFAULT$(1)_H_$(3) = \
465   $$(HLIB$(1)_H_$(3))/$(CFG_LIBGREEN_$(3))
466 TLIBGREEN_DEFAULT$(1)_T_$(2)_H_$(3) = \
467   $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBGREEN_$(2))
468
469 HLIBNATIVE_DEFAULT$(1)_H_$(3) = \
470   $$(HLIB$(1)_H_$(3))/$(CFG_LIBNATIVE_$(3))
471 TLIBNATIVE_DEFAULT$(1)_T_$(2)_H_$(3) = \
472   $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBNATIVE_$(2))
473
474 # Preqrequisites for using the stageN compiler
475 ifeq ($(1),0)
476 HSREQ$(1)_H_$(3) = $$(HBIN$(1)_H_$(3))/rustc$$(X_$(3))
477 else
478 HSREQ$(1)_H_$(3) = \
479         $$(HBIN$(1)_H_$(3))/rustc$$(X_$(3)) \
480         $$(HSTDLIB_DEFAULT$(1)_H_$(3)) \
481         $$(HEXTRALIB_DEFAULT$(1)_H_$(3)) \
482         $$(HLIBSYNTAX_DEFAULT$(1)_H_$(3)) \
483         $$(HLIBRUSTC_DEFAULT$(1)_H_$(3)) \
484         $$(HLIBRUSTUV_DEFAULT$(1)_H_$(3)) \
485         $$(HLIBGREEN_DEFAULT$(1)_H_$(3)) \
486         $$(HLIBNATIVE_DEFAULT$(1)_H_$(3)) \
487         $$(MKFILE_DEPS)
488 endif
489
490 # Prerequisites for using the stageN compiler to build target artifacts
491 TSREQ$(1)_T_$(2)_H_$(3) = \
492         $$(HSREQ$(1)_H_$(3)) \
493         $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_RUNTIME_$(2)) \
494         $$(TLIB$(1)_T_$(2)_H_$(3))/libmorestack.a
495
496 # Prerequisites for a working stageN compiler and libraries, for a specific target
497 SREQ$(1)_T_$(2)_H_$(3) = \
498         $$(TSREQ$(1)_T_$(2)_H_$(3)) \
499         $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_STDLIB_$(2)) \
500         $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_EXTRALIB_$(2)) \
501         $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBRUSTUV_$(2)) \
502         $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBGREEN_$(2)) \
503         $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBNATIVE_$(2))
504
505 # Prerequisites for a working stageN compiler and libraries, for a specific target
506 CSREQ$(1)_T_$(2)_H_$(3) = \
507         $$(TSREQ$(1)_T_$(2)_H_$(3)) \
508         $$(HBIN$(1)_H_$(3))/rustpkg$$(X_$(3)) \
509         $$(HBIN$(1)_H_$(3))/rustdoc$$(X_$(3)) \
510         $$(HLIB$(1)_H_$(3))/$(CFG_LIBRUSTPKG_$(3)) \
511         $$(HLIB$(1)_H_$(3))/$(CFG_LIBRUSTDOC_$(3)) \
512         $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_STDLIB_$(2)) \
513         $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_EXTRALIB_$(2))  \
514         $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBSYNTAX_$(2))  \
515         $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBRUSTC_$(2)) \
516         $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBRUSTPKG_$(2)) \
517         $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBRUSTDOC_$(2)) \
518         $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBRUSTUV_$(2)) \
519         $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBGREEN_$(2)) \
520         $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBNATIVE_$(2))
521
522 ifeq ($(1),0)
523 # Don't run the the stage0 compiler under valgrind - that ship has sailed
524 CFG_VALGRIND_COMPILE$(1) =
525 else
526 CFG_VALGRIND_COMPILE$(1) = $$(CFG_VALGRIND_COMPILE)
527 endif
528
529 # Add RUSTFLAGS_STAGEN values to the build command
530 EXTRAFLAGS_STAGE$(1) = $$(RUSTFLAGS_STAGE$(1))
531
532 CFGFLAG$(1)_T_$(2)_H_$(3) = stage$(1)
533
534 # Pass --cfg stage0 only for the build->host part of stage0;
535 # if you're building a cross config, the host->* parts are
536 # effectively stage1, since it uses the just-built stage0.
537 ifeq ($(1),0)
538 ifneq ($(strip $(CFG_BUILD)),$(strip $(3)))
539 CFGFLAG$(1)_T_$(2)_H_$(3) = stage1
540 endif
541 endif
542
543 STAGE$(1)_T_$(2)_H_$(3) :=                                              \
544         $$(Q)$$(call CFG_RUN_TARG_$(3),$(1),                            \
545                 $$(CFG_VALGRIND_COMPILE$(1))                    \
546                 $$(HBIN$(1)_H_$(3))/rustc$$(X_$(3))                     \
547                 --cfg $$(CFGFLAG$(1)_T_$(2)_H_$(3))                     \
548                 $$(CFG_RUSTC_FLAGS) $$(EXTRAFLAGS_STAGE$(1)) --target=$(2)) \
549                 $$(RUSTC_FLAGS_$(2))
550
551 PERF_STAGE$(1)_T_$(2)_H_$(3) :=                                 \
552         $$(Q)$$(call CFG_RUN_TARG_$(3),$(1),                            \
553                 $$(CFG_PERF_TOOL)                                               \
554                 $$(HBIN$(1)_H_$(3))/rustc$$(X_$(3))                     \
555                 --cfg $$(CFGFLAG$(1)_T_$(2)_H_$(3))                     \
556                 $$(CFG_RUSTC_FLAGS) $$(EXTRAFLAGS_STAGE$(1)) --target=$(2)) \
557                 $$(RUSTC_FLAGS_$(2))
558
559 endef
560
561 $(foreach build,$(CFG_HOST), \
562  $(eval $(foreach target,$(CFG_TARGET), \
563   $(eval $(foreach stage,$(STAGES), \
564    $(eval $(call SREQ,$(stage),$(target),$(build))))))))
565
566 ######################################################################
567 # rustc-H-targets
568 #
569 # Builds a functional Rustc for the given host.
570 ######################################################################
571
572 define DEF_RUSTC_STAGE_TARGET
573 # $(1) == architecture
574 # $(2) == stage
575
576 rustc-stage$(2)-H-$(1):                                                 \
577         $$(foreach target,$$(CFG_TARGET),       \
578                 $$(SREQ$(2)_T_$$(target)_H_$(1)))
579
580 endef
581
582 $(foreach host,$(CFG_HOST),                                                     \
583  $(eval $(foreach stage,1 2 3,                                                                  \
584   $(eval $(call DEF_RUSTC_STAGE_TARGET,$(host),$(stage))))))
585
586 rustc-stage1: rustc-stage1-H-$(CFG_BUILD)
587 rustc-stage2: rustc-stage2-H-$(CFG_BUILD)
588 rustc-stage3: rustc-stage3-H-$(CFG_BUILD)
589
590 define DEF_RUSTC_TARGET
591 # $(1) == architecture
592
593 rustc-H-$(1): rustc-stage2-H-$(1)
594 endef
595
596 $(foreach host,$(CFG_TARGET),                   \
597  $(eval $(call DEF_RUSTC_TARGET,$(host))))
598
599 rustc-stage1: rustc-stage1-H-$(CFG_BUILD)
600 rustc-stage2: rustc-stage2-H-$(CFG_BUILD)
601 rustc-stage3: rustc-stage3-H-$(CFG_BUILD)
602 rustc: rustc-H-$(CFG_BUILD)
603
604 rustc-H-all: $(foreach host,$(CFG_HOST),rustc-H-$(host))
605
606 ######################################################################
607 # Entrypoint rule
608 ######################################################################
609
610 .DEFAULT_GOAL := all
611
612 ifneq ($(CFG_IN_TRANSITION),)
613
614 CFG_INFO := $(info cfg:)
615 CFG_INFO := $(info cfg: *** compiler is in snapshot transition ***)
616 CFG_INFO := $(info cfg: *** stage2 and later will not be built ***)
617 CFG_INFO := $(info cfg:)
618
619 #XXX This is surely busted
620 all: $(SREQ1$(CFG_BUILD)) $(GENERATED) docs
621
622 else
623
624 define ALL_TARGET_N
625 ifneq ($$(findstring $(1),$$(CFG_HOST)),)
626 # This is a host
627 all-target-$(1)-host-$(2): $$(CSREQ2_T_$(1)_H_$(2))
628 else
629 # This is a target only
630 all-target-$(1)-host-$(2): $$(SREQ2_T_$(1)_H_$(2))
631 endif
632 endef
633
634 $(foreach target,$(CFG_TARGET), \
635  $(foreach host,$(CFG_HOST), \
636  $(eval $(call ALL_TARGET_N,$(target),$(host)))))
637
638 ALL_TARGET_RULES = $(foreach target,$(CFG_TARGET), \
639         $(foreach host,$(CFG_HOST), \
640  all-target-$(target)-host-$(host)))
641
642 all: $(ALL_TARGET_RULES) $(GENERATED) docs
643
644 endif
645
646
647 ######################################################################
648 # Re-configuration
649 ######################################################################
650
651 ifndef CFG_DISABLE_MANAGE_SUBMODULES
652 # This is a pretty expensive operation but I don't see any way to avoid it
653 NEED_GIT_RECONFIG=$(shell cd "$(CFG_SRC_DIR)" && "$(CFG_GIT)" submodule status | grep -c '^\(+\|-\)')
654 else
655 NEED_GIT_RECONFIG=0
656 endif
657
658 ifeq ($(NEED_GIT_RECONFIG),0)
659 else
660 # If the submodules have changed then always execute config.mk
661 .PHONY: config.stamp
662 endif
663
664 Makefile config.mk: config.stamp
665
666 config.stamp: $(S)configure $(S)Makefile.in $(S)src/snapshots.txt
667         @$(call E, cfg: reconfiguring)
668         $(Q)$(S)configure $(CFG_CONFIGURE_ARGS)
669
670
671 ######################################################################
672 # Primary-target makefiles
673 ######################################################################
674
675 # Issue #9531: If you change the order of any of the following (or add
676 # new definitions), make sure definitions always precede their uses,
677 # especially for the dependency lists of recipes.
678
679 include $(CFG_SRC_DIR)mk/rt.mk
680 include $(CFG_SRC_DIR)mk/target.mk
681 include $(CFG_SRC_DIR)mk/host.mk
682 include $(CFG_SRC_DIR)mk/stage0.mk
683 include $(CFG_SRC_DIR)mk/rustllvm.mk
684 include $(CFG_SRC_DIR)mk/tools.mk
685 include $(CFG_SRC_DIR)mk/docs.mk
686 include $(CFG_SRC_DIR)mk/llvm.mk
687
688 ######################################################################
689 # Secondary makefiles, conditionalized for speed
690 ######################################################################
691
692 ifneq ($(strip $(findstring dist,$(MAKECMDGOALS))   \
693                $(findstring check,$(MAKECMDGOALS))  \
694                $(findstring test,$(MAKECMDGOALS))   \
695                $(findstring tidy,$(MAKECMDGOALS))   \
696                $(findstring clean,$(MAKECMDGOALS))),)
697   CFG_INFO := $(info cfg: including dist rules)
698   include $(CFG_SRC_DIR)mk/dist.mk
699 endif
700
701 ifneq ($(strip $(findstring snap,$(MAKECMDGOALS))   \
702                $(findstring clean,$(MAKECMDGOALS))),)
703   CFG_INFO := $(info cfg: including snap rules)
704   include $(CFG_SRC_DIR)mk/snap.mk
705 endif
706
707 ifneq ($(strip $(findstring check,$(MAKECMDGOALS)) \
708                $(findstring test,$(MAKECMDGOALS))  \
709                $(findstring perf,$(MAKECMDGOALS))  \
710                $(findstring tidy,$(MAKECMDGOALS))),)
711   CFG_INFO := $(info cfg: including test rules)
712   include $(CFG_SRC_DIR)mk/tests.mk
713 endif
714
715 ifneq ($(findstring perf,$(MAKECMDGOALS)),)
716   CFG_INFO := $(info cfg: including perf rules)
717   include $(CFG_SRC_DIR)mk/perf.mk
718 endif
719
720 ifneq ($(findstring clean,$(MAKECMDGOALS)),)
721   CFG_INFO := $(info cfg: including clean rules)
722   include $(CFG_SRC_DIR)mk/clean.mk
723 endif
724
725 ifneq ($(findstring install,$(MAKECMDGOALS)),)
726   CFG_INFO := $(info cfg: including install rules)
727   include $(CFG_SRC_DIR)mk/install.mk
728 endif
729
730 ifneq ($(strip $(findstring TAGS.emacs,$(MAKECMDGOALS)) \
731                $(findstring TAGS.vi,$(MAKECMDGOALS))),)
732   CFG_INFO := $(info cfg: including ctags rules)
733   include $(CFG_SRC_DIR)mk/ctags.mk
734 endif
735
736 # Find all of the .d files and include them to add information about
737 # header file dependencies.
738 ALL_DEP_FILES := $(ALL_OBJ_FILES:%.o=%.d)
739 -include $(ALL_DEP_FILES)