rt-thread-official/libcpu/risc-v/SConscript

26 lines
679 B
Python
Raw Normal View History

2019-01-07 06:09:45 +08:00
# RT-Thread building script for bridge
import os
from building import *
Import('rtconfig')
2024-09-20 10:17:34 +08:00
common64_arch = ['virt64', 'c906', 'c908']
2019-01-07 06:09:45 +08:00
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'))
2019-01-07 06:09:45 +08:00
# cpu porting code files
if 'VENDOR' in vars(rtconfig) and rtconfig.VENDOR != '':
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'))
2019-01-07 06:09:45 +08:00
Return('group')