diff options
| author | Steven Fackler <[email protected]> | 2016-08-20 12:50:12 -0400 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2016-08-20 12:55:43 -0400 |
| commit | 2d510e21a371e6fa8663d91edd9e1d1a3cbd88a6 (patch) | |
| tree | f2fa508c694ce106442f3e8327265f670ec4916f | |
| parent | Merge branch 'release' (diff) | |
| download | rust-openssl-2d510e21a371e6fa8663d91edd9e1d1a3cbd88a6.tar.xz rust-openssl-2d510e21a371e6fa8663d91edd9e1d1a3cbd88a6.zip | |
Re-enable 64 bit MSVC
Closes #443
| -rw-r--r-- | appveyor.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/appveyor.yml b/appveyor.yml index 054b88f2..4cd6c231 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -5,8 +5,8 @@ environment: matrix: - TARGET: i686-pc-windows-gnu BITS: 32 -# - TARGET: x86_64-pc-windows-msvc -# BITS: 64 + - TARGET: x86_64-pc-windows-msvc + BITS: 64 install: - ps: Start-FileDownload "http://slproweb.com/download/Win${env:BITS}OpenSSL-1_0_2h.exe" - Win%BITS%OpenSSL-1_0_2h.exe /SILENT /VERYSILENT /SP- /DIR="C:\OpenSSL" |