diff options
| author | pingzing <[email protected]> | 2016-03-14 02:12:32 +0200 |
|---|---|---|
| committer | pingzing <[email protected]> | 2016-03-14 02:12:32 +0200 |
| commit | f615626d08314714e505dd18eb5935c085abbadd (patch) | |
| tree | 0e9d80e939ea370b30263591ddff33a03f045013 | |
| parent | Clarify windows build instructions (diff) | |
| download | rust-openssl-f615626d08314714e505dd18eb5935c085abbadd.tar.xz rust-openssl-f615626d08314714e505dd18eb5935c085abbadd.zip | |
Fix order of 32- and 64-bit for mingw toolchain
| -rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -61,12 +61,12 @@ and then install the mingw-w64 toolchain. 32-bit: ```bash -pacman -S mingw-w64-x86_64-toolchain +pacman -S mingw-w64-i686-toolchain ``` 64-bit: ```bash -pacman -S mingw-w64-i686-toolchain +pacman -S mingw-w64-x86_64-toolchain ``` Alternatively, install OpenSSL from [here][1]. Cargo will not be able to find OpenSSL if it's |