Clone OpenSSL and create a build
directory:
# git clone https://github.com/openssl/openssl.git
# cd openssl
# mkdir build
# cd build
List the supported build platforms of openssl
:
# ../Configure LIST
BS2000-OSD
BSD-generic32
BSD-generic64
......
Because there is no illumos
option, use Solaris
instead. At the same time, I want to build in debug
mode:
# ../Configure solaris64-x86_64-gcc --debug
# make
# make test
That’s all!
The build script that is used to create the OmniOS openssl package can be viewed at
https://github.com/omniosorg/omnios-build/blob/master/build/openssl/build.sh
There are a couple of other options used there that you might be interested in.
Hi Fred,
Thanks very much!