From 86f12ac118ab09d4e3db9dcc2a13ffd633e686fe Mon Sep 17 00:00:00 2001 From: crazt Date: Fri, 26 Mar 2021 17:39:40 +0800 Subject: [PATCH] [components][finsh] add support for tasking toolchain --- components/finsh/shell.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/finsh/shell.c b/components/finsh/shell.c index 0d41625184..6f1133bf3b 100644 --- a/components/finsh/shell.c +++ b/components/finsh/shell.c @@ -831,7 +831,7 @@ int finsh_system_init(void) __section_end("FSymTab")); finsh_system_var_init(__section_begin("VSymTab"), __section_end("VSymTab")); -#elif defined (__GNUC__) || defined(__TI_COMPILER_VERSION__) +#elif defined (__GNUC__) || defined(__TI_COMPILER_VERSION__) || defined(__TASKING__) /* GNU GCC Compiler and TI CCS */ extern const int __fsymtab_start; extern const int __fsymtab_end;