Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(104)

Unified Diff: src/cmd/gc/Makefile

Issue 194085: code review 194085: gc: improved syntax errors (Closed)
Patch Set: code review 194085: gc: improved syntax errors Created 15 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/cmd/gc/bisonerrors » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/cmd/gc/Makefile
===================================================================
--- a/src/cmd/gc/Makefile
+++ b/src/cmd/gc/Makefile
@@ -41,7 +41,7 @@
typecheck.$O\
unsafe.$O\
walk.$O\
- y.tab.$O\
+ y1.tab.$O\
$(LIB): $(OFILES)
ar rsc $(LIB) $(OFILES)
@@ -49,11 +49,19 @@
$(OFILES): $(HFILES)
y.tab.h: $(YFILES)
- bison -y $(YFLAGS) $(YFILES)
+ bison -v -y $(YFLAGS) $(YFILES)
y.tab.c: y.tab.h
test -f y.tab.c && touch y.tab.c
+y1.tab.c: y.tab.c # make yystate global, yytname mutable
+ cat y.tab.c | sed '/ int yystate;/d; s/int yychar;/int yychar, yystate;/; s/static const char \*const yytname/const char *yytname/' >y1.tab.c
+
+yerr.h: bisonerrors go.errors y.tab.h # y.tab.h rule generates y.output too
+ awk -f bisonerrors y.output go.errors >yerr.h
+
+subr.$O: yerr.h
+
builtin.c: builtin.c.boot
cp builtin.c.boot builtin.c
@@ -63,6 +71,6 @@
./mkopnames go.h >opnames.h
clean:
- rm -f *.[568o] enam.c [568].out a.out y.tab.h y.tab.c $(LIB) mkbuiltin1 builtin.c _builtin.c opnames.h
+ rm -f *.[568o] enam.c [568].out a.out y.tab.h y.tab.c y1.tab.c y.output yerr.h $(LIB) mkbuiltin1 builtin.c _builtin.c opnames.h
install: $(LIB)
« no previous file with comments | « no previous file | src/cmd/gc/bisonerrors » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b