[libc] 调整文件结构

This commit is contained in:
Meco Man
2022-01-14 23:31:59 -05:00
committed by Bernard Xiong
parent 1a46d7fe92
commit 76cab376ad
21 changed files with 4 additions and 18 deletions

View File

@@ -0,0 +1,14 @@
from building import *
Import('rtconfig')
src = []
cwd = GetCurrentDir()
CPPPATH = [cwd]
group = []
src += Glob('*.c')
if rtconfig.PLATFORM != 'gcc' or rtconfig.ARCH == 'sim':
group = DefineGroup('Compiler', src, depend = [''], CPPPATH = CPPPATH)
Return('group')