-
-
Notifications
You must be signed in to change notification settings - Fork 63
Downloading and Building
To get started with Lingua Franca immediately, download Epoch
(our IDE) and/or lfc
(our command-line compiler) from one of the following releases:
IMPORTANT NOTE: MacOS will report that lflang.app
is broken because it was not signed. To execute it, please run
xattr -cr Epoch.app
first on the command line. This must be run in the directory where you have Epoch.app (or you can provide a full path). Eventually, we will provide a signed download.
If you plan to just use the command-line compiler, you may want a language plugin for Vim and Neovim. See the installation instructions.
If you plan to contribute to Lingua Franca, or if you want to keep up to date as the project evolves, you will need to work from the git repository on GitHub. There are several ways to do this:
- Recommended: Oomph setup for Eclipse: Follow the Developer Eclipse setup with Oomph instructions.
- You can Clone the Repository and build manually using gradle or maven.
- Gradle:
./gradlew assemble
(thebuild
also performs tests, which takes a long time) - Maven:
mvn compile
(you need to install Maven first)
- Some of code generator components are written in Kotlin, which is not supported by Eclipse. If you want a Kotlin-friendly developer environment using IntelliJ, you can follow the Developer IntelliJ Setup (for Kotlin) instructions to set it up. To build the Lingua Franca IDE (Epoch) with Kotlin-based code generators enabled (which is not possible with the Eclipse setup), please see the instructions in Running Lingua Franca IDE (Epoch) with Kotlin based Code Generators Enabled (without Eclipse Environment).