mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-04-29 19:06:23 +00:00
Fix compile error with armcc5 --gnu
This commit is contained in:
parent
af39e3e597
commit
ebb9cf9cc6
|
@ -14,6 +14,7 @@ Bugfix
|
||||||
Leisink).
|
Leisink).
|
||||||
* Fix missing -static-ligcc when building shared libraries for Windows with
|
* Fix missing -static-ligcc when building shared libraries for Windows with
|
||||||
make.
|
make.
|
||||||
|
* Fix compile error with armcc5 --gnu.
|
||||||
|
|
||||||
Changes
|
Changes
|
||||||
* Add SSL_MIN_DHM_BYTES configuration parameter in config.h to choose the
|
* Add SSL_MIN_DHM_BYTES configuration parameter in config.h to choose the
|
||||||
|
|
|
@ -42,7 +42,9 @@
|
||||||
|
|
||||||
#if defined(POLARSSL_HAVE_ASM)
|
#if defined(POLARSSL_HAVE_ASM)
|
||||||
|
|
||||||
#if defined(__GNUC__)
|
/* armcc5 --gnu defines __GNUC__ but doesn't support GNU's extended asm */
|
||||||
|
#if defined(__GNUC__) && \
|
||||||
|
( !defined(__ARMCC_VERSION) || __ARMCC_VERSION >= 6000000 )
|
||||||
#if defined(__i386__)
|
#if defined(__i386__)
|
||||||
|
|
||||||
#define MULADDC_INIT \
|
#define MULADDC_INIT \
|
||||||
|
|
Loading…
Reference in a new issue