Fix compile error with armcc5 --gnu

This commit is contained in:
Manuel Pégourié-Gonnard 2015-08-10 12:10:39 +02:00
parent b5d77d3fd9
commit cc86ac5d56
2 changed files with 4 additions and 1 deletions

View file

@ -16,6 +16,7 @@ Bugfix
Leisink).
* Fix missing -static-ligcc when building shared libraries for Windows with
make.
* Fix compile error with armcc5 --gnu.
Changes
* Add SSL_MIN_DHM_BYTES configuration parameter in config.h to choose the

View file

@ -42,7 +42,9 @@
#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__)
#define MULADDC_INIT \