mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-19 03:03:30 +08:00
修复在simulator win32平台下,nonegcc文件夹路径没有添加到工程的bug
This commit is contained in:
parent
a896d977c1
commit
d9abe8fa30
@ -23,9 +23,11 @@ else:
|
||||
|
||||
if GetDepend('RT_USING_LIBC') or GetDepend('RT_LIBC_USING_TIME'):
|
||||
group = DefineGroup('libc', src, depend = [''], CPPPATH = CPPPATH, CPPDEFINES = CPPDEFINES)
|
||||
list = os.listdir(cwd)
|
||||
for d in list:
|
||||
|
||||
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'))
|
||||
|
||||
Return('group')
|
||||
|
@ -8,6 +8,6 @@ CPPPATH = [cwd]
|
||||
group = []
|
||||
src += Glob('*.c')
|
||||
|
||||
if rtconfig.PLATFORM != 'gcc':
|
||||
if rtconfig.PLATFORM != 'gcc' or rtconfig.ARCH == 'sim':
|
||||
group = DefineGroup('libc', src, depend = ['RT_USING_LIBC'], CPPPATH = CPPPATH)
|
||||
Return('group')
|
||||
|
Loading…
x
Reference in New Issue
Block a user