How to Compile Openssl for linux-mips32 on a windows machine?

529 Views Asked by At

I have been struggling to build openssl for linux-mips32 using VS2015x native Tools. I have set up perl and use the following command to configure:

perl Configure linux-mips32
    --prefix=C:\Users\srivaspr\Downloads\openssl-1.0.2k.tar\openssl\builder 
    --openssldir=C:\Users\srivaspr\Downloads\openssl-1.0.2k.tar\openssl\builder

The configuration command works fine.

But when I use make command it gives the following error:

making all in crypto...
make[1]: Entering directory 'C:/Users/srivaspr/Downloads/openssl-1.0.2k.tar/openssl/crypto'
gcc -I. -I.. -I../include  -DOPENSSL_THREADS -D_REENTRANT -DDSO_DLFCN -DHAVE_DLFCN_H -mips2 -mabi=32 -O3 -Wall -DBN_DIV3W -DOPENSSL_BN_ASM_MONT -DSHA1_ASM -DSHA256_ASM -DAES_ASM   -c -o cryptlib.o cryptlib.c
gcc: error: unrecognized argument in option '-mabi=32'
gcc: note: valid arguments to '-mabi=' are: ms sysv
gcc: error: unrecognized command line option '-mips2'
make[1]: *** [<builtin>: cryptlib.o] Error 1
make[1]: Leaving directory 'C:/Users/srivaspr/Downloads/openssl-1.0.2k.tar/openssl/crypto'
make: *** [Makefile:287: build_crypto] Error 1

I have searched through the internet multiple times but could not find anything relevant. Any help would be appreciated.

0

There are 0 best solutions below