mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-22 11:45:42 +01:00
parent
e87b04caed
commit
c98204e68f
@ -39,7 +39,7 @@ if(CMAKE_COMPILER_IS_GNUCC)
|
|||||||
endif(CMAKE_COMPILER_IS_GNUCC)
|
endif(CMAKE_COMPILER_IS_GNUCC)
|
||||||
|
|
||||||
if(CMAKE_COMPILER_IS_CLANG)
|
if(CMAKE_COMPILER_IS_CLANG)
|
||||||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wpointer-arith")
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wpointer-arith -Wimplicit-fallthrough")
|
||||||
set(CMAKE_C_FLAGS_RELEASE "-O2")
|
set(CMAKE_C_FLAGS_RELEASE "-O2")
|
||||||
set(CMAKE_C_FLAGS_DEBUG "-O0 -g3")
|
set(CMAKE_C_FLAGS_DEBUG "-O0 -g3")
|
||||||
set(CMAKE_C_FLAGS_COVERAGE "-O0 -g3 --coverage")
|
set(CMAKE_C_FLAGS_COVERAGE "-O0 -g3 --coverage")
|
||||||
|
@ -24,6 +24,8 @@ Bugfix
|
|||||||
with make.
|
with make.
|
||||||
* Fix link error when building shared libraries for Windows with make.
|
* Fix link error when building shared libraries for Windows with make.
|
||||||
* Fix error when loading libmbedtls.so.
|
* Fix error when loading libmbedtls.so.
|
||||||
|
* Fix bug in mbedtls_ssl_conf_default() that caused the default preset to
|
||||||
|
be always used (found by dcb314) (#235)
|
||||||
|
|
||||||
Changes
|
Changes
|
||||||
* The PEM parser now accepts a trailing space at end of lines (#226).
|
* The PEM parser now accepts a trailing space at end of lines (#226).
|
||||||
|
@ -6836,6 +6836,7 @@ int mbedtls_ssl_config_defaults( mbedtls_ssl_config *conf,
|
|||||||
#if defined(MBEDTLS_ECP_C)
|
#if defined(MBEDTLS_ECP_C)
|
||||||
conf->curve_list = ssl_preset_suiteb_curves;
|
conf->curve_list = ssl_preset_suiteb_curves;
|
||||||
#endif
|
#endif
|
||||||
|
break;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Default
|
* Default
|
||||||
|
Loading…
Reference in New Issue
Block a user