From 9168e18e5cb9589e79752f04b3da911fb9758bf0 Mon Sep 17 00:00:00 2001 From: Grissiom Date: Sun, 13 Jan 2013 09:48:37 +0800 Subject: [PATCH] newlib: use the LIBS argument in DefineGroup instead of modifying the Env --- components/libc/newlib/SConscript | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/components/libc/newlib/SConscript b/components/libc/newlib/SConscript index 6516840adf..a3ddbe9f4d 100644 --- a/components/libc/newlib/SConscript +++ b/components/libc/newlib/SConscript @@ -15,8 +15,9 @@ CPPPATH = [cwd] # libm is a frequently used lib. Newlib is compiled with -ffunction-sections in # recent GCC tool chains. The linker would just link in the functions that have # been referenced. So setting this won't result in bigger text size. -Env.Append(LIBS = ['m']) +LIBS = ['m'] -group = DefineGroup('newlib', src, depend = ['RT_USING_NEWLIB'], CPPPATH = CPPPATH) +group = DefineGroup('newlib', src, depend = ['RT_USING_NEWLIB'], + CPPPATH = CPPPATH, LIBS = LIBS) Return('group') -- GitLab