File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -64,6 +64,7 @@ clean$(1)_H_$(2):
64
64
$(Q ) rm -f $$(HBIN$(1 ) _H_$(2 ) ) /rustc$(X )
65
65
$(Q ) rm -f $$(HBIN$(1 ) _H_$(2 ) ) /fuzzer$(X )
66
66
$(Q ) rm -f $$(HBIN$(1 ) _H_$(2 ) ) /cargo$(X )
67
+ $(Q ) rm -f $$(HBIN$(1 ) _H_$(2 ) ) /serializer$(X )
67
68
$(Q ) rm -f $$(HBIN$(1 ) _H_$(2 ) ) /rustdoc$(X )
68
69
$(Q ) rm -f $$(HLIB$(1 ) _H_$(2 ) ) /$(CFG_RUNTIME )
69
70
$(Q ) rm -f $$(HLIB$(1 ) _H_$(2 ) ) /$(CFG_CORELIB )
@@ -87,6 +88,7 @@ clean$(1)_T_$(2)_H_$(3):
87
88
$(Q ) rm -f $$(TBIN$(1 ) _T_$(2 ) _H_$(3 ) ) /rustc$(X )
88
89
$(Q ) rm -f $$(TBIN$(1 ) _T_$(2 ) _H_$(3 ) ) /fuzzer$(X )
89
90
$(Q ) rm -f $$(TBIN$(1 ) _T_$(2 ) _H_$(3 ) ) /cargo$(X )
91
+ $(Q ) rm -f $$(TBIN$(1 ) _T_$(2 ) _H_$(3 ) ) /serializer$(X )
90
92
$(Q ) rm -f $$(TBIN$(1 ) _T_$(2 ) _H_$(3 ) ) /rustdoc$(X )
91
93
$(Q ) rm -f $$(TLIB$(1 ) _T_$(2 ) _H_$(3 ) ) /$(CFG_RUNTIME )
92
94
$(Q ) rm -f $$(TLIB$(1 ) _T_$(2 ) _H_$(3 ) ) /$(CFG_CORELIB )
Original file line number Diff line number Diff line change @@ -5,11 +5,16 @@ GEN_TYPES="syntax::ast::item syntax::ast::def middle::typeck::method_origin \
5
5
middle::freevars::freevar_entry syntax::ast::def_id"
6
6
7
7
# Find serializer tool:
8
- for S in build/* /stage2/bin/serializer; do
8
+ for S in build/* /stage1/bin/serializer; do
9
+
10
+ if [ ! -x " $S " ]; then
11
+ echo " serializer excutable not found; try 'make serializer'"
12
+ exit 1
13
+ fi
9
14
10
15
# Find rustc:
11
16
D=$( dirname " $S " )
12
- R=" ${D} /rustc"
17
+ R=" ${D} /../../stage0/bin/ rustc"
13
18
if [ ! -x " $R " ]; then
14
19
echo " rustc not found or not executable at path '$R '"
15
20
exit 1
You can’t perform that action at this time.
0 commit comments