From a1766b6c7131f93cf7c641ec96d3bd08b7b86360 Mon Sep 17 00:00:00 2001 From: bernard Date: Thu, 26 Jun 2014 14:47:53 +0800 Subject: [PATCH] Add WEAK definition; --- src/kservice.c | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/src/kservice.c b/src/kservice.c index 0f06806087..cb0064f38b 100644 --- a/src/kservice.c +++ b/src/kservice.c @@ -1081,19 +1081,7 @@ rt_device_t rt_console_set_device(const char *name) RTM_EXPORT(rt_console_set_device); #endif -#if defined(__GNUC__) || defined(__ADSPBLACKFIN__) -void rt_hw_console_output(const char *str) __attribute__((weak)); -void rt_hw_console_output(const char *str) -#elif defined(__CC_ARM) -__weak void rt_hw_console_output(const char *str) -#elif defined(__IAR_SYSTEMS_ICC__) - #if __VER__ > 540 - __weak - #endif -void rt_hw_console_output(const char *str) -#else -void rt_hw_console_output(const char *str) -#endif +WEAK void rt_hw_console_output(const char *str) { /* empty console output */ } -- GitLab