0
A
回答
1
我注意到你正在構建openssl 1.1。構建過程與以前的版本有點不同。
https://github.com/openssl/openssl/blob/OpenSSL_1_1_0c/INSTALL
在Windows(只挑選配置的目標之一):
$ perl Configure { VC-WIN32 | VC-WIN64A | VC-WIN64I | VC-CE }
$ nmake
$ nmake test
$ nmake install
https://github.com/openssl/openssl/blob/OpenSSL_1_0_0-stable/INSTALL.W32
Visual C++
----------
If you want to compile in the assembly language routines with Visual
C++, then you will need already mentioned Netwide Assembler binary,
nasmw.exe or nasm.exe, to be available on your %PATH%.
Firstly you should run Configure with platform VC-WIN32:
> perl Configure VC-WIN32 --prefix=c:\some\openssl\dir
Where the prefix argument specifies where OpenSSL will be installed to.
Next you need to build the Makefiles and optionally the assembly
language files:
- If you don't want to use the assembly language files at all then run:
> perl Configure VC-WIN32 no-asm --prefix=c:/some/openssl/dir
> ms\do_ms
相關問題
- 1. 如何使用OpenSSL Windows的SSL_CERT_FILE(OpenSSL 1.0.1c)
- 2. Windows中,OpenSSL的生成key.pem和cert.pem
- 3. 如何在Windows 7 64bit上安裝OpenSSL
- 4. 如何在Windows 7上更新OpenSSL?
- 5. OpenSSL的Windows:在REQ
- 6. 如何使用Android NDK和Windows構建OpenSSL以生成libcrypto.a
- 7. 如何(成功)從命令行openSSL解碼編碼密碼?
- 8. openssl vs windows capi
- 9. 如何爲Windows XP構建Openssl TLS V1.2?
- 10. 如何驗證使用OpenSSL功能
- 11. 在windows上編譯OpenSSL 1.0.1
- 12. 如何在windows xp for wince 6.0中構建openssl
- 13. Erlang無法在Windows中找到OpenSSL庫
- 14. 使用MinGW64在Windows中創建OpenSSL dll
- 15. 在Windows 7中使用OpenSSL的問題
- 16. Python在Windows中扭曲OpenSSL錯誤
- 17. 在OpenSSL中使用HMAC和EVP功能
- 18. Openssl in windows問題
- 19. 如何在Java中禁用Windows功能?
- 20. 如何將openssl集成到Android?
- 21. 如何構建openssl來生成dylib
- 22. 如何使用openSSL生成SSL證書?
- 23. 如何在JAVA中生成RSA密鑰對(採用openssl格式)
- 24. 如何在NodeJS中使用openssl-wrapper生成RSA密鑰?
- 25. 如何在OpenSSL中使用AES-128-ECB Alg生成PKCS8密鑰
- 26. 如何在Ubuntu上將OpenSSL從OpenSSL 1.0.1f更新到OpenSSL 1.0.2g?
- 27. 在x86上的OpenSSL編譯失敗思想成功的爲x86_64
- 28. 如何在Windows上成功運行'rake test:acceptance'?
- 29. OpenSSL的生成密鑰對OSX OpenSSL的
- 30. 如何在Windows中生成OSD?
謝謝,我成功地使該方法的OpenSSL在github上的https:/ /github.com/openssl/openssl/blob/OpenSSL_1_0_0-stable/INSTALL.W32,Thandkyou非常多 – Xing
不客氣。如果你認爲這個答案有助於你解決問題,你可以接受這個答案,然後其他人可以跳過回答這個問題並節省他們的時間。 – Will