]> git.lizzy.rs Git - rust.git/blob - mk/main.mk
rollup merge of #21151: brson/beta
[rust.git] / mk / main.mk
1 # Copyright 2014-2015 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 ######################################################################
12 # Version numbers and strings
13 ######################################################################
14
15 # The version number
16 CFG_RELEASE_NUM=1.0.0
17
18 # An optional number to put after the label, e.g. '.2' -> '-beta.2'
19 # NB Make sure it starts with a dot to conform to semver pre-release
20 # versions (section 9)
21 CFG_PRERELEASE_VERSION=.1
22
23 CFG_FILENAME_EXTRA=4e7c5e5c
24
25 ifeq ($(CFG_RELEASE_CHANNEL),stable)
26 # This is the normal semver version string, e.g. "0.12.0", "0.12.0-nightly"
27 CFG_RELEASE=$(CFG_RELEASE_NUM)
28 # This is the string used in dist artifact file names, e.g. "0.12.0", "nightly"
29 CFG_PACKAGE_VERS=$(CFG_RELEASE_NUM)
30 CFG_DISABLE_UNSTABLE_FEATURES=1
31 endif
32 ifeq ($(CFG_RELEASE_CHANNEL),beta)
33 CFG_RELEASE=$(CFG_RELEASE_NUM)-beta(CFG_PRERELEASE_VERSION)
34 CFG_PACKAGE_VERS=$(CFG_RELEASE_NUM)-beta(CFG_PRERELEASE_VERSION)
35 CFG_DISABLE_UNSTABLE_FEATURES=1
36 endif
37 ifeq ($(CFG_RELEASE_CHANNEL),nightly)
38 CFG_RELEASE=$(CFG_RELEASE_NUM)-nightly
39 # When building nightly distributables just reuse the same "nightly" name
40 # so when we upload we'll always override the previous nighly. This
41 # doesn't actually impact the version reported by rustc - it's just
42 # for file naming.
43 CFG_PACKAGE_VERS=nightly
44 endif
45 ifeq ($(CFG_RELEASE_CHANNEL),dev)
46 CFG_RELEASE=$(CFG_RELEASE_NUM)-dev
47 CFG_PACKAGE_VERS=$(CFG_RELEASE_NUM)-dev
48 endif
49
50 # The name of the package to use for creating tarballs, installers etc.
51 CFG_PACKAGE_NAME=rustc-$(CFG_PACKAGE_VERS)
52
53 # The version string plus commit information - this is what rustc reports
54 CFG_VERSION = $(CFG_RELEASE)
55 CFG_GIT_DIR := $(CFG_SRC_DIR).git
56 # since $(CFG_GIT) may contain spaces (especially on Windows),
57 # we need to escape them. (" " to r"\ ")
58 # Note that $(subst ...) ignores space after `subst`,
59 # so we use a hack: define $(SPACE) which contains space character.
60 SPACE :=
61 SPACE +=
62 ifneq ($(CFG_GIT),)
63 ifneq ($(wildcard $(subst $(SPACE),\$(SPACE),$(CFG_GIT_DIR))),)
64     CFG_VER_DATE = $(shell git --git-dir='$(CFG_GIT_DIR)' log -1 --pretty=format:'%ci')
65     CFG_VER_HASH = $(shell git --git-dir='$(CFG_GIT_DIR)' rev-parse HEAD)
66     CFG_SHORT_VER_HASH = $(shell git --git-dir='$(CFG_GIT_DIR)' rev-parse --short=9 HEAD)
67     CFG_VERSION += ($(CFG_SHORT_VER_HASH) $(CFG_VER_DATE))
68 endif
69 endif
70
71 # Windows exe's need numeric versions - don't use anything but
72 # numbers and dots here
73 CFG_VERSION_WIN = $(CFG_RELEASE_NUM)
74
75
76 ######################################################################
77 # More configuration
78 ######################################################################
79
80 # We track all of the object files we might build so that we can find
81 # and include all of the .d files in one fell swoop.
82 ALL_OBJ_FILES :=
83
84 MKFILE_DEPS := config.stamp $(call rwildcard,$(CFG_SRC_DIR)mk/,*)
85 MKFILES_FOR_TARBALL:=$(MKFILE_DEPS)
86 ifneq ($(NO_MKFILE_DEPS),)
87 MKFILE_DEPS :=
88 endif
89 NON_BUILD_HOST = $(filter-out $(CFG_BUILD),$(CFG_HOST))
90 NON_BUILD_TARGET = $(filter-out $(CFG_BUILD),$(CFG_TARGET))
91
92 ifneq ($(MAKE_RESTARTS),)
93 CFG_INFO := $(info cfg: make restarts: $(MAKE_RESTARTS))
94 endif
95
96 CFG_INFO := $(info cfg: build triple $(CFG_BUILD))
97 CFG_INFO := $(info cfg: host triples $(CFG_HOST))
98 CFG_INFO := $(info cfg: target triples $(CFG_TARGET))
99
100 ifneq ($(wildcard $(NON_BUILD_HOST)),)
101 CFG_INFO := $(info cfg: non-build host triples $(NON_BUILD_HOST))
102 endif
103 ifneq ($(wildcard $(NON_BUILD_TARGET)),)
104 CFG_INFO := $(info cfg: non-build target triples $(NON_BUILD_TARGET))
105 endif
106
107 CFG_RUSTC_FLAGS := $(RUSTFLAGS)
108 CFG_GCCISH_CFLAGS :=
109 CFG_GCCISH_LINK_FLAGS :=
110
111 # Turn off broken quarantine (see jemalloc/jemalloc#161)
112 CFG_JEMALLOC_FLAGS := --disable-fill
113
114 ifdef CFG_DISABLE_OPTIMIZE
115   $(info cfg: disabling rustc optimization (CFG_DISABLE_OPTIMIZE))
116   CFG_RUSTC_FLAGS +=
117   CFG_JEMALLOC_FLAGS += --enable-debug
118 else
119   # The rtopt cfg turns off runtime sanity checks
120   CFG_RUSTC_FLAGS += -O --cfg rtopt
121 endif
122
123 CFG_JEMALLOC_FLAGS += $(JEMALLOC_FLAGS)
124
125 ifdef CFG_DISABLE_DEBUG
126   CFG_RUSTC_FLAGS += --cfg ndebug
127 else
128   $(info cfg: enabling more debugging (CFG_ENABLE_DEBUG))
129   CFG_RUSTC_FLAGS += --cfg debug
130 endif
131
132 ifdef SAVE_TEMPS
133   CFG_RUSTC_FLAGS += --save-temps
134 endif
135 ifdef ASM_COMMENTS
136   CFG_RUSTC_FLAGS += -Z asm-comments
137 endif
138 ifdef TIME_PASSES
139   CFG_RUSTC_FLAGS += -Z time-passes
140 endif
141 ifdef TIME_LLVM_PASSES
142   CFG_RUSTC_FLAGS += -Z time-llvm-passes
143 endif
144 ifdef TRACE
145   CFG_RUSTC_FLAGS += -Z trace
146 endif
147 ifdef CFG_ENABLE_RPATH
148 CFG_RUSTC_FLAGS += -C rpath
149 endif
150
151 # The executables crated during this compilation process have no need to include
152 # static copies of libstd and libextra. We also generate dynamic versions of all
153 # libraries, so in the interest of space, prefer dynamic linking throughout the
154 # compilation process.
155 #
156 # Note though that these flags are omitted for the *bins* in stage2+. This means
157 # that the snapshot will be generated with a statically linked rustc so we only
158 # have to worry about the distribution of one file (with its native dynamic
159 # dependencies)
160 RUSTFLAGS_STAGE0 += -C prefer-dynamic
161 RUSTFLAGS_STAGE1 += -C prefer-dynamic
162 RUST_LIB_FLAGS_ST2 += -C prefer-dynamic
163 RUST_LIB_FLAGS_ST3 += -C prefer-dynamic
164
165 # Landing pads require a lot of codegen. We can get through bootstrapping faster
166 # by not emitting them.
167 RUSTFLAGS_STAGE0 += -Z no-landing-pads
168
169 # platform-specific auto-configuration
170 include $(CFG_SRC_DIR)mk/platform.mk
171
172 # Run the stage1/2 compilers under valgrind
173 ifdef VALGRIND_COMPILE
174   CFG_VALGRIND_COMPILE :=$(CFG_VALGRIND)
175 else
176   CFG_VALGRIND_COMPILE :=
177 endif
178
179
180 ifndef CFG_DISABLE_VALGRIND_RPASS
181   $(info cfg: enabling valgrind run-pass tests (CFG_ENABLE_VALGRIND_RPASS))
182   CFG_VALGRIND_RPASS :=$(CFG_VALGRIND)
183 else
184   CFG_VALGRIND_RPASS :=
185 endif
186
187
188 ifdef CFG_ENABLE_VALGRIND
189   $(info cfg: enabling valgrind (CFG_ENABLE_VALGRIND))
190 else
191   CFG_VALGRIND :=
192 endif
193
194 ######################################################################
195 # Target-and-rule "utility variables"
196 ######################################################################
197
198 define DEF_FOR_TARGET
199 X_$(1) := $(CFG_EXE_SUFFIX_$(1))
200 ifndef CFG_LLVM_TARGET_$(1)
201 CFG_LLVM_TARGET_$(1) := $(1)
202 endif
203 endef
204 $(foreach target,$(CFG_TARGET), \
205   $(eval $(call DEF_FOR_TARGET,$(target))))
206
207 # "Source" files we generate in builddir along the way.
208 GENERATED :=
209
210 # Delete the built-in rules.
211 .SUFFIXES:
212 %:: %,v
213 %:: RCS/%,v
214 %:: RCS/%
215 %:: s.%
216 %:: SCCS/s.%
217
218
219 ######################################################################
220 # Cleaning out old crates
221 ######################################################################
222
223 # $(1) is the path for directory to match against
224 # $(2) is the glob to use in the match
225 #
226 # Note that a common bug is to accidentally construct the glob denoted
227 # by $(2) with a space character prefix, which invalidates the
228 # construction $(1)$(2).
229 define CHECK_FOR_OLD_GLOB_MATCHES
230   $(Q)MATCHES="$(wildcard $(1))"; if [ -n "$$MATCHES" ] ; then echo "warning: there are previous" \'$(notdir $(2))\' "libraries:" $$MATCHES; fi
231 endef
232
233 # Same interface as above, but deletes rather than just listing the files.
234 ifdef VERBOSE
235 define REMOVE_ALL_OLD_GLOB_MATCHES
236   $(Q)MATCHES="$(wildcard $(1))"; if [ -n "$$MATCHES" ] ; then echo "warning: removing previous" \'$(notdir $(1))\' "libraries:" $$MATCHES; rm $$MATCHES ; fi
237 endef
238 else
239 define REMOVE_ALL_OLD_GLOB_MATCHES
240   $(Q)MATCHES="$(wildcard $(1))"; if [ -n "$$MATCHES" ] ; then rm $$MATCHES ; fi
241 endef
242 endif
243
244 # We use a different strategy for LIST_ALL_OLD_GLOB_MATCHES_EXCEPT
245 # than in the macros above because it needs the result of running the
246 # `ls` command after other rules in the command list have run; the
247 # macro-expander for $(wildcard ...) would deliver its results too
248 # soon. (This is in contrast to the macros above, which are meant to
249 # be run at the outset of a command list in a rule.)
250 ifdef VERBOSE
251 define LIST_ALL_OLD_GLOB_MATCHES
252   @echo "info: now are following matches for" '$(notdir $(1))' "libraries:"
253   @( ls $(1) 2>/dev/null || true )
254 endef
255 else
256 define LIST_ALL_OLD_GLOB_MATCHES
257 endef
258 endif
259
260 ######################################################################
261 # LLVM macros
262 ######################################################################
263
264 # FIXME: x86-ism
265 LLVM_COMPONENTS=x86 arm aarch64 mips powerpc ipo bitreader bitwriter linker asmparser mcjit \
266                 interpreter instrumentation
267
268 # Only build these LLVM tools
269 LLVM_TOOLS=bugpoint llc llvm-ar llvm-as llvm-dis llvm-mc opt llvm-extract
270
271 define DEF_LLVM_VARS
272 # The configure script defines these variables with the target triples
273 # separated by Z. This defines new ones with the expected format.
274 ifeq ($$(CFG_LLVM_ROOT),)
275 CFG_LLVM_BUILD_DIR_$(1):=$$(CFG_LLVM_BUILD_DIR_$(subst -,_,$(1)))
276 CFG_LLVM_INST_DIR_$(1):=$$(CFG_LLVM_INST_DIR_$(subst -,_,$(1)))
277 else
278 CFG_LLVM_INST_DIR_$(1):=$$(CFG_LLVM_ROOT)
279 endif
280
281 # Any rules that depend on LLVM should depend on LLVM_CONFIG
282 LLVM_CONFIG_$(1):=$$(CFG_LLVM_INST_DIR_$(1))/bin/llvm-config$$(X_$(1))
283 LLVM_MC_$(1):=$$(CFG_LLVM_INST_DIR_$(1))/bin/llvm-mc$$(X_$(1))
284 LLVM_VERSION_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --version)
285 LLVM_BINDIR_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --bindir)
286 LLVM_INCDIR_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --includedir)
287 LLVM_LIBDIR_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --libdir)
288 LLVM_LIBS_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --libs $$(LLVM_COMPONENTS))
289 LLVM_LDFLAGS_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --ldflags)
290 # On FreeBSD, it may search wrong headers (that are for pre-installed LLVM),
291 # so we replace -I with -iquote to ensure that it searches bundled LLVM first.
292 LLVM_CXXFLAGS_$(1)=$$(subst -I, -iquote , $$(shell "$$(LLVM_CONFIG_$(1))" --cxxflags))
293 LLVM_HOST_TRIPLE_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --host-target)
294
295 LLVM_AS_$(1)=$$(CFG_LLVM_INST_DIR_$(1))/bin/llvm-as$$(X_$(1))
296 LLC_$(1)=$$(CFG_LLVM_INST_DIR_$(1))/bin/llc$$(X_$(1))
297
298 endef
299
300 $(foreach host,$(CFG_HOST), \
301  $(eval $(call DEF_LLVM_VARS,$(host))))
302
303 ######################################################################
304 # Exports for sub-utilities
305 ######################################################################
306
307 # Note that any variable that re-configure should pick up needs to be
308 # exported
309
310 export CFG_SRC_DIR
311 export CFG_BUILD_DIR
312 ifdef CFG_VER_DATE
313 export CFG_VER_DATE
314 endif
315 ifdef CFG_VER_HASH
316 export CFG_VER_HASH
317 endif
318 export CFG_VERSION
319 export CFG_VERSION_WIN
320 export CFG_RELEASE
321 export CFG_PACKAGE_NAME
322 export CFG_BUILD
323 export CFG_RELEASE_CHANNEL
324 export CFG_LLVM_ROOT
325 export CFG_PREFIX
326 export CFG_LIBDIR
327 export CFG_LIBDIR_RELATIVE
328 export CFG_DISABLE_INJECT_STD_VERSION
329 ifdef CFG_DISABLE_UNSTABLE_FEATURES
330 CFG_INFO := $(info cfg: disabling unstable features (CFG_DISABLE_UNSTABLE_FEATURES))
331 # Turn on feature-staging
332 export CFG_DISABLE_UNSTABLE_FEATURES
333 endif
334 # Subvert unstable feature lints to do the self-build
335 export CFG_BOOTSTRAP_KEY
336 export RUSTC_BOOTSTRAP_KEY:=$(CFG_BOOTSTRAP_KEY)
337
338 ######################################################################
339 # Per-stage targets and runner
340 ######################################################################
341
342 # Valid setting-strings are 'all', 'none', 'gdb', 'lldb'
343 # This 'function' will determine which debugger scripts to copy based on a
344 # target triple. See debuggers.mk for more information.
345 TRIPLE_TO_DEBUGGER_SCRIPT_SETTING=\
346  $(if $(findstring windows,$(1)),none,$(if $(findstring darwin,$(1)),lldb,gdb))
347
348 STAGES = 0 1 2 3
349
350 define SREQ
351 # $(1) is the stage number
352 # $(2) is the target triple
353 # $(3) is the host triple
354
355 # Destinations of artifacts for the host compiler
356 HROOT$(1)_H_$(3) = $(3)/stage$(1)
357 HBIN$(1)_H_$(3) = $$(HROOT$(1)_H_$(3))/bin
358 ifeq ($$(CFG_WINDOWSY_$(3)),1)
359 HLIB$(1)_H_$(3) = $$(HROOT$(1)_H_$(3))/$$(CFG_LIBDIR_RELATIVE)
360 else
361 ifeq ($(1),0)
362 HLIB$(1)_H_$(3) = $$(HROOT$(1)_H_$(3))/lib
363 else
364 HLIB$(1)_H_$(3) = $$(HROOT$(1)_H_$(3))/$$(CFG_LIBDIR_RELATIVE)
365 endif
366 endif
367
368 # Destinations of artifacts for target architectures
369 TROOT$(1)_T_$(2)_H_$(3) = $$(HLIB$(1)_H_$(3))/rustlib/$(2)
370 TBIN$(1)_T_$(2)_H_$(3) = $$(TROOT$(1)_T_$(2)_H_$(3))/bin
371 TLIB$(1)_T_$(2)_H_$(3) = $$(TROOT$(1)_T_$(2)_H_$(3))/lib
372
373 # Preqrequisites for using the stageN compiler
374 ifeq ($(1),0)
375 HSREQ$(1)_H_$(3) = $$(HBIN$(1)_H_$(3))/rustc$$(X_$(3))
376 else
377 HSREQ$(1)_H_$(3) = \
378         $$(HBIN$(1)_H_$(3))/rustc$$(X_$(3)) \
379         $$(MKFILE_DEPS) \
380         tmp/install-debugger-scripts$(1)_H_$(3)-$$(call TRIPLE_TO_DEBUGGER_SCRIPT_SETTING,$(3)).done
381 endif
382
383 # Prerequisites for using the stageN compiler to build target artifacts
384 TSREQ$(1)_T_$(2)_H_$(3) = \
385         $$(HSREQ$(1)_H_$(3)) \
386         $$(TLIB$(1)_T_$(2)_H_$(3))/libmorestack.a \
387         $$(TLIB$(1)_T_$(2)_H_$(3))/libcompiler-rt.a
388
389 # Prerequisites for a working stageN compiler and libraries, for a specific
390 # target
391 SREQ$(1)_T_$(2)_H_$(3) = \
392         $$(TSREQ$(1)_T_$(2)_H_$(3)) \
393         $$(foreach dep,$$(TARGET_CRATES), \
394             $$(TLIB$(1)_T_$(2)_H_$(3))/stamp.$$(dep)) \
395         tmp/install-debugger-scripts$(1)_T_$(2)_H_$(3)-$$(call TRIPLE_TO_DEBUGGER_SCRIPT_SETTING,$(2)).done
396
397 # Prerequisites for a working stageN compiler and complete set of target
398 # libraries
399 CSREQ$(1)_T_$(2)_H_$(3) = \
400         $$(TSREQ$(1)_T_$(2)_H_$(3)) \
401         $$(HBIN$(1)_H_$(3))/rustdoc$$(X_$(3)) \
402         $$(foreach dep,$$(CRATES),$$(TLIB$(1)_T_$(2)_H_$(3))/stamp.$$(dep))
403
404 ifeq ($(1),0)
405 # Don't run the stage0 compiler under valgrind - that ship has sailed
406 CFG_VALGRIND_COMPILE$(1) =
407 else
408 CFG_VALGRIND_COMPILE$(1) = $$(CFG_VALGRIND_COMPILE)
409 endif
410
411 # Add RUSTFLAGS_STAGEN values to the build command
412 EXTRAFLAGS_STAGE$(1) = $$(RUSTFLAGS_STAGE$(1))
413
414 CFGFLAG$(1)_T_$(2)_H_$(3) = stage$(1)
415
416 endef
417
418 # Same macro/variables as above, but defined in a separate loop so it can use
419 # all the variables above for all archs. The RPATH_VAR setup sometimes needs to
420 # reach across triples to get things in order.
421 #
422 # Defines (with the standard $(1)_T_$(2)_H_$(3) suffix):
423 # * `LD_LIBRARY_PATH_ENV_NAME`: the name for the key to use in the OS
424 #   environment to access or extend the lookup path for dynamic
425 #   libraries.  Note on Windows, that key is `$PATH`, and thus not
426 #   only conflates programs with dynamic libraries, but also often
427 #   contains spaces which confuse make.
428 # * `LD_LIBRARY_PATH_ENV_HOSTDIR`: the entry to add to lookup path for the host
429 # * `LD_LIBRARY_PATH_ENV_TARGETDIR`: the entry to add to lookup path for target
430 #
431 # Below that, HOST_RPATH_VAR and TARGET_RPATH_VAR are defined in terms of the
432 # above settings.
433 #
434 define SREQ_CMDS
435
436 ifeq ($$(OSTYPE_$(3)),apple-darwin)
437   LD_LIBRARY_PATH_ENV_NAME$(1)_T_$(2)_H_$(3) := DYLD_LIBRARY_PATH
438 else
439 ifeq ($$(CFG_WINDOWSY_$(3)),1)
440   LD_LIBRARY_PATH_ENV_NAME$(1)_T_$(2)_H_$(3) := PATH
441 else
442   LD_LIBRARY_PATH_ENV_NAME$(1)_T_$(2)_H_$(3) := LD_LIBRARY_PATH
443 endif
444 endif
445
446 LD_LIBRARY_PATH_ENV_HOSTDIR$(1)_T_$(2)_H_$(3) := \
447     $$(CURDIR)/$$(HLIB$(1)_H_$(3))
448 LD_LIBRARY_PATH_ENV_TARGETDIR$(1)_T_$(2)_H_$(3) := \
449     $$(CURDIR)/$$(TLIB1_T_$(2)_H_$(CFG_BUILD))
450
451 HOST_RPATH_VAR$(1)_T_$(2)_H_$(3) := \
452   $$(LD_LIBRARY_PATH_ENV_NAME$(1)_T_$(2)_H_$(3))=$$(LD_LIBRARY_PATH_ENV_HOSTDIR$(1)_T_$(2)_H_$(3)):$$$$$$(LD_LIBRARY_PATH_ENV_NAME$(1)_T_$(2)_H_$(3))
453 TARGET_RPATH_VAR$(1)_T_$(2)_H_$(3) := \
454   $$(LD_LIBRARY_PATH_ENV_NAME$(1)_T_$(2)_H_$(3))=$$(LD_LIBRARY_PATH_ENV_TARGETDIR$(1)_T_$(2)_H_$(3)):$$$$$$(LD_LIBRARY_PATH_ENV_NAME$(1)_T_$(2)_H_$(3))
455
456 RPATH_VAR$(1)_T_$(2)_H_$(3) := $$(HOST_RPATH_VAR$(1)_T_$(2)_H_$(3))
457
458 # Pass --cfg stage0 only for the build->host part of stage0;
459 # if you're building a cross config, the host->* parts are
460 # effectively stage1, since it uses the just-built stage0.
461 #
462 # This logic is similar to how the LD_LIBRARY_PATH variable must
463 # change be slightly different when doing cross compilations.
464 # The build doesn't copy over all target libraries into
465 # a new directory, so we need to point the library path at
466 # the build directory where all the target libraries came
467 # from (the stage0 build host). Otherwise the relative rpaths
468 # inside of the rustc binary won't get resolved correctly.
469 ifeq ($(1),0)
470 ifneq ($(strip $(CFG_BUILD)),$(strip $(3)))
471 CFGFLAG$(1)_T_$(2)_H_$(3) = stage1
472
473 RPATH_VAR$(1)_T_$(2)_H_$(3) := $$(TARGET_RPATH_VAR$(1)_T_$(2)_H_$(3))
474 endif
475 endif
476
477 STAGE$(1)_T_$(2)_H_$(3) := \
478         $$(Q)$$(RPATH_VAR$(1)_T_$(2)_H_$(3)) \
479                 $$(call CFG_RUN_TARG_$(3),$(1), \
480                 $$(CFG_VALGRIND_COMPILE$(1)) \
481                 $$(HBIN$(1)_H_$(3))/rustc$$(X_$(3)) \
482                 --cfg $$(CFGFLAG$(1)_T_$(2)_H_$(3)) \
483                 $$(CFG_RUSTC_FLAGS) $$(EXTRAFLAGS_STAGE$(1)) --target=$(2)) \
484                 $$(RUSTC_FLAGS_$(2))
485
486 PERF_STAGE$(1)_T_$(2)_H_$(3) := \
487         $$(Q)$$(call CFG_RUN_TARG_$(3),$(1), \
488                 $$(CFG_PERF_TOOL) \
489                 $$(HBIN$(1)_H_$(3))/rustc$$(X_$(3)) \
490                 --cfg $$(CFGFLAG$(1)_T_$(2)_H_$(3)) \
491                 $$(CFG_RUSTC_FLAGS) $$(EXTRAFLAGS_STAGE$(1)) --target=$(2)) \
492                 $$(RUSTC_FLAGS_$(2))
493
494 endef
495
496 $(foreach build,$(CFG_HOST), \
497  $(eval $(foreach target,$(CFG_TARGET), \
498   $(eval $(foreach stage,$(STAGES), \
499    $(eval $(call SREQ,$(stage),$(target),$(build))))))))
500
501 $(foreach build,$(CFG_HOST), \
502  $(eval $(foreach target,$(CFG_TARGET), \
503   $(eval $(foreach stage,$(STAGES), \
504    $(eval $(call SREQ_CMDS,$(stage),$(target),$(build))))))))
505
506 ######################################################################
507 # rustc-H-targets
508 #
509 # Builds a functional Rustc for the given host.
510 ######################################################################
511
512 define DEF_RUSTC_STAGE_TARGET
513 # $(1) == architecture
514 # $(2) == stage
515
516 rustc-stage$(2)-H-$(1): \
517         $$(foreach target,$$(CFG_TARGET),$$(SREQ$(2)_T_$$(target)_H_$(1)))
518
519 endef
520
521 $(foreach host,$(CFG_HOST), \
522  $(eval $(foreach stage,1 2 3, \
523   $(eval $(call DEF_RUSTC_STAGE_TARGET,$(host),$(stage))))))
524
525 rustc-stage1: rustc-stage1-H-$(CFG_BUILD)
526 rustc-stage2: rustc-stage2-H-$(CFG_BUILD)
527 rustc-stage3: rustc-stage3-H-$(CFG_BUILD)
528
529 define DEF_RUSTC_TARGET
530 # $(1) == architecture
531
532 rustc-H-$(1): rustc-stage2-H-$(1)
533 endef
534
535 $(foreach host,$(CFG_TARGET), \
536  $(eval $(call DEF_RUSTC_TARGET,$(host))))
537
538 rustc-stage1: rustc-stage1-H-$(CFG_BUILD)
539 rustc-stage2: rustc-stage2-H-$(CFG_BUILD)
540 rustc-stage3: rustc-stage3-H-$(CFG_BUILD)
541 rustc: rustc-H-$(CFG_BUILD)
542
543 rustc-H-all: $(foreach host,$(CFG_HOST),rustc-H-$(host))
544
545 ######################################################################
546 # Entrypoint rule
547 ######################################################################
548
549 .DEFAULT_GOAL := all
550
551 define ALL_TARGET_N
552 ifneq ($$(findstring $(1),$$(CFG_HOST)),)
553 # This is a host
554 all-target-$(1)-host-$(2): $$(CSREQ2_T_$(1)_H_$(2))
555 else
556 # This is a target only
557 all-target-$(1)-host-$(2): $$(SREQ2_T_$(1)_H_$(2))
558 endif
559 endef
560
561 $(foreach target,$(CFG_TARGET), \
562  $(foreach host,$(CFG_HOST), \
563  $(eval $(call ALL_TARGET_N,$(target),$(host)))))
564
565 ALL_TARGET_RULES = $(foreach target,$(CFG_TARGET), \
566         $(foreach host,$(CFG_HOST), \
567  all-target-$(target)-host-$(host)))
568
569 all: $(ALL_TARGET_RULES) $(GENERATED) docs
570
571 ######################################################################
572 # Build system documentation
573 ######################################################################
574
575 # $(1) is the name of the doc <section> in Makefile.in
576 # pick everything between tags | remove first line | remove last line
577 # | remove extra (?) line | strip leading `#` from lines
578 SHOW_DOCS = $(Q)awk '/<$(1)>/,/<\/$(1)>/' $(S)/Makefile.in | sed '1d' | sed '$$d' | sed 's/^\# \?//'
579
580 help:
581         $(call SHOW_DOCS,help)
582
583 tips:
584         $(call SHOW_DOCS,tips)
585
586 nitty-gritty:
587         $(call SHOW_DOCS,nitty-gritty)