[stm32l475] improve the structrue of sconscript

This commit is contained in:
Meco Man
2021-10-24 13:08:48 -04:00
parent e2bf5863d1
commit 7f619606a1
16 changed files with 276 additions and 258 deletions

View File

@@ -12,7 +12,7 @@ if GetDepend('RT_USING_LIBC'):
if GetDepend('RT_USING_POSIX') == False:
SrcRemove(src, ['unistd.c', 'delay.c'])
elif GetDepend('RT_LIBC_USING_TIME'):
src += ['time.c']
src += Glob('time.c')
if rtconfig.CROSS_TOOL == 'keil':
CPPDEFINES = ['__CLK_TCK=RT_TICK_PER_SECOND']
@@ -22,9 +22,8 @@ else:
group = DefineGroup('libc', src, depend = [], CPPPATH = CPPPATH, CPPDEFINES = CPPDEFINES)
list = os.listdir(cwd)
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'))
for item in list:
if os.path.isfile(os.path.join(cwd, item, 'SConscript')):
group = group + SConscript(os.path.join(item, 'SConscript'))
Return('group')