Merge pull request #10408 from ronald-cron-arm/historical-libmbedcryto

Restore historical libmbedcrypto.* libraries
This commit is contained in:
David Horstmann
2025-09-29 08:41:06 +00:00
committed by GitHub
6 changed files with 143 additions and 44 deletions
+10
View File
@@ -138,6 +138,16 @@ component_test_cmake_as_package_install () {
cd programs/test/cmake_package_install
cmake .
make
if ! cmp -s "mbedtls/lib/libtfpsacrypto.a" "mbedtls/lib/libmbedcrypto.a"; then
echo "Error: Crypto static libraries are different or one of them is missing/unreadable." >&2
exit 1
fi
if ! cmp -s "mbedtls/lib/libtfpsacrypto.so" "mbedtls/lib/libmbedcrypto.so"; then
echo "Error: Crypto shared libraries are different or one of them is missing/unreadable." >&2
exit 1
fi
./cmake_package_install
}