[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,4 @@
## Attentions
This folder is "common" for toolchains, which only support ISO C, as an extension part, such as Keil-MDK and IAR.

View File

@ -1,3 +0,0 @@
## Attentions
This folder is "common" for toolchains excluding gcc.

View File

@ -1,15 +0,0 @@
# RT-Thread building script for bridge
import os
from building import *
cwd = GetCurrentDir()
objs = []
list = os.listdir(cwd)
for d in list:
path = os.path.join(cwd, d)
if os.path.isfile(os.path.join(path, 'SConscript')):
objs = objs + SConscript(os.path.join(d, 'SConscript'))
Return('objs')