[compiler] 增加SConscript依赖标志 AddDepend (#6534)

* [compiler] 增加SConscript依赖标志 AddDepend

* RT_USING_NEWLIB->RT_USING_NEWLIBC RT_USING_ARM_LIBC->RT_USING_ARMLIBC

* 删除过时的板载测试例程

* [gd32] 移除无用的反汇编文件

* [bsp]移除老旧bsp中对RT_USING_NEWLIBC的手动宏定义
This commit is contained in:
Man, Jianting (Meco)
2022-10-25 00:01:37 -04:00
committed by GitHub
parent 7bc744dae9
commit 055267f049
46 changed files with 35 additions and 178877 deletions

View File

@@ -1,6 +1,6 @@
from building import *
src = Glob('*.c')
group = DefineGroup('UTest', src, depend = ['RT_USING_NEWLIB', 'RT_USING_PTHREADS'])
group = DefineGroup('UTest', src, depend = ['RT_USING_NEWLIBC', 'RT_USING_PTHREADS'])
Return('group')