Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rabishah/Mini-C-Compiler-using-Flex-And-Yacc
A simple mini c compiler
https://github.com/rabishah/Mini-C-Compiler-using-Flex-And-Yacc
Last synced: 3 months ago
JSON representation
A simple mini c compiler
- Host: GitHub
- URL: https://github.com/rabishah/Mini-C-Compiler-using-Flex-And-Yacc
- Owner: rabishah
- Created: 2012-04-25T16:43:55.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2019-10-16T15:05:30.000Z (over 5 years ago)
- Last Synced: 2023-11-07T20:56:23.542Z (over 1 year ago)
- Language: C
- Size: 39.1 KB
- Stars: 108
- Watchers: 14
- Forks: 50
- Open Issues: 2
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
- AwesomeCompiler - Mini-C-Compiler-using-Flex-And-Yacc
README
This is a simple Mini C Compiler using Lex & Yacc.
Compilation Steps
$ lex c.l
$ yacc c.y
$ gcc y.tab.c -ll -ly
$ ./a.out [filename]