Skip to content

Commit 6511fe4

Browse files
committed
mk: Include all bins in the windows install
1 parent 59905d1 commit 6511fe4

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

mk/dist.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ LICENSE.txt: $(S)COPYRIGHT $(S)LICENSE-APACHE $(S)LICENSE-MIT
5757
cp $< $@
5858

5959
$(PKG_EXE): rust.iss modpath.iss LICENSE.txt rust-logo.ico \
60-
$(PKG_FILES) all rustc-stage3
60+
$(PKG_FILES) $(CSREQ3_T_$(CFG_BUILD_TRIPLE)_H_$(CFG_BUILD_TRIPLE))
6161
@$(call E, ISCC: $@)
6262
$(Q)"$(CFG_ISCC)" $<
6363
endif

mk/tools.mk

+2-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,8 @@ $(foreach host,$(CFG_HOST_TRIPLES), \
191191
$(foreach target,$(CFG_TARGET_TRIPLES), \
192192
$(eval $(call TOOLS_STAGE_N_TARGET,0,1,$(host),$(target))) \
193193
$(eval $(call TOOLS_STAGE_N_TARGET,1,2,$(host),$(target))) \
194-
$(eval $(call TOOLS_STAGE_N_TARGET,2,3,$(host),$(target)))))
194+
$(eval $(call TOOLS_STAGE_N_TARGET,2,3,$(host),$(target))) \
195+
$(eval $(call TOOLS_STAGE_N_TARGET,3,bogus,$(host),$(target)))))
195196

196197
$(foreach host,$(CFG_HOST_TRIPLES), \
197198
$(eval $(call TOOLS_STAGE_N_HOST,0,1,$(host),$(host))) \

0 commit comments

Comments
 (0)