Add more checking for SConscript files of libc.
This commit is contained in:
parent
6515dc238c
commit
b47994cb42
|
@ -5,16 +5,17 @@ Import('rtconfig')
|
||||||
from building import *
|
from building import *
|
||||||
|
|
||||||
objs = []
|
objs = []
|
||||||
|
cwd = GetCurrentDir()
|
||||||
|
|
||||||
if GetDepend('RT_USING_LIBC'):
|
if GetDepend('RT_USING_LIBC'):
|
||||||
if rtconfig.PLATFORM == 'gcc':
|
if os.path.isfile(os.path.join(cwd, 'newlib/SConscript')) and rtconfig.PLATFORM == 'gcc':
|
||||||
objs = objs + SConscript('newlib/SConscript')
|
objs = objs + SConscript('newlib/SConscript')
|
||||||
elif rtconfig.PLATFORM == 'armcc':
|
elif os.path.isfile(os.path.join(cwd, 'armlibc/SConscript')) and rtconfig.PLATFORM == 'armcc':
|
||||||
objs = objs + SConscript('armlibc/SConscript')
|
objs = objs + SConscript('armlibc/SConscript')
|
||||||
elif rtconfig.PLATFORM == 'iar':
|
elif os.path.isfile(os.path.join(cwd, 'dlib/SConscript')) and rtconfig.PLATFORM == 'iar':
|
||||||
objs = objs + SConscript('dlib/SConscript')
|
objs = objs + SConscript('dlib/SConscript')
|
||||||
else:
|
else:
|
||||||
if rtconfig.PLATFORM == 'gcc' and rtconfig.ARCH != 'sim':
|
if os.path.isfile(os.path.join(cwd, 'minilibc/SConscript')) and rtconfig.PLATFORM == 'gcc' and rtconfig.ARCH != 'sim':
|
||||||
objs = objs + SConscript('minilibc/SConscript')
|
objs = objs + SConscript('minilibc/SConscript')
|
||||||
|
|
||||||
if GetDepend('RT_USING_LIBC') and GetDepend('RT_USING_PTHREADS'):
|
if GetDepend('RT_USING_LIBC') and GetDepend('RT_USING_PTHREADS'):
|
||||||
|
|
Loading…
Reference in New Issue