Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sour-abh-raj/compiler-design
Programs to understand compiler design concepts.
https://github.com/sour-abh-raj/compiler-design
compiler-design flex lexical-analysis
Last synced: about 1 month ago
JSON representation
Programs to understand compiler design concepts.
- Host: GitHub
- URL: https://github.com/sour-abh-raj/compiler-design
- Owner: Sour-abh-Raj
- License: mit
- Created: 2024-01-29T04:35:04.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-04-16T09:09:10.000Z (9 months ago)
- Last Synced: 2024-04-16T13:15:30.036Z (9 months ago)
- Topics: compiler-design, flex, lexical-analysis
- Language: C
- Homepage:
- Size: 218 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Compiler Design Programs
Programs to understand compiler design concepts.
## Run Locally
Go to the project directory
```bash
cd any-project
```Install dependencies
```bash
main.exe
```## Compile from source
Change directory to source and run flex
```bash
flex <.l file>
```Build binary
```bash
gcc -o lex.yy.c
```Run binary
```bash
main.exe
```## License
[MIT](https://choosealicense.com/licenses/mit/)
## Authors
- [@Sour-abh-Raj](https://www.github.com/Sour-abh-Raj)