Compile source code for Maxim targets

They don't link because of differences in the precompiled libraries
pull/4949/head
Jimmy Brisson 2017-08-29 17:33:32 -05:00
parent fb53eb65d4
commit 75549754bc
1 changed files with 3 additions and 1 deletions

View File

@ -44,7 +44,9 @@
/* Integer data types */
#if ((defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)) && \
(__ICC8051__ == 0)) || defined(__CC_ARM) || defined(__IAR_SYSTEMS_ICC__)
(__ICC8051__ == 0)) || defined(__CC_ARM) || \
(defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050)) || \
defined(__IAR_SYSTEMS_ICC__)
#include <stdint.h>
#else
typedef signed char int8_t;