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>
19 lines
383 B
Python
19 lines
383 B
Python
# for module compiling
|
|
import os
|
|
Import('RTT_ROOT')
|
|
|
|
cwd = str(Dir('#'))
|
|
objs = []
|
|
list = os.listdir(cwd)
|
|
|
|
ASFLAGS = ' -I' + cwd
|
|
|
|
objs = objs + SConscript(os.path.join(cwd, '../embarc/SConscript'))
|
|
|
|
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')
|