mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-25 13:24:22 +00:00
Aligning text with its bullet
This commit is contained in:
parent
b6271539d2
commit
bdda477956
26
README.md
26
README.md
@ -217,25 +217,25 @@ See [Configurations.md](Configurations.md) for details.
|
||||
* If you get an error like `error while loading shared libraries` while starting
|
||||
up rustfmt you should try the following:
|
||||
|
||||
On Linux:
|
||||
On Linux:
|
||||
|
||||
```
|
||||
export LD_LIBRARY_PATH=$(rustc --print sysroot)/lib:$LD_LIBRARY_PATH
|
||||
```
|
||||
```
|
||||
export LD_LIBRARY_PATH=$(rustc --print sysroot)/lib:$LD_LIBRARY_PATH
|
||||
```
|
||||
|
||||
On MacOS:
|
||||
On MacOS:
|
||||
|
||||
```
|
||||
export DYLD_LIBRARY_PATH=$(rustc --print sysroot)/lib:$DYLD_LIBRARY_PATH
|
||||
```
|
||||
```
|
||||
export DYLD_LIBRARY_PATH=$(rustc --print sysroot)/lib:$DYLD_LIBRARY_PATH
|
||||
```
|
||||
|
||||
On Windows (Git Bash/Mingw):
|
||||
On Windows (Git Bash/Mingw):
|
||||
|
||||
```
|
||||
export PATH=$(rustc --print sysroot)/lib/rustlib/x86_64-pc-windows-gnu/lib/:$PATH
|
||||
```
|
||||
```
|
||||
export PATH=$(rustc --print sysroot)/lib/rustlib/x86_64-pc-windows-gnu/lib/:$PATH
|
||||
```
|
||||
|
||||
(Substitute `x86_64` by `i686` and `gnu` by `msvc` depending on which version of rustc was used to install rustfmt).
|
||||
(Substitute `x86_64` by `i686` and `gnu` by `msvc` depending on which version of rustc was used to install rustfmt).
|
||||
|
||||
## License
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user