https://github.com/noot/csc467-lab1
implementation of a lexical analyzer
https://github.com/noot/csc467-lab1
Last synced: 21 days ago
JSON representation
implementation of a lexical analyzer
- Host: GitHub
- URL: https://github.com/noot/csc467-lab1
- Owner: noot
- Created: 2018-09-16T12:35:38.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-10-07T20:49:42.000Z (almost 8 years ago)
- Last Synced: 2025-03-03T00:15:47.210Z (over 1 year ago)
- Language: C
- Size: 104 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`