Create Your First Claro Project with Bazel!
Claro is fundamentally designed around a deep integration with the extremely powerful Bazel build system - which enables Claro's incremental builds, external package management, extremely flexible module system, and build-time metaprogramming capabilities - so you'll need to do a bit of Bazel-related setup to prepare your Claro project.
You'll only need to do this once! Bazel does not mandate monorepo style development, but it really shines when used in that context. From this single Bazel project, you'll be able to write, build, and run whatever (related or unrelated) Claro programs as you see fit.
Follow the below steps to set up your first Claro project with Bazel!
1 - Install Bazel (Required)
Simply install Bazel - follow these instructions to install via Bazelisk.
Note: It's an explicit non-goal of Claro to support any other non-Bazel build environment.
2 - Auto-Generate Your Project
Get create_claro_project.sh
from the
latest Release
and run this command:
$ ./create_claro_project.sh <project name>
Note: The below recording was made with asciinema - try pausing and copying any text.
You can delete the create_claro_project.sh
script once you're done with this initial setup.
2 (Alternative) - Manually Copy Configuration of Example Project
Follow the example Claro project configuration at examples/bzlmod/.
Supported Operating Systems
As Claro is still firmly in development, it has only been tested on macOS. You may run into trouble running it on another OS as there are some known portability issues building the Claro compiler from source (currently the only supported way to consume the compiler).
Your First Claro Program
Continue on to the next section to learn how to build and run your first Claro program!