OpenSSL Windows x64 Compilation error

前端 未结 4 926
南方客
南方客 2021-01-13 01:56

I\'m getting the following error when trying to compile OpenSSL 1.0, 64 bit:

    ias -o tmp32\\ia64cpuid.obj tmp32\\ia64cpuid.asm
\'ias\' is not recognized a         


        
相关标签:
4条回答
  • 2021-01-13 02:29

    I normally get my OpenSSL windows builds from here. The guy who runs the site has the 64 bit version built so may be able to help if you email him. He's also looking for beta testers I think.

    0 讨论(0)
  • 2021-01-13 02:31

    You've probably chosen VC-WIN64I (as an argument for the perl Configure command), which is a wrong platform in your case. You should have passed VC-WIN64A. "I" stands for "Itanium" and "A" still stands "AMD64".

    Run

    perl Configure VC-WIN64A
    

    and then run "nmake" again, it should work this time.

    0 讨论(0)
  • 2021-01-13 02:48

    For the former problem - I just added to the Path environment variable the path of ias: C:\Program Files\Microsoft Visual Studio 9.0\VC\bin\x86_ia64.

    But after all I compiled it for x64 (VC-WIN64A) with NASM and it worked.

    Thanks.

    0 讨论(0)
  • 2021-01-13 02:50

    Forget all that building - its a nightmare! Someone has done all the hardwork for Win7 64 and kindly put it here

    https://code.google.com/p/openssl-for-windows/downloads/detail?name=openssl-0.9.8k_X64.zip&can=2&q=

    0 讨论(0)
提交回复
热议问题