|
|
@@ -270,17 +270,10 @@ As there is no compiler yet, to try out Carbon, you can use the Carbon explorer
|
|
|
to interpret Carbon code and print its output. You can try it out immediately at
|
|
|
[compiler-explorer.com](http://carbon.compiler-explorer.com/).
|
|
|
|
|
|
-To build the Carbon explorer yourself, follow these instructions:
|
|
|
+To build the Carbon explorer yourself, you'll need to install dependencies
|
|
|
+(Bazel, Clang, libc++), and then you can run:
|
|
|
|
|
|
```shell
|
|
|
-# Install bazelisk using Homebrew.
|
|
|
-$ brew install bazelisk
|
|
|
-
|
|
|
-# Install Clang/LLVM using Homebrew.
|
|
|
-# Many Clang/LLVM releases aren't built with options we rely on.
|
|
|
-$ brew install llvm
|
|
|
-$ export PATH="$(brew --prefix llvm)/bin:${PATH}"
|
|
|
-
|
|
|
# Download Carbon's code.
|
|
|
$ git clone https://github.com/carbon-language/carbon-lang
|
|
|
$ cd carbon-lang
|
|
|
@@ -289,9 +282,8 @@ $ cd carbon-lang
|
|
|
$ bazel run //explorer -- ./explorer/testdata/print/format_only.carbon
|
|
|
```
|
|
|
|
|
|
-These instructions assume [Homebrew](https://brew.sh/) is installed; see our
|
|
|
-[contribution tools documentation](/docs/project/contribution_tools.md) for more
|
|
|
-extensive tooling instructions.
|
|
|
+For complete instructions, including installing dependencies, see our
|
|
|
+[contribution tools documentation](/docs/project/contribution_tools.md).
|
|
|
|
|
|
Learn more about the Carbon project:
|
|
|
|