Openssl cross compiling for ARM and host: windows machine + gcc

0

I am trying to build openssl library for one of my project. but all the online data I am getting is regarding linux environment. so my environment is... host: windows 7/ x86 target: ARM M4/kinetis k61 target OS: MQX Compiler: gcc I am using cygwin. and openssl 1.0.1t following this link...https://how-to-build-for-arm.wikispaces.com/openssl can anyone please guide me with this?

Preet Metha

Posted 2016-06-06T11:30:58.713

Reputation: 11

Cross-compiling OpenSSL from a Windows host is very unusual, but... Try ./Configure LIST for available targets. If the compiler supports the architecture, you should be able to ./Configre linux-armv4. – jww – 2016-06-27T04:49:44.600

Instead of cross-compiling from Windows, you usually use a Linux host. Since you have a Windows machine, you should be able to do it with VirtualBox. Install VirtualBox, and then setup a Ubuntu VM.

– jww – 2016-06-27T04:50:52.543

No answers