Download ANTLR
Looking for ANTLR v3?
The latest version of ANTLR is 4.13.2, released August 3, 2024. As of 4.13.2, we have these code generation targets:
- Java
- C# (and an alternate C# target)
- Python (Just 3)
- JavaScript
- TypeScript
- Go
- C++
- Swift
- PHP
- DART
All users should download the ANTLR tool itself and then choose a runtime target below, unless you are using Java which is built into the tool jar.
See Release Notes, README.md, Getting started, ANTLR 4 grammar repository, and How to build ANTLR itself.
Development Tools
There are plug-ins for Intellij, NetBeans, and Eclipse.
ANTLR tool and Java Target
- Complete ANTLR 4.13.2 Java binaries jar. Complete ANTLR 4.13.2 tool, Java runtime and ST 4.0.8, which lets you run the tool and the generated code.
- ANTLR 4.13.2 distribution (zip). Everything you need to build the tool and Java runtime from source.
- ANTLR 4.13.2 Java runtime binaries jar. Only what's needed for building and executing parsers/lexers generated in Java.
The Java jars are OSGi compatible so you should be able to use them within Eclipse.
To use maven, refer to group ID org.antlr and artifact ID antlr4 for the tool itself and antlr4-runtime for the Java runtime library in your pom.xml file. The latest version is 4.13.2:
<dependency> <groupId>org.antlr</groupId> <artifactId>antlr4</artifactId> <version>4.13.2</version> </dependency>
See ANTLR 4 Maven plugin, ANTLR 4 Maven plug-in usage, and ANTLR 4 Maven Plugin API.
ANTLR v4 is written in ANTLR v4.x and StringTemplate 4.3. In antlr-4.13.2-complete.jar, you'll find everything you need to run the ANTLR tool and make its generated parsers work.
C# Target
Via nuget, use Install-Package Antlr4.Runtime.Standard via Package Manager Console.
Sam Harwell, co-author of ANTLR 4, has an Alternative ANTLR 4 C# Target.Python Targets
Install with:
pip install antlr4-python2-runtime
pip install antlr4-python3-runtime
Or, you can download and untar the appropriate package from:
- https://pypi.python.org/pypi/antlr4-python2-runtime
- https://pypi.python.org/pypi/antlr4-python3-runtime
The runtimes are provided in the form of source code, so no additional installation is required.
See Python runtime targets for more information.
JavaScript/TypeScript Target
Install with:npm install antlr4
The runtime is provided in the form of source code, so no additional installation is required. Simply refer to the JavaScript in that zip from your project, and eventually webpack it.
See JavaScript runtime target for more information.
C++ Target
- Mac OS X universal lib binaries antlr4-cpp-runtime-4.13.2-macos.zip (.a, .dylib, .h)
- Use source distribution: antlr4-cpp-runtime-4.13.2-source.zip (.h, .cpp)
Go Target
Install it on your GOPATH via: go get github.com/antlr/antlr4/runtime/Go/antlr/v4