2011-10-08 21:02:22 +08:00
|
|
|
from building import *
|
2017-10-13 12:44:54 +08:00
|
|
|
Import('rtconfig')
|
2011-10-08 21:02:22 +08:00
|
|
|
|
2017-10-13 12:44:54 +08:00
|
|
|
src = Glob('*.c')
|
2011-10-08 21:02:22 +08:00
|
|
|
cwd = GetCurrentDir()
|
2017-10-13 12:44:54 +08:00
|
|
|
group = []
|
2014-10-28 11:45:43 +08:00
|
|
|
|
2011-10-08 21:02:22 +08:00
|
|
|
CPPPATH = [cwd]
|
2014-10-28 11:45:43 +08:00
|
|
|
CPPDEFINES = ['RT_USING_NEWLIB']
|
2011-10-08 21:02:22 +08:00
|
|
|
|
2013-03-23 07:51:29 +08:00
|
|
|
# link with libc and libm:
|
2013-01-11 15:13:11 +08:00
|
|
|
# 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.
|
2013-03-23 07:51:29 +08:00
|
|
|
LIBS = ['c', 'm']
|
2013-01-11 15:13:11 +08:00
|
|
|
|
2017-10-13 12:44:54 +08:00
|
|
|
if rtconfig.PLATFORM == 'gcc':
|
|
|
|
group = DefineGroup('newlib', src, depend = ['RT_USING_LIBC'],
|
|
|
|
CPPPATH = CPPPATH, CPPDEFINES = CPPDEFINES, LIBS = LIBS)
|
2011-10-08 21:02:22 +08:00
|
|
|
|
|
|
|
Return('group')
|