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