The Carbon language project has a number of tools used to assist in preparing contributions.
In order to set up a machine and git repository for developing on Carbon, a typical tool setup flow is:
- Install package managers.
- Install main tools and any desired optional tools.
- Set up the git repository:
gh repo fork --clone carbon-language/carbon-lang
: this will both create a GitHub fork and clone the repository locallycd carbon-lang
to go into the cloned fork's directory.pre-commit install
to set up pre-commit in the clone.
- Validate your installation by invoking `bazel test //...:all' from the project root. All tests should pass.
Instructions for installing tools can be helpful for installing tooling. These instructions will try to rely on a minimum of managers.
Homebrew is a package manager, and can help install several tools that we recommend.
Our recommended way of installing is to run the canonical install command.
To get the latest version of brew
packages, it will be necessary to
periodically run brew upgrade
.
Carbon requires Python 3.9 or newer. The included pip3
should typically be
used for Python package installation rather than other package managers.
NOTE: Carbon will focus support on Homebrew installs of Python 3.9, but it may not be necessary if you have Python 3.9 installed another way. If you're trying to use a non-Homebrew Python but have issues involving Carbon and Python, please try Homebrew's Python.
Our recommended way of installing is:
brew install python@3.9
pip3 install -U pip
NOTE: pip3
runs may print deprecation warnings referencing
Homebrew/homebrew-core#76621. These will need to be
addressed in the future, but as of August 2021 can be ignored.
To get the latest version of pip3
packages, it will be necessary to
periodically run pip3 list --outdated
, then pip3 install -U <package>
to
upgrade desired packages. Keep in mind when upgrading that version dependencies
may mean packages should be outdated, and not be upgraded.
These tools are key for contributions, primarily focused on validating contributions.
Bazel is Carbon's standard build system. Bazelisk is recommended for installing Bazel.
Our recommended way of installing is:
brew install bazelisk
Clang and LLVM are used to
compile and link Carbon as part of its build. Bazel will also download and build
against a specific upstream LLVM commit. While the Bazel uses upstream LLVM
sources, the project expects the LLVM 12 release (or newer) to be installed with
Clang and other tools in your PATH
for use in building Carbon itself.
Our recommended way of installing is:
brew install llvm
On MacOS only (not Linux), llvm
is keg-only; bear in mind this requires
updating PATH
for it because it's not part of the standard Homebrew path. Read
the output of brew install
for the necessary path changes, or add something to
your PATH
like:
export PATH="$(brew --prefix llvm)/bin:${PATH}"
Carbon expects the PATH
to include the installed tooling. If set, CC
should
also point at clang
. Our build environment will detect the clang
binary
using CC
then PATH
, and will expect the rest of the LLVM toolchain to be
available in the same directory as llvm-ar
. However, various scripts and tools
assume that the LLVM toolchain will be in PATH
, particularly for tools like
clang-format
and clang-tidy
.
TODO: We'd like to use
apt
, but standard LLVM Debian packages are not configured correctly for our needs. We are currently aware of two libc++ issues, 43604 and 46321.
You can also build and install LLVM
yourself if you prefer. The essential
CMake options to pass in order for this to work reliably include:
-DLLVM_ENABLE_PROJECTS=clang;clang-tools-extra;lld
-DLLVM_ENABLE_RUNTIMES=compiler-rt;libcxx;libcxxabi;libunwind
-DRUNTIMES_CMAKE_ARGS=-DLLVM_ENABLE_PER_TARGET_RUNTIME_DIR=OFF;-DCMAKE_POSITION_INDEPENDENT_CODE=ON;-DLIBCXX_ENABLE_STATIC_ABI_LIBRARY=ON;-DLIBCXX_STATICALLY_LINK_ABI_IN_SHARED_LIBRARY=OFF;-DLIBCXX_STATICALLY_LINK_ABI_IN_STATIC_LIBRARY=ON;-DLIBCXX_USE_COMPILER_RT=ON;-DLIBCXXABI_USE_COMPILER_RT=ON;-DLIBCXXABI_USE_LLVM_UNWINDER=ON
However, we primarily test against the Homebrew installation, so if building LLVM and Clang yourself you may hit some issues.
Many build issues result from the particular options clang
and llvm
have
been built with, particularly when it comes to system-installed versions. This
is why we recommend using Homebrew's LLVM.
After installing from Homebrew, you may need to open a new shell to get $PATH
changes. It may also be necessary to run bazel clean
in order to clean up
cached state.
If issues continue, please ask on #build-help, providing the output of the following diagnostic commands:
brew --prefix llvm
echo $CC
which clang
grep llvm_bindir $(bazel info workspace)/bazel-execroot/external/bazel_cc_toolchain/clang_detected_variables.bzl
These commands will help diagnose potential build issues because they'll expose what's occurring with clang detection.
Use the --compilation_mode=dbg
argument to bazel build
in order to compile
with debugging enabled. For example:
bazel build --compilation_mode=dbg //explorer
Then debugging works with GDB:
gdb bazel-bin/explorer/explorer
Note that LLVM uses DWARF v5 debug symbols, which means that GDB version 10.1 or newer is required. If you see an error like this:
Dwarf Error: DW_FORM_strx1 found in non-DWO CU
It means that the version of GDB used is too old, and does not support the DWARF v5 format.
On Linux, you need to have the zlib headers installed. For Debian- and Ubuntu-based distributions, you can install the development package:
sudo apt install zlib1g-dev
We use pre-commit to run various checks. This will automatically run important checks, including formatting.
Our recommended way of installing is:
pip3 install pre-commit
# From within each carbon-language git repository:
pre-commit install
NOTE: There are other ways of installing listed at pre-commit.com, but
pip
is recommended for reliability.
When you have changes to commit to git, a standard pre-commit workflow can look like:
# Let pre-commit fix style issues.
pre-commit run
# Add modifications made by pre-commit.
git add .
# Commit the changes
git commit
When modifying or adding pre-commit hooks, please run
pre-commit run --all-files
to see what changes.
Carbon-maintained tools are provided by the carbon-lang
repository, rather
than a separate install. They are noted here mainly to help findability.
new_proposal.py is a helper for generating the PR and proposal file for a new proposal. It's documented in the proposal template.
NOTE: This requires installing the gh CLI.
pr_comments.py is a helper for scanning comments in GitHub. It's particularly intended to help find threads which need to be resolved.
Options can be seen with -h
. A couple key options to be aware of are:
--long
: Prints long output, with the full comment.--comments-after LOGIN
: Only print threads where the final comment is not from the given user. For example, use when looking for threads that you still need to respond to.--comments-from LOGIN
: Only print threads with comments from the given user. For example, use when looking for threads that you've commented on.
This script may be run directly if gql
is installed:
pip install gql
./github_tools/pr_comments.py <PR#>
It may also be run using bazel
, without installing gql
:
bazel run //github_tools:pr_comments -- <PR#>
The gh CLI supports some GitHub queries, and is used by some scripts.
Our recommended way of installing is:
brew install gh
GitHub Desktop provides a UI for managing git repositories. See the page for installation instructions.
WARNING: Bugs in
rs-git-fsmonitor
and/or Watchman can result inpre-commit
deleting files. If you see files being deleted, disablers-git-fsmonitor
withgit config --unset core.fsmonitor
.
rs-git-fsmonitor is a file system
monitor that uses Watchman to speed up
git on large repositories, such as carbon-lang
.
Our recommended way of installing is:
-
Linux:
If you don't have Rust's Cargo package manager, install it first with the official install command.
brew install watchman cargo install --git https://github.com/jgavris/rs-git-fsmonitor.git # Configure the git repository to use fsmonitor. git config core.fsmonitor rs-git-fsmonitor
-
MacOS:
brew tap jgavris/rs-git-fsmonitor \ https://github.com/jgavris/rs-git-fsmonitor.git brew install rs-git-fsmonitor # Configure the git repository to use fsmonitor. git config core.fsmonitor rs-git-fsmonitor
vim-prettier is a vim integration for Prettier.
If you use vim-prettier, the .prettierrc.yaml
should still apply as long as
config_precedence
is set to the default file-override
. However, we may need
to add additional settings where the vim-prettier
default diverges from
prettier
, as we notice them.
Our recommended way of installing is to use the canonical instructions.
Visual Studio Code is a code editor used by several of us. We provide recommended extensions to assist Carbon development. Some settings changes must be made separately:
- Python › Formatting: Provider:
black
Our recommended way of installing is to use the canonical download.
WARNING: Visual Studio Code modifies the
PATH
environment variable, particularly in the terminals it creates. ThePATH
difference can causebazel
to detect different startup options, discarding its build cache. As a consequence, it's recommended to use either normal terminals or Visual Studio Code to runbazel
, not both in combination. Visual Studio Code can still be used for other purposes, such as editing files, without interfering withbazel
.
To support developers join the project without deploying the build env, we
provide VSCode DevContainer
.
- Install VSCode and Docker;
- Install the plugin
ms-vscode-remote.remote-containers
under VSCode; - Open
Carbon
project folder in VSCode;
Visual Studio Code detects the new files and opens a message box saying:Folder contains a Dev Container configuration file. Reopen to folder to develop in a container.
- Select the
Reopen in Container
button to reopen the folder in the container created by the.devcontainer/Dockerfile
file; - And then, you are ready to start writing code.
If you're using pre-commit, it will run these tools. Installing and running them
manually is entirely optional, as they can be run without being installed
through pre-commit run
, but install instructions are still noted here for
direct execution.
We use Black to format Python code. Although Prettier is used for most languages, it doesn't support Python.
Our recommended way of installing is:
pip install black
We use codespell to spellcheck common errors. This won't catch every error; we're trying to balance true and false positives.
Our recommended way of installing is:
pip install codespell
We use Prettier for formatting. There is an rc file for configuration.
Our recommended way of installing is to use the canonical instructions.