Releases: jose-rZM/LL1Checker
Releases · jose-rZM/LL1Checker
Release 2.0 -LL1Checker
This release features the version 2.0 of the LL(1) parser tool, now available as a pre-compiled binary. Designed to assist students and developers in understanding and working with LL(1) grammars, this refined version enchances the application capabilities for analyzing, and validating grammars and inputs.
Requirements
flex
needs to be installed in your OS and in yourPATH
. If you are on windows,winflexbison
is used, the folder must be in yourPATH
.gcc
needs to be installed and in yourPATH
Installation and Usage
- Executable Binary (Linux)
- Simply download and execute with
./ll1
. Make sure the file has execution permissions (chmod +x ll1
)
- Debian Package (.deb)
- Install with
sudo dpkg -i <debian_package>
. After installation, runll1
from any terminal.
- RPM Package (.rpm)
- Install with
sudo dnf install <rpm_package>
.
- Windows Executable (.exe)
- Download and run
LL1.exe
from any terminal.
Acknowledgments
A special thank you to the creators of winflex_bison
https://github.com/lexxmark/winflexbison for their Windows port.