Motion_EC_HC32_archived/rt-thread/components/libc/compilers/common/SConscript

31 lines
727 B
Python
Raw Normal View History

2022-01-10 16:20:39 +08:00
from building import *
2022-01-10 17:10:14 +08:00
2022-01-10 16:20:39 +08:00
Import('rtconfig')
src = []
cwd = GetCurrentDir()
group = []
CPPPATH = [cwd]
2022-01-10 17:10:14 +08:00
if GetDepend('RT_USING_LIBC'):
src += Glob('*.c')
if GetDepend('RT_USING_POSIX') == False:
SrcRemove(src, ['unistd.c', 'delay.c'])
elif GetDepend('RT_LIBC_USING_TIME'):
src += ['time.c']
2022-01-10 16:20:39 +08:00
2022-01-10 17:10:14 +08:00
if rtconfig.CROSS_TOOL == 'keil':
CPPDEFINES = ['__CLK_TCK=RT_TICK_PER_SECOND']
else:
CPPDEFINES = []
2022-01-10 16:20:39 +08:00
2022-01-10 17:10:14 +08:00
group = DefineGroup('libc', src, depend = [], CPPPATH = CPPPATH, CPPDEFINES = CPPDEFINES)
2022-01-10 16:20:39 +08:00
list = os.listdir(cwd)
2022-01-10 17:10:14 +08:00
for d in list:
path = os.path.join(cwd, d)
if os.path.isfile(os.path.join(path, 'SConscript')):
group = group + SConscript(os.path.join(d, 'SConscript'))
2022-01-10 16:20:39 +08:00
Return('group')