How do you compile OpenSSL for x64?

后端 未结 8 900
粉色の甜心
粉色の甜心 2020-12-03 01:48

After following the instructions in INSTALL.W64 I have two problems:

  • The code is still written to the \"out32\" folder. I need to be able to link to both 32-bi
8条回答
  •  被撕碎了的回忆
    2020-12-03 02:07

    You can also use MSYS+mingw-w64:

    1) download and extract msys to C:\msys
    2) download and extract mingw-w64 to c:\mingw64
    3) run msys postinstall script. When it asks for your mingw installation, point it to C:\mingw64\bin
    4) Extract an openssl daily snapshot (1.0.0 release has a bug). In the source dir run configure mingw64
    make
    make check
    make install
    5) openssl is installed to /local/

提交回复
热议问题