Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve formatting of the ippcp_internal README #732

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions external/ippcp_internal/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,19 @@ In order to build your own IPP crypto, please follow below steps:
2. Read the ipp-crypto README to prepare your build environment.
3. Make sure ipp-crypto source code are prepared.
4. Build the target ippcp library with the prepared Makefile:
a. Build the target ippcp library with All-Loads-Mitigation:
1. Build the target ippcp library with All-Loads-Mitigation:
```shell
$ make MITIGATION-CVE-2020-0551=LOAD
b. Build the target ippcp library with Branch-Mitigation:
```
2. Build the target ippcp library with Branch-Mitigation:
```shell
$ make MITIGATION-CVE-2020-0551=CF
c. Build the target ippcp library with No-Mitigation:
```
3. Build the target ippcp library with No-Mitigation:
```shell
$ make
```
The built-out static library `libippcp.a` and header files will be copied into the right place.
Remember to "make clean" before switching the build.
Remember to `make clean` before switching the build.

For IPP crypto reproducible build, please follow the instructions in [reproducibility README.md](../../linux/reproducibility/README.md) to reproduce the prebuilt IPP crypto.