This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Fix typo in B::Assembler.
[perl5.git] / ext / B / B / cc_harness
1 use Config;
2
3 $libdir = $ENV{PERL_SRC} || "$Config{installarchlib}/CORE";
4
5 if (!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";
11 print "$cccmd\n";
12 exec $cccmd;