Merge a4267335b712ead618854c8519a5e077f87fda03 into 3bb373867917b674265067cbd38b9d252c43d014

This commit is contained in:
Ben Taylor 2026-07-27 08:31:26 +01:00 committed by GitHub
commit 3525626641
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -272,14 +272,18 @@ component_build_no_ssl_srv () {
msg "build: full config except SSL server, make, gcc" # ~ 30s
scripts/config.py full
scripts/config.py unset MBEDTLS_SSL_SRV_C
scripts/config.py unset MBEDTLS_DEBUG_C
$MAKE_COMMAND CC=gcc CFLAGS='-Werror -Wall -Wextra -O1 -Wmissing-prototypes'
! nm library/libmbedtls.a | sed 's/.* //' | grep -x -F mbedtls_debug_print_buf
}
component_build_no_ssl_cli () {
msg "build: full config except SSL client, make, gcc" # ~ 30s
scripts/config.py full
scripts/config.py unset MBEDTLS_SSL_CLI_C
scripts/config.py unset MBEDTLS_DEBUG_C
$MAKE_COMMAND CC=gcc CFLAGS='-Werror -Wall -Wextra -O1 -Wmissing-prototypes'
! nm library/libmbedtls.a | sed 's/.* //' | grep -x -F mbedtls_debug_print_buf
}
component_test_no_max_fragment_length () {