Closed disa6302 closed 8 months ago
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 63.96%. Comparing base (
13523a2
) to head (80fe44e
). Report is 8 commits behind head on develop.:exclamation: Current head 80fe44e differs from pull request most recent head 2b6800a. Consider uploading reports for the commit 2b6800a to get more accurate results
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
Nice! Is it possible to print the results of ldd
from before / after to confirm we're not linking to openssl any more, i.e. it's not specified anywhere in the NEEDED
section of the ELF header?
Nice! Is it possible to print the results of
ldd
from before / after to confirm we're not linking to openssl any more, i.e. it's not specified anywhere in theNEEDED
section of the ELF header?
Done!
Nice! Is it possible to print the results of
ldd
from before / after to confirm we're not linking to openssl any more, i.e. it's not specified anywhere in theNEEDED
section of the ELF header?Done!
Looking at the results it would say not found
just because it can't find it in LD_LIBRARY_PATH
or standard library path but in this case it looks like previously that library was just not built and put in the lib folder which is where it looks for it in the AFTER case. However what I was expecting to see in the BEFORE case is libssl/libcrypto in the list, since it is not there that would means previously it wasn't linking to openssl.
Issue #, if available:
What was changed?
Why was it changed?
How was it changed?
PRODUCER_CRYPTO_LIBRARY
instead of Openssl only.Before this change: (
libmbedcrypto.so.7 => not found
)After this change: (
libmbedcrypto.so.7 => /home/ubuntu/amazon-kinesis-video-streams-producer-c/open-source/lib/libmbedcrypto.so.7 (0x00007f8518325000)
)What testing was done for the changes?
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.