rt-thread-official/bsp/apollo2/libraries/startup/SConscript

28 lines
615 B
Python
Raw Normal View History

2017-09-15 18:10:51 +08:00
import rtconfig
Import('RTT_ROOT')
from building import *
# get current directory
cwd = GetCurrentDir()
src = Split("""
""")
2023-01-09 10:14:23 +08:00
# add for startup script
if rtconfig.PLATFORM in ['gcc']:
2018-09-02 11:21:03 +08:00
src = src + ['gcc/' + 'startup_gcc.c']
elif rtconfig.PLATFORM in ['armcc', 'armclang']:
2017-09-15 18:10:51 +08:00
src = src + ['arm/' + 'startup_keil.s']
elif rtconfig.PLATFORM in ['iccarm']:
2017-09-15 18:10:51 +08:00
src = src + ['iar/' + 'startup_iar.c']
path = [cwd]
2018-09-21 16:10:44 +08:00
path += [cwd + '/cmsis/include']
2017-09-15 18:10:51 +08:00
2018-09-02 11:21:03 +08:00
CPPDEFINES = ['AM_PACKAGE_BGA', 'AM_PART_APOLLO2']
2017-09-15 18:10:51 +08:00
group = DefineGroup('Libraries', src, depend = [''], CPPPATH = path, CPPDEFINES = CPPDEFINES)
Return('group')