25 Aug 23:32
[PATCH] don't call sparse when called to generate dependencies
From: Alexander Shishkin <alexander.shishckin <at> gmail.com>
Subject: [PATCH] don't call sparse when called to generate dependencies
Newsgroups: gmane.comp.parsers.sparse
Date: 2008-08-25 21:33:39 GMT
Subject: [PATCH] don't call sparse when called to generate dependencies
Newsgroups: gmane.comp.parsers.sparse
Date: 2008-08-25 21:33:39 GMT
I have a situation here when $(CC) is called with -M options with
slighly different set of -I/-D/etc arguments, which causes all sorts of
funny reports from sparse. Also, this increases the overall build time
because every compilation unit if sparsed twice.
Signed-off-by: Alexander Shishkin <alexander.shishckin <at> gmail.com>
---
cgcc | 7 +++++++
1 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/cgcc b/cgcc
index 4fab530..89adbed 100755
--- a/cgcc
+++ b/cgcc
@@ -7,6 +7,7 @@ my $check = $ENV{'CHECK'} || 'sparse';
my $m32 = 0;
my $m64 = 0;
my $has_specs = 0;
+my $gendeps = 0;
my $do_check = 0;
my $do_compile = 1;
my $verbose = 0;
@@ -22,6 +23,7 @@ foreach (@ARGV) {
$m32 = 1 if /^-m32$/;
$m64 = 1 if /^-m64$/;
+ $gendeps = 1 if /^-M$/;
if (/^-specs=(.*)$/) {
$check .= &add_specs ($1);
(Continue reading)
RSS Feed