about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMaximilian Roos <m@maxroos.com>2018-08-28 21:57:15 -0400
committerMaximilian Roos <m@maxroos.com>2018-08-28 21:57:15 -0400
commitaf7b341a50ae9fd94d2e6aec0fa75486a45f1691 (patch)
tree120220fd69a6765eb7c774a62bf91136ddc51491
parent7d60e3a1ad6551afd013b19f59c308ad2dbaa266 (diff)
parent4f3c20c6b17da5caa8c1de9e3ce9caa4f200b729 (diff)
Merge branch 'master' into clippy2
-rw-r--r--README.md23
1 files changed, 0 insertions, 23 deletions
diff --git a/README.md b/README.md
index 04f9f2f928c..0fdd47f33f1 100644
--- a/README.md
+++ b/README.md
@@ -186,29 +186,6 @@ See [Configurations.md](Configurations.md) for details.
 * If you're having issues compiling Rustfmt (or compile errors when trying to
   install), make sure you have the most recent version of Rust installed.
 
-* If you get an error like `error while loading shared libraries` while starting
-  up rustfmt you should try the following:
-
-  On Linux:
-
-  ```
-  export LD_LIBRARY_PATH=$(rustc --print sysroot)/lib:$LD_LIBRARY_PATH
-  ```
-
-  On MacOS:
-
-  ```
-  export DYLD_LIBRARY_PATH=$(rustc --print sysroot)/lib:$DYLD_LIBRARY_PATH
-  ```
-
-  On Windows (Git Bash/Mingw):
-
-  ```
-  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).
-
 * You can change the way rustfmt emits the changes with the --emit flag:
 
   Example: