@@ -39,13 +39,21 @@ for your password. If the install is successful, the following line will appear:
39
39
Rust is installed now. Great!
40
40
```
41
41
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.
49
57
50
58
### Installing ` rustup ` on Windows
51
59
0 commit comments