https://github.com/noot/csc467-lab2
implementation of a parser
https://github.com/noot/csc467-lab2
Last synced: about 2 months ago
JSON representation
implementation of a parser
- Host: GitHub
- URL: https://github.com/noot/csc467-lab2
- Owner: noot
- Created: 2018-10-09T19:09:06.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-10-22T02:23:05.000Z (almost 8 years ago)
- Last Synced: 2025-03-03T00:15:47.217Z (over 1 year ago)
- Language: C
- Size: 84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
to compile scanner.l: `flex scanner.l`
to compile parser.y: `bison -d parser.y`
to compile generated c files: `gcc lex.yy.c parser.tab.c`
to make project: `make`
to run compiler467 with trace scanner and input file: `./compiler467 -Tn test.in`