rt-thread/components/libc/SConscript

27 lines
758 B
Python
Raw Normal View History

2013-01-08 22:40:58 +08:00
# for libc component
import os
Import('rtconfig')
from building import *
2013-01-08 22:40:58 +08:00
objs = []
if GetDepend('RT_USING_LIBC'):
if rtconfig.PLATFORM == 'gcc':
objs = objs + SConscript('newlib/SConscript')
elif rtconfig.PLATFORM == 'armcc':
objs = objs + SConscript('armlibc/SConscript')
elif rtconfig.PLATFORM == 'iar':
objs = objs + SConscript('dlib/SConscript')
else:
if rtconfig.PLATFORM == 'gcc' and rtconfig.ARCH != 'sim':
objs = objs + SConscript('minilibc/SConscript')
2013-01-08 22:40:58 +08:00
2016-07-13 10:49:21 +08:00
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')
2013-01-08 22:40:58 +08:00
Return('objs')