push @CmdArgs,'-o';
push @CmdArgs,$HtmlDir;
}
-
- system $Cmd,@CmdArgs;
+
+ if (defined $ENV{'CCC_UBI'}) {
+ push @CmdArgs,"--analyzer-viz-egraph-ubigraph";
+ }
+
+ system $Cmd,@CmdArgs;
# Did the command die because of a signal?
if ($? & 127 and $Cmd eq $Clang and defined $HtmlDir) {
# Forward arguments to gcc.
my $Status = system($CC,@ARGV);
-if ($Status) { exit($Status >> 8); }
# Get the analysis options.
my $Analyses = $ENV{'CCC_ANALYZER_ANALYSIS'};
if (!($Arg =~ /^-/)) {
push @Files,$Arg; next;
}
-
- exit 0;
}
if ($Action eq 'compile' or $Action eq 'link') {
}
}
+exit($Status >> 8);
+
+