rt-thread-official/components/libc/compilers/minilibc/SConscript

16 lines
350 B
Python
Raw Normal View History

2013-01-08 22:40:58 +08:00
from building import *
2017-10-13 12:44:54 +08:00
Import('rtconfig')
2013-01-08 22:40:58 +08:00
2017-10-13 12:44:54 +08:00
src = Glob('*.c') + Glob('*.cpp')
cwd = GetCurrentDir()
2017-10-13 12:44:54 +08:00
group = []
CPPPATH = [cwd]
2013-01-08 22:40:58 +08:00
CPPDEFINES = ['RT_USING_MINILIBC']
2017-10-13 12:44:54 +08:00
if rtconfig.PLATFORM == 'gcc' and not GetDepend('RT_USING_LIBC'):
group = DefineGroup('libc', src, depend = [''],
CPPPATH = CPPPATH, CPPDEFINES = CPPDEFINES)
2013-01-08 22:40:58 +08:00
Return('group')