rt-thread/bsp/fujitsu/mb9x/mb9bf568r/SConstruct

37 lines
1.1 KiB
Python
Raw Normal View History

2014-10-20 10:10:18 +08:00
import os
import sys
import rtconfig
if os.getenv('RTT_ROOT'):
RTT_ROOT = os.getenv('RTT_ROOT')
else:
2022-03-29 17:36:01 +08:00
RTT_ROOT = os.path.normpath(os.getcwd() + '/../../../..')
2014-10-20 10:10:18 +08:00
sys.path = sys.path + [os.path.join(RTT_ROOT, 'tools')]
from building import *
TARGET = 'rtthread-fm4.' + rtconfig.TARGET_EXT
2014-10-20 10:10:18 +08:00
2019-10-22 16:01:46 +08:00
DefaultEnvironment(tools=[])
2014-10-20 10:10:18 +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-10-20 10:10:18 +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(ARFLAGS = [''])
env.Replace(LINKCOM = ['$LINK $SOURCES $LINKFLAGS -o $TARGET --map project.map'])
2014-10-20 10:10:18 +08:00
Export('RTT_ROOT')
Export('rtconfig')
# prepare building environment
objs = PrepareBuilding(env, RTT_ROOT, has_libcpu=False)
# make a building
DoBuilding(TARGET, objs)