Merge pull request #647 from yygg/master

Update SConscript
This commit is contained in:
Bernard Xiong 2016-07-14 09:26:00 +08:00 committed by GitHub
commit c641c8019e
1 changed files with 5 additions and 2 deletions

View File

@ -17,7 +17,10 @@ else:
if rtconfig.PLATFORM == 'gcc' and rtconfig.ARCH != 'sim':
objs = objs + SConscript('minilibc/SConscript')
objs = objs + SConscript('pthreads/SConscript')
objs = objs + SConscript('libdl/SConscript')
if GetDepend('RT_USING_LIBC') and GetDepend('RT_USING_PTHREADS'):
objs = objs + SConscript('pthreads/SConscript')
if GetDepend('RT_USING_MODULE') and GetDepend('RT_USING_LIBDL'):
objs = objs + SConscript('libdl/SConscript')
Return('objs')