浏览代码

newlib: use the LIBS argument in DefineGroup instead of modifying the Env

Grissiom 12 年之前
父节点
当前提交
9168e18e5c
共有 1 个文件被更改,包括 3 次插入2 次删除
  1. 3 2
      components/libc/newlib/SConscript

+ 3 - 2
components/libc/newlib/SConscript

@@ -15,8 +15,9 @@ CPPPATH = [cwd]
 # libm is a frequently used lib. Newlib is compiled with -ffunction-sections in
 # 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
 # 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.
 # 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')
 Return('group')