Files
test_rtt_413/rt-thread/components/libc/compilers/armlibc/SConscript
a1012112796 02210074ec init project
Signed-off-by: a1012112796 <1012112796@qq.com>
2022-09-26 15:41:16 +08:00

13 lines
296 B
Python

from building import *
Import('rtconfig')
src = Glob('*.c')
group = []
CPPDEFINES = ['RT_USING_ARM_LIBC', 'RT_USING_LIBC', '__STDC_LIMIT_MACROS']
if rtconfig.PLATFORM in ['armcc', 'armclang']:
group = DefineGroup('Compiler', src, depend = [''], CPPDEFINES = CPPDEFINES)
Return('group')