Revert "add clang-arm support."

This reverts commit a5f6fdc780.
This commit is contained in:
Man, Jianting (Meco)
2021-12-22 18:57:16 -05:00
committed by GitHub
parent 457348e21a
commit ed1f8b3f64
7 changed files with 6 additions and 41 deletions

View File

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

View File

@@ -7,7 +7,7 @@ group = []
LIBS = ['m'] # link libm
CPPPATH = [cwd]
if rtconfig.PLATFORM == 'gcc' or rtconfig.PLATFORM == 'clang':
if rtconfig.PLATFORM == 'gcc':
if GetDepend('RT_USING_LIBC'):
LIBS += ['c'] # link libc
src += Glob('*.c')