mooigraph 3ddfecfb34 added a re-compilation of GNU Bison 1 parser generator 3 vuotta sitten
..
COPYING 3ddfecfb34 added a re-compilation of GNU Bison 1 parser generator 3 vuotta sitten
LR0.c 3ddfecfb34 added a re-compilation of GNU Bison 1 parser generator 3 vuotta sitten
Makefile 3ddfecfb34 added a re-compilation of GNU Bison 1 parser generator 3 vuotta sitten
README 3ddfecfb34 added a re-compilation of GNU Bison 1 parser generator 3 vuotta sitten
REFERENCES 3ddfecfb34 added a re-compilation of GNU Bison 1 parser generator 3 vuotta sitten
allocate.c 3ddfecfb34 added a re-compilation of GNU Bison 1 parser generator 3 vuotta sitten
bison.1 3ddfecfb34 added a re-compilation of GNU Bison 1 parser generator 3 vuotta sitten
bison.cld 3ddfecfb34 added a re-compilation of GNU Bison 1 parser generator 3 vuotta sitten
bison.hairy 3ddfecfb34 added a re-compilation of GNU Bison 1 parser generator 3 vuotta sitten
bison.simple 3ddfecfb34 added a re-compilation of GNU Bison 1 parser generator 3 vuotta sitten
bison1.hairy 3ddfecfb34 added a re-compilation of GNU Bison 1 parser generator 3 vuotta sitten
bison1.simple 3ddfecfb34 added a re-compilation of GNU Bison 1 parser generator 3 vuotta sitten
build.com 3ddfecfb34 added a re-compilation of GNU Bison 1 parser generator 3 vuotta sitten
calc.output 3ddfecfb34 added a re-compilation of GNU Bison 1 parser generator 3 vuotta sitten
calc.tab.c 3ddfecfb34 added a re-compilation of GNU Bison 1 parser generator 3 vuotta sitten
calc.y 3ddfecfb34 added a re-compilation of GNU Bison 1 parser generator 3 vuotta sitten
closure.c 3ddfecfb34 added a re-compilation of GNU Bison 1 parser generator 3 vuotta sitten
conflicts.c 3ddfecfb34 added a re-compilation of GNU Bison 1 parser generator 3 vuotta sitten
derives.c 3ddfecfb34 added a re-compilation of GNU Bison 1 parser generator 3 vuotta sitten
dsmake.output 3ddfecfb34 added a re-compilation of GNU Bison 1 parser generator 3 vuotta sitten
files.c 3ddfecfb34 added a re-compilation of GNU Bison 1 parser generator 3 vuotta sitten
files.h 3ddfecfb34 added a re-compilation of GNU Bison 1 parser generator 3 vuotta sitten
getargs.c 3ddfecfb34 added a re-compilation of GNU Bison 1 parser generator 3 vuotta sitten
gram.c 3ddfecfb34 added a re-compilation of GNU Bison 1 parser generator 3 vuotta sitten
gram.h 3ddfecfb34 added a re-compilation of GNU Bison 1 parser generator 3 vuotta sitten
lalr.c 3ddfecfb34 added a re-compilation of GNU Bison 1 parser generator 3 vuotta sitten
lex.c 3ddfecfb34 added a re-compilation of GNU Bison 1 parser generator 3 vuotta sitten
lex.h 3ddfecfb34 added a re-compilation of GNU Bison 1 parser generator 3 vuotta sitten
machine.h 3ddfecfb34 added a re-compilation of GNU Bison 1 parser generator 3 vuotta sitten
main.c 3ddfecfb34 added a re-compilation of GNU Bison 1 parser generator 3 vuotta sitten
new.h 3ddfecfb34 added a re-compilation of GNU Bison 1 parser generator 3 vuotta sitten
nullable.c 3ddfecfb34 added a re-compilation of GNU Bison 1 parser generator 3 vuotta sitten
output.c 3ddfecfb34 added a re-compilation of GNU Bison 1 parser generator 3 vuotta sitten
print.c 3ddfecfb34 added a re-compilation of GNU Bison 1 parser generator 3 vuotta sitten
reader.c 3ddfecfb34 added a re-compilation of GNU Bison 1 parser generator 3 vuotta sitten
state.h 3ddfecfb34 added a re-compilation of GNU Bison 1 parser generator 3 vuotta sitten
symtab.c 3ddfecfb34 added a re-compilation of GNU Bison 1 parser generator 3 vuotta sitten
symtab.h 3ddfecfb34 added a re-compilation of GNU Bison 1 parser generator 3 vuotta sitten
types.h 3ddfecfb34 added a re-compilation of GNU Bison 1 parser generator 3 vuotta sitten
vmsgetargs.c 3ddfecfb34 added a re-compilation of GNU Bison 1 parser generator 3 vuotta sitten
vmshlp.mar 3ddfecfb34 added a re-compilation of GNU Bison 1 parser generator 3 vuotta sitten
warshall.c 3ddfecfb34 added a re-compilation of GNU Bison 1 parser generator 3 vuotta sitten

README

bison-1.00 from 1988 recompiled and changed such that it compiles with gcc-8.3 in 2021 see the file dsmake.output

just type 'make' and a bison1 executable is compiled.
path for the skeletons given to file.c is fixed to
this dir to prevent conflicts with newer bison installed.
'make install' is intentionally turned off, see makefile.

bison -d option generates a .tab.h output file
bison -v option generates a calc.output file
bison -y option generates y.tab.c and y.tab.h like yacc does
bison -o outputfile generated output to another file

test to run calc.y:
./bison1 calc.y
gcc calc.tab.c
./a.out
3+3
6
ctrl-d