4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-23 11:27:20 +08:00

28 lines
811 B
Python
Raw Normal View History

from building import *
2017-10-13 12:44:54 +08:00
Import('rtconfig')
2021-02-23 03:21:16 +08:00
src = []
cwd = GetCurrentDir()
2017-10-13 12:44:54 +08:00
group = []
LIBS = ['m']
CPPDEFINES = ['RT_USING_NEWLIB']
CPPPATH = [cwd]
2017-10-13 12:44:54 +08:00
if rtconfig.PLATFORM == 'gcc':
2021-02-23 03:21:16 +08:00
if GetDepend('RT_USING_LIBC'):
# link with libc and libm:
# 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.
LIBS += ['c']
2021-02-23 03:21:16 +08:00
src += Glob('*.c')
if GetDepend('RT_USING_MODULE') == False:
SrcRemove(src, ['libc_syms.c'])
else:
src += ['syscalls.c']
2021-02-23 03:21:16 +08:00
group = DefineGroup('libc', src, depend = [], CPPPATH = CPPPATH, CPPDEFINES = CPPDEFINES, LIBS = LIBS)
Return('group')