rt-thread-official/bsp/imx6sx/cortex-a9/cpu/SConscript

18 lines
402 B
Python
Raw Normal View History

2015-08-09 09:36:12 +08:00
Import('rtconfig')
from building import *
cwd = GetCurrentDir()
2023-01-09 10:14:23 +08:00
src = Glob('*.c')
2015-08-09 09:36:12 +08:00
CPPPATH = [cwd]
if rtconfig.PLATFORM in ['iccarm']:
2015-08-09 09:36:12 +08:00
src += Glob('*_iar.S')
elif rtconfig.PLATFORM in ['gcc']:
2015-08-09 09:36:12 +08:00
src += Glob('*_gcc.S')
elif rtconfig.PLATFORM in ['armcc', 'armclang']:
2015-08-09 09:36:12 +08:00
src += Glob('*_rvds.S')
2020-12-19 16:49:11 +08:00
group = DefineGroup('CPU', src, depend = [''], CPPPATH = CPPPATH)
2015-08-09 09:36:12 +08:00
Return('group')