Project

General

Profile

BuildOpenSSLForAnubisVM » History » Version 2

David RENÉ, 02/17/2023 05:20 AM

1 1 David RENÉ
h1. Build OpenSSL for Anubis VM
2
3
Anubis VM embed the OpenSSL engine itself to be sure we always have the same version with same VM version.
4
5
The GIT source of Anubis VM store only the compressed archive of the used OpenSSL in third_dev directory.
6
7
Since Anubis VM can be built on many OS, we will see after the procedure to use to build the OpenSSL on each OS.
8
9
The following example is based on building the OpenSSL version 1.1.1q.
10
11
*Linux*
12
<pre>
13
cd third_dev/
14
tar xvfz openssl-1.1.1q.tar.gz
15
cd openssl-1.1.1q/
16
./Configure -m32 linux-generic32
17
make
18
</pre>
19 2 David RENÉ
20
*Windows msys (mingw)*
21
<pre>
22
cd third_dev/
23
tar xvfz openssl-1.1.1q.tar.gz
24
cd openssl-1.1.1q/
25
./Configure -m32 mingw
26
make
27
</pre>
28
29
*FreeBSD*
30
<pre>
31
cd third_dev/
32
tar xvfz openssl-1.1.1q.tar.gz
33
cd openssl-1.1.1q/
34
./Configure BSD-generic32
35
make
36
</pre>