From 9237433030447b807b9f6b269f899ddcfc04017e Mon Sep 17 00:00:00 2001 From: Grissiom Date: Wed, 29 May 2013 20:41:45 +0800 Subject: [PATCH] add TI CCS support micros in rtdef.h --- include/rtdef.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/include/rtdef.h b/include/rtdef.h index 9fb2b7bb0..b2267292c 100644 --- a/include/rtdef.h +++ b/include/rtdef.h @@ -145,10 +145,13 @@ typedef rt_base_t rt_off_t; /**< Type for offset */ #define ALIGN(n) __declspec(align(n)) #define rt_inline static __inline #define RTT_API -#elif defined (__TI_EABI_SUPPORT__) +#elif defined (__TI_COMPILER_VERSION__) + /* The way that TI compiler set section is different from other(at least + * GCC and MDK) compilers. See ARM Optimizing C/C++ Compiler 5.9.3 for more + * details. */ #define SECTION(x) #define UNUSED - #define ALIGN(n) + #define ALIGN(n) #define rt_inline static inline #define RTT_API #else -- GitLab