https://github.com/yassin522/compiler_project
Simple C Compiler Project at Damascus University using Flex and Bison
https://github.com/yassin522/compiler_project
bison c flex lex yacc
Last synced: over 1 year ago
JSON representation
Simple C Compiler Project at Damascus University using Flex and Bison
- Host: GitHub
- URL: https://github.com/yassin522/compiler_project
- Owner: Yassin522
- Created: 2023-09-20T10:12:17.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-09-21T11:13:29.000Z (almost 3 years ago)
- Last Synced: 2024-04-20T13:44:17.453Z (about 2 years ago)
- Topics: bison, c, flex, lex, yacc
- Language: C
- Homepage:
- Size: 81.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Compiler_Project
## Test
### you can test the project by running ./a.exe test1.c in terminal
---
## Compilation Steps
* flex lex.l
* bison -d parser.y
* gcc parser.tab.c lex.yy.c -w
* ./a.exe test1.c