[DEV] update the gcov version to use

This commit is contained in:
Edouard DUPIN 2015-08-25 23:42:01 +02:00
parent 99927380d6
commit eeb070e014
2 changed files with 6 additions and 2 deletions

View File

@ -181,7 +181,11 @@ class Module:
debug.verbose(" gcov : " + self.name + " <== " + file);
file_dst = target.get_full_name_destination(self.name, self.origin_folder, file, "o")
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:
cmd += "--no-output "
cmd += global_list_file

View File

@ -7,7 +7,7 @@ def readme():
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
setup(name='lutin',
version='0.6.1',
version='0.6.2',
description='Lutin generic builder',
long_description=readme(),
url='http://github.com/HeeroYui/lutin',