ANTLR

Download ANTLR

Looking for ANTLR v3?

The latest version of ANTLR is 4.13.1, released September 4, 2023. As of 4.13.1, we have these code generation targets:

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

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.1:

<dependency> 
  <groupId>org.antlr</groupId> 
  <artifactId>antlr4</artifactId> 
  <version>4.13.1</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.1-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:

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

For more prebuilt C++ binaries you can try conan.io.

Go Target

Install it on your GOPATH via: go get github.com/antlr/antlr4/runtime/Go/antlr/v4

Swift Target

Due to unstable ABI of Swift language, there will not be a single "library" for the Swift ANTLR runtime for now. To get Swift ANTLR runtime, clone the ANTLR repository. Open it in finder. From the root directory of the repo, go to runtime/Swift folder. You will see the Xcode project manifest file: Antlr4.xcodeproj. Drag it into your project. See Swift target notes for more info.

Source Repository

Everything's up at github.

Previous Versions

Take your pick of binaries etc... from download directory or see the different versions at github.