mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-16 12:51:20 +08:00
d8aa99a29c
* the initial support of synopsys designware arc processor * the initial support of synospsy ARC EM Starter Kit * the bsp code is based on embarc which is a common SDK for all synopsys ARC-based boards * use "scons --gdb" to debug emsk with em9d configuration * for detailed board information, pls go embarc.org Signed-off-by: Wayne Ren <wei.ren@synopsys.com>
18 lines
341 B
Python
18 lines
341 B
Python
# RT-Thread building script for bridge
|
|
|
|
import os
|
|
from building import *
|
|
|
|
Import('rtconfig')
|
|
|
|
cwd = GetCurrentDir()
|
|
group = []
|
|
|
|
# add common code files
|
|
group = group + SConscript(os.path.join(cwd, 'common', 'SConscript'))
|
|
|
|
# cpu porting code files
|
|
group = group + SConscript(os.path.join(cwd, rtconfig.CPU, 'SConscript'))
|
|
|
|
Return('group')
|