rt-thread-official/bsp/m16c62p/SConstruct

36 lines
1.0 KiB
Python
Raw Normal View History

2013-01-08 22:40:58 +08:00
import os
import sys
import rtconfig
if os.getenv('RTT_ROOT'):
RTT_ROOT = os.getenv('RTT_ROOT')
else:
RTT_ROOT = os.path.normpath(os.getcwd() + '/../..')
sys.path = sys.path + [os.path.join(RTT_ROOT, 'tools')]
from building import *
2023-01-09 10:14:23 +08:00
TARGET = 'rtt2m16c.' + rtconfig.TARGET_EXT
2013-01-08 22:40:58 +08:00
2019-10-22 16:01:46 +08:00
DefaultEnvironment(tools=[])
2013-01-08 22:40:58 +08:00
env = Environment(tools = ['mingw'],
2023-01-09 10:14:23 +08:00
AS = rtconfig.AS, ASFLAGS = rtconfig.AFLAGS,
CC = rtconfig.CC, CFLAGS = rtconfig.CFLAGS,
AR = rtconfig.AR, ARFLAGS = '-rc',
LINK = rtconfig.LINK, LINKFLAGS = rtconfig.LFLAGS)
2013-01-08 22:40:58 +08:00
env.PrependENVPath('PATH', rtconfig.EXEC_PATH)
if rtconfig.PLATFORM in ['iccarm']:
2023-01-09 10:14:23 +08:00
env.Replace(CCCOM = ['$CC $CFLAGS $CPPFLAGS $_CPPDEFFLAGS $_CPPINCFLAGS -o $TARGET $SOURCES'])
env.Replace(LINKCOM = ['$LINK $SOURCES $LINKFLAGS -f lnkm30627fhp.xcl -l rtt2m16c.map -o rtt2m16c.d34 -Omotorola-s28=$TARGET'])
env.Replace(ARFLAGS = '')
2013-01-08 22:40:58 +08:00
Export('RTT_ROOT')
Export('rtconfig')
# prepare building environment
objs = PrepareBuilding(env, RTT_ROOT)
2013-07-11 23:11:16 +08:00
# make a building
DoBuilding(TARGET, objs)