Skip to content

Commit 32e6a4d

Browse files
committed
---
yaml --- r: 6595 b: refs/heads/master c: 15d6032 h: refs/heads/master i: 6593: fc79fb3 6591: 8e98146 v: v3
1 parent 20e2777 commit 32e6a4d

File tree

2 files changed

+16
-4
lines changed

2 files changed

+16
-4
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
refs/heads/master: 84bbc12444e9b90f17c69fba2cab6538b55de241
2+
refs/heads/master: 15d60326f67e84608ff8b2ffe1984d9b4d600ba6

trunk/Makefile.in

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -353,12 +353,24 @@ $(foreach build,$(CFG_TARGET_TRIPLES), \
353353
# Builds a functional Rustc for the given host.
354354
######################################################################
355355

356-
define DEF_RUSTC_TARGET
356+
define DEF_RUSTC_STAGE_TARGET
357357
# $(1) == architecture
358+
# $(2) == stage
358359

359-
rustc-H-$(1): \
360+
rustc-stage$(2)-H-$(1): \
360361
$$(foreach target,$$(CFG_TARGET_TRIPLES), \
361-
$$(SREQ3_T_$$(target)_H_$(1)))
362+
$$(SREQ$(2)_T_$$(target)_H_$(1)))
363+
364+
endef
365+
366+
$(foreach host,$(CFG_TARGET_TRIPLES), \
367+
$(eval $(foreach stage,1 2 3, \
368+
$(eval $(call DEF_RUSTC_STAGE_TARGET,$(host),$(stage))))))
369+
370+
define DEF_RUSTC_TARGET
371+
# $(1) == architecture
372+
373+
rustc-H-$(1): rustc-stage3-H-$(1)
362374
endef
363375

364376
$(foreach host,$(CFG_TARGET_TRIPLES), \

0 commit comments

Comments
 (0)