[tools] Fix the lib paths not found issue.

This commit is contained in:
armink 2020-02-26 14:48:23 +08:00
parent 7335fd389e
commit 544a134f59
1 changed files with 5 additions and 3 deletions

View File

@ -22,7 +22,7 @@ from xml.etree.ElementTree import SubElement
from building import * from building import *
MODULE_VER_NUM = 0 MODULE_VER_NUM = 1
source_pattern = ['*.c', '*.cpp', '*.cxx', '*.s', '*.S', '*.asm'] source_pattern = ['*.c', '*.cpp', '*.cxx', '*.s', '*.S', '*.asm']
@ -301,10 +301,12 @@ def HandleToolOption(tools, env, project, reset):
option = linker_paths_option option = linker_paths_option
# remove old lib paths # remove old lib paths
for item in option.findall('listOptionValue'): for item in option.findall('listOptionValue'):
option.remove(item) if IsRttEclipsePathFormat(item.get('value')):
# clean old configuration
option.remove(item)
# add new old lib paths # add new old lib paths
for path in env['LIBPATH']: for path in env['LIBPATH']:
SubElement(option, 'listOptionValue', {'builtIn': 'false', 'value': path}) SubElement(option, 'listOptionValue', {'builtIn': 'false', 'value': ConverToRttEclipsePathFormat(RelativeProjectPath(env, path).replace('\\', '/'))})
return return