You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to play around with your experimental post quantum support and as a first step I was trying to build the code locally without any configuration.
mbedtls/library/ssl_tls13_client.c:44:10: fatal error: 'ssl_debug_helpers_generated.h' file not found
#include "ssl_debug_helpers_generated.h"
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1 error generated.
I can fix that by manually executing
tests/scripts/check-generated-files.sh -u
and re-running
cmake --build build-mbedtls
But then I get the following errors:
mbedtls/library/ssl_tls13_server.c:709:31: error: format specifies type 'long' but the argument has type 'int64_t' (aka 'long long') [-Werror,-Wformat]
diff ) );
mbedtls/library/ssl_tls13_server.c:725:69: error: format specifies type 'long' but the argument has type 'int64_t' (aka 'long long') [-Werror,-Wformat]
"MBEDTLS_SSL_EARLY_DATA_MAX_DELAY )", diff ) );
So my question is if this is expected behaviour and if so what are the required build steps?
System information
Mbed TLS version (number or commit id):
Operating system and version: MacOS 12.2.1
Compiler and options (if you used a pre-built binary, please indicate how you obtained it): AppleClang 13.1.6.13160021
Expected behavior
Build success.
The text was updated successfully, but these errors were encountered:
Summary
I want to play around with your experimental post quantum support and as a first step I was trying to build the code locally without any configuration.
I am executing
But then I get
I can fix that by manually executing
and re-running
But then I get the following errors:
So my question is if this is expected behaviour and if so what are the required build steps?
System information
Mbed TLS version (number or commit id):
Operating system and version: MacOS 12.2.1
Compiler and options (if you used a pre-built binary, please indicate how you obtained it): AppleClang 13.1.6.13160021
Expected behavior
Build success.
The text was updated successfully, but these errors were encountered: