rt-thread-official/components/libc/compilers/common/none-gcc/SConscript

14 lines
283 B
Python
Raw Normal View History

from building import *
Import('rtconfig')
2021-04-18 00:55:32 +08:00
src = []
cwd = GetCurrentDir()
CPPPATH = [cwd]
group = []
src += Glob('*.c')
if rtconfig.PLATFORM != 'gcc' or rtconfig.ARCH == 'sim':
group = DefineGroup('libc', src, depend = ['RT_USING_LIBC'], CPPPATH = CPPPATH)
2021-04-18 00:55:32 +08:00
Return('group')