[tools]armclang库文件编译支持
This commit is contained in:
parent
109576c86a
commit
ca67b4d18e
|
@ -281,8 +281,8 @@ def PrepareBuilding(env, root_directory, has_libcpu=False, remove_components = [
|
||||||
utils.ReloadModule(rtconfig)
|
utils.ReloadModule(rtconfig)
|
||||||
|
|
||||||
# add compability with Keil MDK 4.6 which changes the directory of armcc.exe
|
# add compability with Keil MDK 4.6 which changes the directory of armcc.exe
|
||||||
if rtconfig.PLATFORM == 'armcc':
|
if rtconfig.PLATFORM == 'armcc' or rtconfig.PLATFORM == 'armclang':
|
||||||
if not os.path.isfile(os.path.join(rtconfig.EXEC_PATH, 'armcc.exe')):
|
if rtconfig.PLATFORM == 'armcc' and not os.path.isfile(os.path.join(rtconfig.EXEC_PATH, 'armcc.exe')):
|
||||||
if rtconfig.EXEC_PATH.find('bin40') > 0:
|
if rtconfig.EXEC_PATH.find('bin40') > 0:
|
||||||
rtconfig.EXEC_PATH = rtconfig.EXEC_PATH.replace('bin40', 'armcc/bin')
|
rtconfig.EXEC_PATH = rtconfig.EXEC_PATH.replace('bin40', 'armcc/bin')
|
||||||
Env['LINKFLAGS'] = Env['LINKFLAGS'].replace('RV31', 'armcc')
|
Env['LINKFLAGS'] = Env['LINKFLAGS'].replace('RV31', 'armcc')
|
||||||
|
|
Loading…
Reference in New Issue