add clang-arm support.

This commit is contained in:
guozhanxin
2021-12-22 00:39:08 +08:00
committed by Bernard Xiong
parent f20eef99db
commit a5f6fdc780
7 changed files with 41 additions and 6 deletions

View File

@@ -10,6 +10,6 @@ group = []
if GetDepend('RT_USING_LIBC'):
src += Glob('*.c')
if rtconfig.PLATFORM != 'gcc' or rtconfig.ARCH == 'sim':
if (rtconfig.PLATFORM != 'gcc' and rtconfig.PLATFORM != 'clang') or rtconfig.ARCH == 'sim':
group = DefineGroup('libc', src, depend = [], CPPPATH = CPPPATH)
Return('group')