rt-thread-official/bsp/lpc408x/SConstruct

37 lines
1.0 KiB
Python
Raw Normal View History

2014-01-02 18:30:13 +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 *
2019-03-08 15:02:46 +08:00
TARGET = 'rtthread.' + rtconfig.TARGET_EXT
2014-01-02 18:30:13 +08:00
2019-10-22 16:01:46 +08:00
DefaultEnvironment(tools=[])
2014-01-02 18:30:13 +08:00
env = Environment(tools = ['mingw'],
AS = rtconfig.AS, ASFLAGS = rtconfig.AFLAGS,
CC = rtconfig.CC, CCFLAGS = rtconfig.CFLAGS,
CXX = rtconfig.CXX, CXXFLAGS = rtconfig.CXXFLAGS,
2014-01-02 18:30:13 +08:00
AR = rtconfig.AR, ARFLAGS = '-rc',
LINK = rtconfig.LINK, LINKFLAGS = rtconfig.LFLAGS)
env.PrependENVPath('PATH', rtconfig.EXEC_PATH)
2019-03-08 15:02:46 +08:00
if rtconfig.PLATFORM == 'iar':
env.Replace(CCCOM = ['$CC $CCFLAGS $CPPFLAGS $_CPPDEFFLAGS $_CPPINCFLAGS -o $TARGET $SOURCES'])
env.Replace(ARFLAGS = [''])
env.Replace(LINKCOM = env["LINKCOM"] + ' --map project.map')
2014-01-02 18:30:13 +08:00
Export('RTT_ROOT')
Export('rtconfig')
# prepare building environment
2019-03-08 15:02:46 +08:00
objs = PrepareBuilding(env, RTT_ROOT, has_libcpu=False)
2014-01-02 18:30:13 +08:00
# make a building
DoBuilding(TARGET, objs)