rt-thread-official/bsp/lpc408x/SConstruct

37 lines
1.0 KiB
Python
Raw Permalink 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'],
2023-01-09 10:14:23 +08:00
AS = rtconfig.AS, ASFLAGS = rtconfig.AFLAGS,
CC = rtconfig.CC, CFLAGS = rtconfig.CFLAGS,
CXX = rtconfig.CXX, CXXFLAGS = rtconfig.CXXFLAGS,
AR = rtconfig.AR, ARFLAGS = '-rc',
LINK = rtconfig.LINK, LINKFLAGS = rtconfig.LFLAGS)
2014-01-02 18:30:13 +08:00
env.PrependENVPath('PATH', rtconfig.EXEC_PATH)
if rtconfig.PLATFORM in ['iccarm']:
2021-12-17 14:28:02 +08:00
env.Replace(CCCOM = ['$CC $CFLAGS $CPPFLAGS $_CPPDEFFLAGS $_CPPINCFLAGS -o $TARGET $SOURCES'])
2019-03-08 15:02:46 +08:00
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)