]> git.lizzy.rs Git - rust.git/blob - Makefile.in
auto merge of #11584 : alexcrichton/rust/issue-3862, r=brson
[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.10-pre
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.10
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 # Only build these LLVM tools
375 LLVM_TOOLS=bugpoint llc llvm-ar llvm-as llvm-dis llvm-mc opt
376
377 define DEF_LLVM_VARS
378 # The configure script defines these variables with the target triples
379 # separated by Z. This defines new ones with the expected format.
380 CFG_LLVM_BUILD_DIR_$(1):=$$(CFG_LLVM_BUILD_DIR_$(subst -,_,$(1)))
381 CFG_LLVM_INST_DIR_$(1):=$$(CFG_LLVM_INST_DIR_$(subst -,_,$(1)))
382
383 # Any rules that depend on LLVM should depend on LLVM_CONFIG
384 LLVM_CONFIG_$(1):=$$(CFG_LLVM_INST_DIR_$(1))/bin/llvm-config$$(X_$(1))
385 LLVM_MC_$(1):=$$(CFG_LLVM_INST_DIR_$(1))/bin/llvm-mc$$(X_$(1))
386 LLVM_VERSION_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --version)
387 LLVM_BINDIR_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --bindir)
388 LLVM_INCDIR_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --includedir)
389 LLVM_LIBDIR_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --libdir)
390 LLVM_LIBS_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --libs $$(LLVM_COMPONENTS))
391 LLVM_LDFLAGS_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --ldflags)
392 # On FreeBSD, it may search wrong headers (that are for pre-installed LLVM),
393 # so we replace -I with -iquote to ensure that it searches bundled LLVM first.
394 LLVM_CXXFLAGS_$(1)=$$(subst -I, -iquote , $$(shell "$$(LLVM_CONFIG_$(1))" --cxxflags))
395 LLVM_HOST_TRIPLE_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --host-target)
396
397 LLVM_AS_$(1)=$$(CFG_LLVM_INST_DIR_$(1))/bin/llvm-as$$(X_$(1))
398 LLC_$(1)=$$(CFG_LLVM_INST_DIR_$(1))/bin/llc$$(X_$(1))
399
400 endef
401
402 $(foreach host,$(CFG_HOST), \
403  $(eval $(call DEF_LLVM_VARS,$(host))))
404
405 ######################################################################
406 # Exports for sub-utilities
407 ######################################################################
408
409 # Note that any variable that re-configure should pick up needs to be
410 # exported
411
412 export CFG_SRC_DIR
413 export CFG_BUILD_DIR
414 export CFG_VERSION
415 export CFG_VERSION_WIN
416 export CFG_RELEASE
417 export CFG_BUILD
418 export CFG_LLVM_ROOT
419 export CFG_ENABLE_MINGW_CROSS
420 export CFG_PREFIX
421 export CFG_LIBDIR
422 export CFG_RUSTLIBDIR
423 export CFG_LIBDIR_RELATIVE
424 export CFG_DISABLE_INJECT_STD_VERSION
425
426 ######################################################################
427 # Subprograms
428 ######################################################################
429
430 ######################################################################
431 # Per-stage targets and runner
432 ######################################################################
433
434 define SREQ
435 # $(1) is the stage number
436 # $(2) is the target triple
437 # $(3) is the host triple
438
439 # Destinations of artifacts for the host compiler
440 HROOT$(1)_H_$(3) = $(3)/stage$(1)
441 HBIN$(1)_H_$(3) = $$(HROOT$(1)_H_$(3))/bin
442 HLIB$(1)_H_$(3) = $$(HROOT$(1)_H_$(3))/$$(CFG_LIBDIR_RELATIVE)
443
444 # Destinations of artifacts for target architectures
445 TROOT$(1)_T_$(2)_H_$(3) = $$(HLIB$(1)_H_$(3))/$$(CFG_RUSTLIBDIR)/$(2)
446 TBIN$(1)_T_$(2)_H_$(3) = $$(TROOT$(1)_T_$(2)_H_$(3))/bin
447 TLIB$(1)_T_$(2)_H_$(3) = $$(TROOT$(1)_T_$(2)_H_$(3))/lib
448
449 # The name of the standard and extra libraries used by rustc
450 HSTDLIB_DEFAULT$(1)_H_$(3) = \
451   $$(HLIB$(1)_H_$(3))/$(CFG_STDLIB_$(3))
452 TSTDLIB_DEFAULT$(1)_T_$(2)_H_$(3) = \
453   $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_STDLIB_$(2))
454
455 HEXTRALIB_DEFAULT$(1)_H_$(3) = \
456   $$(HLIB$(1)_H_$(3))/$(CFG_EXTRALIB_$(3))
457 TEXTRALIB_DEFAULT$(1)_T_$(2)_H_$(3) = \
458   $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_EXTRALIB_$(2))
459
460 HLIBRUSTC_DEFAULT$(1)_H_$(3) = \
461   $$(HLIB$(1)_H_$(3))/$(CFG_LIBRUSTC_$(3))
462 TLIBRUSTC_DEFAULT$(1)_T_$(2)_H_$(3) = \
463   $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBRUSTC_$(2))
464
465 HLIBRUSTUV_DEFAULT$(1)_H_$(3) = \
466   $$(HLIB$(1)_H_$(3))/$(CFG_LIBRUSTUV_$(3))
467 TLIBRUSTUV_DEFAULT$(1)_T_$(2)_H_$(3) = \
468   $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBRUSTUV_$(2))
469
470 HLIBGREEN_DEFAULT$(1)_H_$(3) = \
471   $$(HLIB$(1)_H_$(3))/$(CFG_LIBGREEN_$(3))
472 TLIBGREEN_DEFAULT$(1)_T_$(2)_H_$(3) = \
473   $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBGREEN_$(2))
474
475 HLIBNATIVE_DEFAULT$(1)_H_$(3) = \
476   $$(HLIB$(1)_H_$(3))/$(CFG_LIBNATIVE_$(3))
477 TLIBNATIVE_DEFAULT$(1)_T_$(2)_H_$(3) = \
478   $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBNATIVE_$(2))
479
480 # Preqrequisites for using the stageN compiler
481 ifeq ($(1),0)
482 HSREQ$(1)_H_$(3) = $$(HBIN$(1)_H_$(3))/rustc$$(X_$(3))
483 else
484 HSREQ$(1)_H_$(3) = \
485         $$(HBIN$(1)_H_$(3))/rustc$$(X_$(3)) \
486         $$(HSTDLIB_DEFAULT$(1)_H_$(3)) \
487         $$(HEXTRALIB_DEFAULT$(1)_H_$(3)) \
488         $$(HLIBSYNTAX_DEFAULT$(1)_H_$(3)) \
489         $$(HLIBRUSTC_DEFAULT$(1)_H_$(3)) \
490         $$(HLIBRUSTUV_DEFAULT$(1)_H_$(3)) \
491         $$(HLIBGREEN_DEFAULT$(1)_H_$(3)) \
492         $$(HLIBNATIVE_DEFAULT$(1)_H_$(3)) \
493         $$(MKFILE_DEPS)
494 endif
495
496 # Prerequisites for using the stageN compiler to build target artifacts
497 TSREQ$(1)_T_$(2)_H_$(3) = \
498         $$(HSREQ$(1)_H_$(3)) \
499         $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_RUNTIME_$(2)) \
500         $$(TLIB$(1)_T_$(2)_H_$(3))/libmorestack.a
501
502 # Prerequisites for a working stageN compiler and libraries, for a specific target
503 SREQ$(1)_T_$(2)_H_$(3) = \
504         $$(TSREQ$(1)_T_$(2)_H_$(3)) \
505         $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_STDLIB_$(2)) \
506         $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_EXTRALIB_$(2)) \
507         $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBRUSTUV_$(2)) \
508         $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBGREEN_$(2)) \
509         $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBNATIVE_$(2))
510
511 # Prerequisites for a working stageN compiler and libraries, for a specific target
512 CSREQ$(1)_T_$(2)_H_$(3) = \
513         $$(TSREQ$(1)_T_$(2)_H_$(3)) \
514         $$(HBIN$(1)_H_$(3))/rustpkg$$(X_$(3)) \
515         $$(HBIN$(1)_H_$(3))/rustdoc$$(X_$(3)) \
516         $$(HLIB$(1)_H_$(3))/$(CFG_LIBRUSTPKG_$(3)) \
517         $$(HLIB$(1)_H_$(3))/$(CFG_LIBRUSTDOC_$(3)) \
518         $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_STDLIB_$(2)) \
519         $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_EXTRALIB_$(2))  \
520         $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBSYNTAX_$(2))  \
521         $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBRUSTC_$(2)) \
522         $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBRUSTPKG_$(2)) \
523         $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBRUSTDOC_$(2)) \
524         $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBRUSTUV_$(2)) \
525         $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBGREEN_$(2)) \
526         $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_LIBNATIVE_$(2))
527
528 ifeq ($(1),0)
529 # Don't run the the stage0 compiler under valgrind - that ship has sailed
530 CFG_VALGRIND_COMPILE$(1) =
531 else
532 CFG_VALGRIND_COMPILE$(1) = $$(CFG_VALGRIND_COMPILE)
533 endif
534
535 # Add RUSTFLAGS_STAGEN values to the build command
536 EXTRAFLAGS_STAGE$(1) = $$(RUSTFLAGS_STAGE$(1))
537
538 CFGFLAG$(1)_T_$(2)_H_$(3) = stage$(1)
539
540 # Pass --cfg stage0 only for the build->host part of stage0;
541 # if you're building a cross config, the host->* parts are
542 # effectively stage1, since it uses the just-built stage0.
543 ifeq ($(1),0)
544 ifneq ($(strip $(CFG_BUILD)),$(strip $(3)))
545 CFGFLAG$(1)_T_$(2)_H_$(3) = stage1
546 endif
547 endif
548
549 STAGE$(1)_T_$(2)_H_$(3) :=                                              \
550         $$(Q)$$(call CFG_RUN_TARG_$(3),$(1),                            \
551                 $$(CFG_VALGRIND_COMPILE$(1))                    \
552                 $$(HBIN$(1)_H_$(3))/rustc$$(X_$(3))                     \
553                 --cfg $$(CFGFLAG$(1)_T_$(2)_H_$(3))                     \
554                 $$(CFG_RUSTC_FLAGS) $$(EXTRAFLAGS_STAGE$(1)) --target=$(2)) \
555                 $$(RUSTC_FLAGS_$(2))
556
557 PERF_STAGE$(1)_T_$(2)_H_$(3) :=                                 \
558         $$(Q)$$(call CFG_RUN_TARG_$(3),$(1),                            \
559                 $$(CFG_PERF_TOOL)                                               \
560                 $$(HBIN$(1)_H_$(3))/rustc$$(X_$(3))                     \
561                 --cfg $$(CFGFLAG$(1)_T_$(2)_H_$(3))                     \
562                 $$(CFG_RUSTC_FLAGS) $$(EXTRAFLAGS_STAGE$(1)) --target=$(2)) \
563                 $$(RUSTC_FLAGS_$(2))
564
565 endef
566
567 $(foreach build,$(CFG_HOST), \
568  $(eval $(foreach target,$(CFG_TARGET), \
569   $(eval $(foreach stage,$(STAGES), \
570    $(eval $(call SREQ,$(stage),$(target),$(build))))))))
571
572 ######################################################################
573 # rustc-H-targets
574 #
575 # Builds a functional Rustc for the given host.
576 ######################################################################
577
578 define DEF_RUSTC_STAGE_TARGET
579 # $(1) == architecture
580 # $(2) == stage
581
582 rustc-stage$(2)-H-$(1):                                                 \
583         $$(foreach target,$$(CFG_TARGET),       \
584                 $$(SREQ$(2)_T_$$(target)_H_$(1)))
585
586 endef
587
588 $(foreach host,$(CFG_HOST),                                                     \
589  $(eval $(foreach stage,1 2 3,                                                                  \
590   $(eval $(call DEF_RUSTC_STAGE_TARGET,$(host),$(stage))))))
591
592 rustc-stage1: rustc-stage1-H-$(CFG_BUILD)
593 rustc-stage2: rustc-stage2-H-$(CFG_BUILD)
594 rustc-stage3: rustc-stage3-H-$(CFG_BUILD)
595
596 define DEF_RUSTC_TARGET
597 # $(1) == architecture
598
599 rustc-H-$(1): rustc-stage2-H-$(1)
600 endef
601
602 $(foreach host,$(CFG_TARGET),                   \
603  $(eval $(call DEF_RUSTC_TARGET,$(host))))
604
605 rustc-stage1: rustc-stage1-H-$(CFG_BUILD)
606 rustc-stage2: rustc-stage2-H-$(CFG_BUILD)
607 rustc-stage3: rustc-stage3-H-$(CFG_BUILD)
608 rustc: rustc-H-$(CFG_BUILD)
609
610 rustc-H-all: $(foreach host,$(CFG_HOST),rustc-H-$(host))
611
612 ######################################################################
613 # Entrypoint rule
614 ######################################################################
615
616 .DEFAULT_GOAL := all
617
618 ifneq ($(CFG_IN_TRANSITION),)
619
620 CFG_INFO := $(info cfg:)
621 CFG_INFO := $(info cfg: *** compiler is in snapshot transition ***)
622 CFG_INFO := $(info cfg: *** stage2 and later will not be built ***)
623 CFG_INFO := $(info cfg:)
624
625 #XXX This is surely busted
626 all: $(SREQ1$(CFG_BUILD)) $(GENERATED) docs
627
628 else
629
630 define ALL_TARGET_N
631 ifneq ($$(findstring $(1),$$(CFG_HOST)),)
632 # This is a host
633 all-target-$(1)-host-$(2): $$(CSREQ2_T_$(1)_H_$(2))
634 else
635 # This is a target only
636 all-target-$(1)-host-$(2): $$(SREQ2_T_$(1)_H_$(2))
637 endif
638 endef
639
640 $(foreach target,$(CFG_TARGET), \
641  $(foreach host,$(CFG_HOST), \
642  $(eval $(call ALL_TARGET_N,$(target),$(host)))))
643
644 ALL_TARGET_RULES = $(foreach target,$(CFG_TARGET), \
645         $(foreach host,$(CFG_HOST), \
646  all-target-$(target)-host-$(host)))
647
648 all: $(ALL_TARGET_RULES) $(GENERATED) docs
649
650 endif
651
652
653 ######################################################################
654 # Re-configuration
655 ######################################################################
656
657 ifndef CFG_DISABLE_MANAGE_SUBMODULES
658 # This is a pretty expensive operation but I don't see any way to avoid it
659 NEED_GIT_RECONFIG=$(shell cd "$(CFG_SRC_DIR)" && "$(CFG_GIT)" submodule status | grep -c '^\(+\|-\)')
660 else
661 NEED_GIT_RECONFIG=0
662 endif
663
664 ifeq ($(NEED_GIT_RECONFIG),0)
665 else
666 # If the submodules have changed then always execute config.mk
667 .PHONY: config.stamp
668 endif
669
670 Makefile config.mk: config.stamp
671
672 config.stamp: $(S)configure $(S)Makefile.in $(S)src/snapshots.txt
673         @$(call E, cfg: reconfiguring)
674         $(Q)$(S)configure $(CFG_CONFIGURE_ARGS)
675
676
677 ######################################################################
678 # Primary-target makefiles
679 ######################################################################
680
681 # Issue #9531: If you change the order of any of the following (or add
682 # new definitions), make sure definitions always precede their uses,
683 # especially for the dependency lists of recipes.
684
685 include $(CFG_SRC_DIR)mk/rt.mk
686 include $(CFG_SRC_DIR)mk/target.mk
687 include $(CFG_SRC_DIR)mk/host.mk
688 include $(CFG_SRC_DIR)mk/stage0.mk
689 include $(CFG_SRC_DIR)mk/rustllvm.mk
690 include $(CFG_SRC_DIR)mk/tools.mk
691 include $(CFG_SRC_DIR)mk/docs.mk
692 include $(CFG_SRC_DIR)mk/llvm.mk
693
694 ######################################################################
695 # Secondary makefiles, conditionalized for speed
696 ######################################################################
697
698 ifneq ($(strip $(findstring dist,$(MAKECMDGOALS))   \
699                $(findstring check,$(MAKECMDGOALS))  \
700                $(findstring test,$(MAKECMDGOALS))   \
701                $(findstring tidy,$(MAKECMDGOALS))   \
702                $(findstring clean,$(MAKECMDGOALS))),)
703   CFG_INFO := $(info cfg: including dist rules)
704   include $(CFG_SRC_DIR)mk/dist.mk
705 endif
706
707 ifneq ($(strip $(findstring snap,$(MAKECMDGOALS))   \
708                $(findstring clean,$(MAKECMDGOALS))),)
709   CFG_INFO := $(info cfg: including snap rules)
710   include $(CFG_SRC_DIR)mk/snap.mk
711 endif
712
713 ifneq ($(strip $(findstring check,$(MAKECMDGOALS)) \
714                $(findstring test,$(MAKECMDGOALS))  \
715                $(findstring perf,$(MAKECMDGOALS))  \
716                $(findstring tidy,$(MAKECMDGOALS))),)
717   CFG_INFO := $(info cfg: including test rules)
718   include $(CFG_SRC_DIR)mk/tests.mk
719 endif
720
721 ifneq ($(findstring perf,$(MAKECMDGOALS)),)
722   CFG_INFO := $(info cfg: including perf rules)
723   include $(CFG_SRC_DIR)mk/perf.mk
724 endif
725
726 ifneq ($(findstring clean,$(MAKECMDGOALS)),)
727   CFG_INFO := $(info cfg: including clean rules)
728   include $(CFG_SRC_DIR)mk/clean.mk
729 endif
730
731 ifneq ($(findstring install,$(MAKECMDGOALS)),)
732   CFG_INFO := $(info cfg: including install rules)
733   include $(CFG_SRC_DIR)mk/install.mk
734 endif
735
736 ifneq ($(strip $(findstring TAGS.emacs,$(MAKECMDGOALS)) \
737                $(findstring TAGS.vi,$(MAKECMDGOALS))),)
738   CFG_INFO := $(info cfg: including ctags rules)
739   include $(CFG_SRC_DIR)mk/ctags.mk
740 endif
741
742 # Find all of the .d files and include them to add information about
743 # header file dependencies.
744 ALL_DEP_FILES := $(ALL_OBJ_FILES:%.o=%.d)
745 -include $(ALL_DEP_FILES)