From 2517907b48fb7a6e837a9812405eed79da8f2f2f Mon Sep 17 00:00:00 2001 From: crazt Date: Sat, 20 Mar 2021 10:38:16 +0800 Subject: [PATCH] [toolchain] TASKING toolchain attributes update. --- include/rtdef.h | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/include/rtdef.h b/include/rtdef.h index f5a09f815b..38686492b1 100644 --- a/include/rtdef.h +++ b/include/rtdef.h @@ -193,17 +193,15 @@ typedef rt_base_t rt_off_t; /**< Type for offset */ #define rt_inline static inline #define RTT_API #elif defined (__TASKING__) - #include - #define RT_SECTION(x) - #define RT_UNUSED - #define RT_USED + #define RT_SECTION(x) __attribute__((section(x))) + #define RT_UNUSED __attribute__((unused)) + #define RT_USED __attribute__((used, protect)) #define PRAGMA(x) _Pragma(#x) - #define ALIGN(n) - #define RT_WEAK + #define ALIGN(n) __attribute__((aligned(n))) + #define RT_WEAK __attribute__((weak)) #define rt_inline static inline #define RTT_API - #else #error not supported tool chain #endif -- GitLab