Skip to content

Commit dd76781

Browse files
committed
Revise linker installation instructions. Fixes #2151.
1 parent f1f8b73 commit dd76781

File tree

1 file changed

+15
-7
lines changed

1 file changed

+15
-7
lines changed

src/ch01-01-installation.md

+15-7
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,21 @@ for your password. If the install is successful, the following line will appear:
3939
Rust is installed now. Great!
4040
```
4141

42-
Additionally, you’ll need a linker of some kind. It’s likely one is already
43-
installed, but when you try to compile a Rust program and get errors indicating
44-
that a linker could not execute, that means a linker isn’t installed on your
45-
system and you’ll need to install one manually. C compilers usually come with
46-
the correct linker. Check your platform’s documentation for how to install a C
47-
compiler. Also, some common Rust packages depend on C code and will need a C
48-
compiler. Therefore, it might be worth installing one now.
42+
You will also need a linker, which is a program that Rust uses to join its
43+
compiled outputs into one file. It is likely you already have one. If you get
44+
linker errors, you should install a C compiler, which will typically include a
45+
linker. A C compiler is also useful because some common Rust packages depend on
46+
C code and will need a C compiler.
47+
48+
On macOS, you can get a C compiler by running:
49+
50+
```console
51+
$ xcode-select --install
52+
```
53+
54+
Linux users should generally install GCC or Clang, according to their
55+
distribution's documentation. For example, if you use Ubuntu, you can install
56+
the `build-essential` package.
4957

5058
### Installing `rustup` on Windows
5159

0 commit comments

Comments
 (0)