[libcpu] Add JuiceVm SUPPORT.

This commit is contained in:
xiaoxiaohuixxh
2021-04-26 13:46:19 +08:00
parent c5a0df2254
commit 1bc204722d
4 changed files with 200 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
# RT-Thread building script for component
from building import *
Import('rtconfig')
cwd = GetCurrentDir()
src = Glob('*.c') + Glob('*.cpp') + Glob('*_gcc.S')
CPPPATH = [cwd]
ASFLAGS = ''
group = DefineGroup('CPU', src, depend = [''], CPPPATH = CPPPATH, ASFLAGS = ASFLAGS)
Return('group')