提交 9168e18e 编写于 作者: G Grissiom

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

上级 8ad12057
......@@ -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')
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册