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

This commit is contained in:
Grissiom 2013-01-13 09:48:37 +08:00
parent 8ad12057c4
commit 9168e18e5c
1 changed files with 3 additions and 2 deletions

View File

@ -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')