Correct all.sh and config.h after merge commit
- Adapt the change in all.sh to the new keep-going mode - Restore alphabetical order of configuration flags for alternative implementations in config.h and rebuild library/version_features.c
This commit is contained in:
parent
8bc74d6f2f
commit
88683b2c6d
3 changed files with 9 additions and 9 deletions
|
@ -269,16 +269,16 @@
|
||||||
//#define MBEDTLS_CCM_ALT
|
//#define MBEDTLS_CCM_ALT
|
||||||
//#define MBEDTLS_CMAC_ALT
|
//#define MBEDTLS_CMAC_ALT
|
||||||
//#define MBEDTLS_DES_ALT
|
//#define MBEDTLS_DES_ALT
|
||||||
//#define MBEDTLS_RSA_ALT
|
|
||||||
//#define MBEDTLS_GCM_ALT
|
//#define MBEDTLS_GCM_ALT
|
||||||
//#define MBEDTLS_XTEA_ALT
|
|
||||||
//#define MBEDTLS_MD2_ALT
|
//#define MBEDTLS_MD2_ALT
|
||||||
//#define MBEDTLS_MD4_ALT
|
//#define MBEDTLS_MD4_ALT
|
||||||
//#define MBEDTLS_MD5_ALT
|
//#define MBEDTLS_MD5_ALT
|
||||||
//#define MBEDTLS_RIPEMD160_ALT
|
//#define MBEDTLS_RIPEMD160_ALT
|
||||||
|
//#define MBEDTLS_RSA_ALT
|
||||||
//#define MBEDTLS_SHA1_ALT
|
//#define MBEDTLS_SHA1_ALT
|
||||||
//#define MBEDTLS_SHA256_ALT
|
//#define MBEDTLS_SHA256_ALT
|
||||||
//#define MBEDTLS_SHA512_ALT
|
//#define MBEDTLS_SHA512_ALT
|
||||||
|
//#define MBEDTLS_XTEA_ALT
|
||||||
/*
|
/*
|
||||||
* When replacing the elliptic curve module, pleace consider, that it is
|
* When replacing the elliptic curve module, pleace consider, that it is
|
||||||
* implemented with two .c files:
|
* implemented with two .c files:
|
||||||
|
|
|
@ -105,15 +105,9 @@ static const char *features[] = {
|
||||||
#if defined(MBEDTLS_DES_ALT)
|
#if defined(MBEDTLS_DES_ALT)
|
||||||
"MBEDTLS_DES_ALT",
|
"MBEDTLS_DES_ALT",
|
||||||
#endif /* MBEDTLS_DES_ALT */
|
#endif /* MBEDTLS_DES_ALT */
|
||||||
#if defined(MBEDTLS_RSA_ALT)
|
|
||||||
"MBEDTLS_RSA_ALT",
|
|
||||||
#endif /* MBEDTLS_RSA_ALT */
|
|
||||||
#if defined(MBEDTLS_GCM_ALT)
|
#if defined(MBEDTLS_GCM_ALT)
|
||||||
"MBEDTLS_GCM_ALT",
|
"MBEDTLS_GCM_ALT",
|
||||||
#endif /* MBEDTLS_GCM_ALT */
|
#endif /* MBEDTLS_GCM_ALT */
|
||||||
#if defined(MBEDTLS_XTEA_ALT)
|
|
||||||
"MBEDTLS_XTEA_ALT",
|
|
||||||
#endif /* MBEDTLS_XTEA_ALT */
|
|
||||||
#if defined(MBEDTLS_MD2_ALT)
|
#if defined(MBEDTLS_MD2_ALT)
|
||||||
"MBEDTLS_MD2_ALT",
|
"MBEDTLS_MD2_ALT",
|
||||||
#endif /* MBEDTLS_MD2_ALT */
|
#endif /* MBEDTLS_MD2_ALT */
|
||||||
|
@ -126,6 +120,9 @@ static const char *features[] = {
|
||||||
#if defined(MBEDTLS_RIPEMD160_ALT)
|
#if defined(MBEDTLS_RIPEMD160_ALT)
|
||||||
"MBEDTLS_RIPEMD160_ALT",
|
"MBEDTLS_RIPEMD160_ALT",
|
||||||
#endif /* MBEDTLS_RIPEMD160_ALT */
|
#endif /* MBEDTLS_RIPEMD160_ALT */
|
||||||
|
#if defined(MBEDTLS_RSA_ALT)
|
||||||
|
"MBEDTLS_RSA_ALT",
|
||||||
|
#endif /* MBEDTLS_RSA_ALT */
|
||||||
#if defined(MBEDTLS_SHA1_ALT)
|
#if defined(MBEDTLS_SHA1_ALT)
|
||||||
"MBEDTLS_SHA1_ALT",
|
"MBEDTLS_SHA1_ALT",
|
||||||
#endif /* MBEDTLS_SHA1_ALT */
|
#endif /* MBEDTLS_SHA1_ALT */
|
||||||
|
@ -135,6 +132,9 @@ static const char *features[] = {
|
||||||
#if defined(MBEDTLS_SHA512_ALT)
|
#if defined(MBEDTLS_SHA512_ALT)
|
||||||
"MBEDTLS_SHA512_ALT",
|
"MBEDTLS_SHA512_ALT",
|
||||||
#endif /* MBEDTLS_SHA512_ALT */
|
#endif /* MBEDTLS_SHA512_ALT */
|
||||||
|
#if defined(MBEDTLS_XTEA_ALT)
|
||||||
|
"MBEDTLS_XTEA_ALT",
|
||||||
|
#endif /* MBEDTLS_XTEA_ALT */
|
||||||
#if defined(MBEDTLS_ECP_ALT)
|
#if defined(MBEDTLS_ECP_ALT)
|
||||||
"MBEDTLS_ECP_ALT",
|
"MBEDTLS_ECP_ALT",
|
||||||
#endif /* MBEDTLS_ECP_ALT */
|
#endif /* MBEDTLS_ECP_ALT */
|
||||||
|
|
|
@ -771,7 +771,7 @@ msg "build: default config, MBEDTLS_RSA_NO_CRT, make, gcc"
|
||||||
cleanup
|
cleanup
|
||||||
cp "$CONFIG_H" "$CONFIG_BAK"
|
cp "$CONFIG_H" "$CONFIG_BAK"
|
||||||
scripts/config.pl set MBEDTLS_RSA_NO_CRT
|
scripts/config.pl set MBEDTLS_RSA_NO_CRT
|
||||||
CC=gcc CFLAGS='-Werror -Wall -Werror -O0' make
|
make CC=gcc CFLAGS='-Werror -Wall -Werror -O0'
|
||||||
|
|
||||||
msg "test: MBEDTLS_RSA_NO_CRT - main suites (inc. selftests) (ASan build)"
|
msg "test: MBEDTLS_RSA_NO_CRT - main suites (inc. selftests) (ASan build)"
|
||||||
make test
|
make test
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue