summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorBruno Bigras <bigras.bruno@gmail.com>2014-12-10 10:07:11 -0500
committerBruno Bigras <bigras.bruno@gmail.com>2014-12-10 10:07:11 -0500
commit8c255d6dc41900c48bd17d134973d93d8ea48c9b (patch)
tree0ae2260fab3c7f99ff6d391016413a16925ae9d4 /README.md
parent7f9658248fc337d4ec79ce01a90cd1cf3864c43a (diff)
downloadrust-openssl-8c255d6dc41900c48bd17d134973d93d8ea48c9b.zip
Add rustlib 64-bit path in README
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 427f6e47..58a2285b 100644
--- a/README.md
+++ b/README.md
@@ -25,7 +25,7 @@ For some reason, the OpenSSL distribution for Windows is structured differently,
2. Run the installer, making note of where it's installing OpenSSL. The option to copy the libraries to the Windows system directory or `[OpenSSL folder]/bin` is your choice. The latter is probably preferable, and the default.
3. Navigate to `[OpenSSL folder]/lib/MinGW/`, and copy `libeay32.a` and `ssleay32.a` (If 64-bit, then they will have `64` instead of `32`.) to your Rust install's libs folder. The default should be:
* 32-bit: `C:\Program Files (x86)\Rust\bin\rustlib\i686-pc-mingw32\lib`
- * 64-bit: TODO
+ * 64-bit: `C:\Program Files (x86)\Rust\bin\rustlib\x86_64-pc-windows-gnu\lib`
4. Rename `libeay32.a` and `ssleay32.a` to `libcrypto.a` and `libssl.a`, respectively.
5. Run `cargo build`.