fixed IAR project add LIBS
This commit is contained in:
parent
b571cd8899
commit
495927696e
45
tools/iar.py
45
tools/iar.py
|
@ -49,31 +49,31 @@ def IARAddGroup(parent, name, files, project_path):
|
||||||
group = SubElement(parent, 'group')
|
group = SubElement(parent, 'group')
|
||||||
group_name = SubElement(group, 'name')
|
group_name = SubElement(group, 'name')
|
||||||
group_name.text = name
|
group_name.text = name
|
||||||
|
|
||||||
for f in files:
|
for f in files:
|
||||||
fn = f.rfile()
|
fn = f.rfile()
|
||||||
name = fn.name
|
name = fn.name
|
||||||
path = os.path.dirname(fn.abspath)
|
path = os.path.dirname(fn.abspath)
|
||||||
|
|
||||||
basename = os.path.basename(path)
|
basename = os.path.basename(path)
|
||||||
path = _make_path_relative(project_path, path)
|
path = _make_path_relative(project_path, path)
|
||||||
path = os.path.join(path, name)
|
path = os.path.join(path, name)
|
||||||
|
|
||||||
file = SubElement(group, 'file')
|
file = SubElement(group, 'file')
|
||||||
file_name = SubElement(file, 'name')
|
file_name = SubElement(file, 'name')
|
||||||
|
|
||||||
if os.path.isabs(path):
|
if os.path.isabs(path):
|
||||||
file_name.text = path.decode(fs_encoding)
|
file_name.text = path.decode(fs_encoding)
|
||||||
else:
|
else:
|
||||||
file_name.text = ('$PROJ_DIR$\\' + path).decode(fs_encoding)
|
file_name.text = ('$PROJ_DIR$\\' + path).decode(fs_encoding)
|
||||||
|
|
||||||
def IARWorkspace(target):
|
def IARWorkspace(target):
|
||||||
# make an workspace
|
# make an workspace
|
||||||
workspace = target.replace('.ewp', '.eww')
|
workspace = target.replace('.ewp', '.eww')
|
||||||
out = file(workspace, 'wb')
|
out = file(workspace, 'wb')
|
||||||
xml = iar_workspace % target
|
xml = iar_workspace % target
|
||||||
out.write(xml)
|
out.write(xml)
|
||||||
out.close()
|
out.close()
|
||||||
|
|
||||||
def IARProject(target, script):
|
def IARProject(target, script):
|
||||||
project_path = os.path.dirname(os.path.abspath(target))
|
project_path = os.path.dirname(os.path.abspath(target))
|
||||||
|
|
||||||
|
@ -87,7 +87,19 @@ def IARProject(target, script):
|
||||||
LINKFLAGS = ''
|
LINKFLAGS = ''
|
||||||
CCFLAGS = ''
|
CCFLAGS = ''
|
||||||
Libs = []
|
Libs = []
|
||||||
|
lib_prefix = ['lib', '']
|
||||||
|
lib_suffix = ['.a', '.o', '']
|
||||||
|
|
||||||
|
def searchLib(group):
|
||||||
|
for path_item in group['LIBPATH']:
|
||||||
|
for prefix_item in lib_prefix:
|
||||||
|
for suffix_item in lib_suffix:
|
||||||
|
lib_full_path = os.path.join(path_item, prefix_item + item + suffix_item)
|
||||||
|
if os.path.isfile(lib_full_path):
|
||||||
|
return lib_full_path
|
||||||
|
else:
|
||||||
|
return ''
|
||||||
|
|
||||||
# add group
|
# add group
|
||||||
for group in script:
|
for group in script:
|
||||||
IARAddGroup(root, group['name'], group['src'], project_path)
|
IARAddGroup(root, group['name'], group['src'], project_path)
|
||||||
|
@ -95,29 +107,26 @@ def IARProject(target, script):
|
||||||
# get each include path
|
# get each include path
|
||||||
if group.has_key('CPPPATH') and group['CPPPATH']:
|
if group.has_key('CPPPATH') and group['CPPPATH']:
|
||||||
CPPPATH += group['CPPPATH']
|
CPPPATH += group['CPPPATH']
|
||||||
|
|
||||||
# get each group's definitions
|
# get each group's definitions
|
||||||
if group.has_key('CPPDEFINES') and group['CPPDEFINES']:
|
if group.has_key('CPPDEFINES') and group['CPPDEFINES']:
|
||||||
CPPDEFINES += group['CPPDEFINES']
|
CPPDEFINES += group['CPPDEFINES']
|
||||||
|
|
||||||
# get each group's link flags
|
# get each group's link flags
|
||||||
if group.has_key('LINKFLAGS') and group['LINKFLAGS']:
|
if group.has_key('LINKFLAGS') and group['LINKFLAGS']:
|
||||||
LINKFLAGS += group['LINKFLAGS']
|
LINKFLAGS += group['LINKFLAGS']
|
||||||
|
|
||||||
if group.has_key('LIBS') and group['LIBS']:
|
if group.has_key('LIBS') and group['LIBS']:
|
||||||
for item in group['LIBS']:
|
for item in group['LIBS']:
|
||||||
lib_path = ''
|
lib_path = searchLib(group)
|
||||||
|
|
||||||
for path_item in group['LIBPATH']:
|
|
||||||
full_path = os.path.join(path_item, item + '.a')
|
|
||||||
if os.path.isfile(full_path): # has this library
|
|
||||||
lib_path = full_path
|
|
||||||
|
|
||||||
if lib_path != '':
|
if lib_path != '':
|
||||||
lib_path = _make_path_relative(project_path, lib_path)
|
lib_path = _make_path_relative(project_path, lib_path)
|
||||||
Libs += [lib_path]
|
Libs += [lib_path]
|
||||||
|
# print('found lib isfile: ' + lib_path)
|
||||||
|
else:
|
||||||
|
print('not found LIB: ' + item)
|
||||||
|
|
||||||
# make relative path
|
# make relative path
|
||||||
paths = set()
|
paths = set()
|
||||||
for path in CPPPATH:
|
for path in CPPPATH:
|
||||||
inc = _make_path_relative(project_path, os.path.normpath(path))
|
inc = _make_path_relative(project_path, os.path.normpath(path))
|
||||||
|
@ -156,7 +165,7 @@ def IARProject(target, script):
|
||||||
out.close()
|
out.close()
|
||||||
|
|
||||||
IARWorkspace(target)
|
IARWorkspace(target)
|
||||||
|
|
||||||
def IARVersion():
|
def IARVersion():
|
||||||
import subprocess
|
import subprocess
|
||||||
import re
|
import re
|
||||||
|
|
Loading…
Reference in New Issue