[DEV] update the gcov version to use
This commit is contained in:
parent
99927380d6
commit
eeb070e014
@ -181,7 +181,11 @@ class Module:
|
|||||||
debug.verbose(" gcov : " + self.name + " <== " + file);
|
debug.verbose(" gcov : " + self.name + " <== " + file);
|
||||||
file_dst = target.get_full_name_destination(self.name, self.origin_folder, file, "o")
|
file_dst = target.get_full_name_destination(self.name, self.origin_folder, file, "o")
|
||||||
global_list_file += file_dst + " "
|
global_list_file += file_dst + " "
|
||||||
cmd = "gcov --branch-counts --preserve-paths "
|
cmd = "gcov"
|
||||||
|
# specify the version of gcov we need to use
|
||||||
|
if target.config["compilator-version"] != "":
|
||||||
|
cmd += "-" + target.config["compilator-version"] + " "
|
||||||
|
cmd += " --branch-counts --preserve-paths "
|
||||||
if generate_output == False:
|
if generate_output == False:
|
||||||
cmd += "--no-output "
|
cmd += "--no-output "
|
||||||
cmd += global_list_file
|
cmd += global_list_file
|
||||||
|
2
setup.py
2
setup.py
@ -7,7 +7,7 @@ def readme():
|
|||||||
|
|
||||||
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
|
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
|
||||||
setup(name='lutin',
|
setup(name='lutin',
|
||||||
version='0.6.1',
|
version='0.6.2',
|
||||||
description='Lutin generic builder',
|
description='Lutin generic builder',
|
||||||
long_description=readme(),
|
long_description=readme(),
|
||||||
url='http://github.com/HeeroYui/lutin',
|
url='http://github.com/HeeroYui/lutin',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user