2017-01-03 1 views

ответ

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 
+0

Спасибо, я успешно сделать OpenSSL с помощью метода в GitHub HTTPS://github.com/openssl/openssl/blob/OpenSSL_1_0_0-stable/INSTALL.W32, Thandkyou verymuch – Xing

+0

Добро пожаловать. Если вы считаете, что этот ответ помогает решить вашу проблему, вы можете принять этот ответ, тогда другие могут пропустить ответ на этот вопрос и сэкономить свое время. – Will

Смежные вопросы