[libc]新建gcc文件夹,将newlib和partical文件夹并入

This commit is contained in:
Meco Man
2021-09-27 16:40:12 -04:00
parent 4c1c946ba3
commit 8b17d53da7
19 changed files with 44 additions and 49 deletions
@@ -0,0 +1,15 @@
# 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')