15 lines
300 B
Python
Raw Normal View History

2021-11-01 20:33:03 +08:00
from building import *
Import('rtconfig')
src = Glob('*.c') + Glob('*.cpp') + Glob('arch/*.c')
cwd = GetCurrentDir()
group = []
CPPPATH = [cwd]
if rtconfig.PLATFORM == 'gcc':
group = DefineGroup('libc', src,
depend = ['RT_USING_MODULE'],
CPPPATH = CPPPATH)
Return('group')