26 lines
642 B
Python
26 lines
642 B
Python
# RT-Thread building script for bridge
|
|
|
|
import os
|
|
from building import *
|
|
|
|
Import('rtconfig')
|
|
|
|
common64_arch = ['virt64', 'c906']
|
|
cwd = GetCurrentDir()
|
|
group = []
|
|
list = os.listdir(cwd)
|
|
|
|
# add common code files
|
|
if rtconfig.CPU in common64_arch :
|
|
group += SConscript(os.path.join('common64', 'SConscript'))
|
|
else :
|
|
group += SConscript(os.path.join('common', 'SConscript'))
|
|
|
|
# cpu porting code files
|
|
if rtconfig.CPU == "c906":
|
|
group = group + SConscript(os.path.join(rtconfig.VENDOR, rtconfig.CPU, 'SConscript'))
|
|
elif rtconfig.CPU in list:
|
|
group = group + SConscript(os.path.join(rtconfig.CPU, 'SConscript'))
|
|
|
|
Return('group')
|