forked from aws/aws-lc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Link libjitterentropy into libcrypto.a (aws#511)
When building static FIPS build we were building a separate `libjitterentropy.a` instead of linking it into `libcrypto.a`. This hasn't caused any issues in our build and test system because we had a `target_link_libraries` directive which instructs CMake to always add `libjitterentropy.a` whenever `libcrypto.a` is linked to another binary. However, if one tries to compile a program and link it with `libcrypto.a` directly, the linker will complain about missing symbol definitions from `libjitterentropy.a` and they will have to link `libjitterentropy.a` as well. This should not be a requirement, AWS-LC `libcrypto.a` should be a stand-alone library. With this change we fix that.
- Loading branch information
Showing
2 changed files
with
8 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters