[BSP] Update building script

This commit is contained in:
Bernard Xiong 2017-12-31 21:40:20 +08:00
parent e8a6da95d4
commit 68a5e7d5a3
5 changed files with 8 additions and 10 deletions

View File

@ -3,7 +3,7 @@ import os
# toolchains options
ARCH='arm'
CPU='cortex-m4'
CROSS_TOOL='gcc'
CROSS_TOOL='keil'
if os.getenv('RTT_CC'):
CROSS_TOOL = os.getenv('RTT_CC')
@ -17,7 +17,6 @@ if CROSS_TOOL == 'gcc':
print 'Not support gcc yet!'
print '================================================='
PLATFORM = 'gcc'
exit(0)
elif CROSS_TOOL == 'keil':
PLATFORM = 'armcc'
EXEC_PATH = r'C:/Keil_v5'

View File

@ -8,7 +8,6 @@ if os.getenv('RTT_ROOT'):
else:
#RTT_ROOT = os.path.join(Dir('#').get_abspath(), 'rt-thread')
RTT_ROOT = os.path.normpath(os.getcwd() + '/../..')
print RTT_ROOT
sys.path = sys.path + [os.path.join(RTT_ROOT, 'tools')]
from building import *

View File

@ -226,7 +226,7 @@ def MDK45Project(tree, target, script):
if CPPDEFINES:
CPPDEFINES += group['CPPDEFINES']
else:
CPPDEFINES += group['CPPDEFINES']
CPPDEFINES = group['CPPDEFINES']
# get each group's link flags
if group.has_key('LINKFLAGS') and group['LINKFLAGS']:
@ -332,9 +332,9 @@ def MDKProject(target, script):
# get each group's definitions
if group.has_key('CPPDEFINES') and group['CPPDEFINES']:
if CPPDEFINES:
CPPDEFINES += ';' + group['CPPDEFINES']
else:
CPPDEFINES += group['CPPDEFINES']
else:
CPPDEFINES = group['CPPDEFINES']
# get each group's link flags
if group.has_key('LINKFLAGS') and group['LINKFLAGS']: