diff options
| author | Bryce Van Dyk <bryce@vandyk.net.nz> | 2015-10-20 21:02:19 +1300 |
|---|---|---|
| committer | Bryce Van Dyk <bryce@vandyk.net.nz> | 2015-10-20 21:02:19 +1300 |
| commit | 3ed49ef6f3bcf4cdd4ae3fde4951848f905f02d2 (patch) | |
| tree | 3490a868cb319d69d8faf46d3ddb1c5fdbdadfde | |
| parent | a63b0f045d4fd37de8febdeae592bc35fbcff3ea (diff) | |
| download | rust-3ed49ef6f3bcf4cdd4ae3fde4951848f905f02d2.tar.gz rust-3ed49ef6f3bcf4cdd4ae3fde4951848f905f02d2.zip | |
Add example to install git in MSYS2
| -rw-r--r-- | README.md | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/README.md b/README.md index c4a3becacb4..9d85487f793 100644 --- a/README.md +++ b/README.md @@ -72,6 +72,9 @@ Read ["Installing Rust"] from [The Book]. $ pacman -S mingw-w64-i686-toolchain $ pacman -S mingw-w64-x86_64-toolchain + # Make git available in MSYS2 (if not already available on path) + $ pacman -S git + $ pacman -S base-devel ``` @@ -98,7 +101,7 @@ Building the documentation requires building the compiler, so the above details will apply. Once you have the compiler built, you can ```sh -$ make docs NO_REBUILD=1 +$ make docs NO_REBUILD=1 ``` To make sure you don’t re-build the compiler because you made a change |
