Initial commit of OpenSPARC T2 design and verification files.
[OpenSPARC-T2-DV] / tools / perl-5.8.0 / lib / 5.8.0 / B / cc_harness
CommitLineData
86530b38
AT
1use Config;
2
3$libdir = $ENV{PERL_SRC} || "$Config{installarchlib}/CORE";
4
5if (!grep(/^-[cS]$/, @ARGV)) {
6 $linkargs = sprintf("%s $libdir/$Config{libperl} %s",
7 @Config{qw(ldflags libs)});
8}
9
10$cccmd = "$Config{cc} $Config{ccflags} -I$libdir @ARGV $linkargs";
11print "$cccmd\n";
12exec $cccmd;