Merge pull request #4693 from mysterywolf/sim-sconcsript
[libc][bug] 修复在simulator win32平台下,none-gcc文件夹路径没有添加到工程的bug
This commit is contained in:
commit
6cb1d4efcc
|
@ -23,9 +23,11 @@ else:
|
||||||
|
|
||||||
if GetDepend('RT_USING_LIBC') or GetDepend('RT_LIBC_USING_TIME'):
|
if GetDepend('RT_USING_LIBC') or GetDepend('RT_LIBC_USING_TIME'):
|
||||||
group = DefineGroup('libc', src, depend = [''], CPPPATH = CPPPATH, CPPDEFINES = CPPDEFINES)
|
group = DefineGroup('libc', src, depend = [''], CPPPATH = CPPPATH, CPPDEFINES = CPPDEFINES)
|
||||||
list = os.listdir(cwd)
|
|
||||||
for d in list:
|
list = os.listdir(cwd)
|
||||||
path = os.path.join(cwd, d)
|
for d in list:
|
||||||
if os.path.isfile(os.path.join(path, 'SConscript')):
|
path = os.path.join(cwd, d)
|
||||||
group = group + SConscript(os.path.join(d, 'SConscript'))
|
if os.path.isfile(os.path.join(path, 'SConscript')):
|
||||||
|
group = group + SConscript(os.path.join(d, 'SConscript'))
|
||||||
|
|
||||||
Return('group')
|
Return('group')
|
||||||
|
|
|
@ -8,6 +8,6 @@ CPPPATH = [cwd]
|
||||||
group = []
|
group = []
|
||||||
src += Glob('*.c')
|
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)
|
group = DefineGroup('libc', src, depend = ['RT_USING_LIBC'], CPPPATH = CPPPATH)
|
||||||
Return('group')
|
Return('group')
|
||||||
|
|
Loading…
Reference in New Issue