instructions detailing how to build wolfSSL

pull/526/head
Juliusz Sosinowicz 2025-09-19 14:24:25 +02:00
parent 4b4d179e5d
commit fcd4e021df
1 changed files with 8 additions and 0 deletions

View File

@ -19,6 +19,14 @@ This directory contains a standalone example demonstrating OCSP stapling with dy
## Building
For this example, you need to build wolfSSL with OCSP and session certificate support. The following configuration options are required:
```sh
./configure --enable-ocsp --enable-ocspstapling --enable-ocspstapling2 --enable-cert-setup-cb --enable-sessioncerts
make
make install
```
To build both the server and client, simply run:
```sh