You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
307 B
12 lines
307 B
use Config;
|
|
|
|
$libdir = $ENV{PERL_SRC} || "$Config{installarchlib}/CORE";
|
|
|
|
if (!grep(/^-[cS]$/, @ARGV)) {
|
|
$linkargs = sprintf("%s $libdir/$Config{libperl} %s",
|
|
@Config{qw(ldflags libs)});
|
|
}
|
|
|
|
$cccmd = "$Config{cc} $Config{ccflags} -I$libdir @ARGV $linkargs";
|
|
print "$cccmd\n";
|
|
exec $cccmd;
|