/
How can we learn about making OpenSSL?
How can we learn about making OpenSSL?
We started on Windows since it does not ship with:
Perl (used for configuration)
An assembler (used in some optimizations)
We were able to turn off the assembly optimizations with the flag and the no-shared turns off building dll libraries since we don't need them:
perl Configure VC-WIN64A no-shared no-asm
Then we looked at what makefiles were generated.
, multiple selections available,
Related content
Looking at the makefile
Looking at the makefile
Read with this
Let's build OpenSSL from first principles using GNU make
Let's build OpenSSL from first principles using GNU make
More like this
Why is there assembly code injected into Perl files?
Why is there assembly code injected into Perl files?
Read with this
How do you install OpenSSL the traditional way?
How do you install OpenSSL the traditional way?
More like this
OpenSSL Concepts
OpenSSL Concepts
More like this
What dependencies are required for the assembly optimizations?
What dependencies are required for the assembly optimizations?
More like this