Leaked source code of windows server 2003
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

  1. use Config;
  2. $libdir = $ENV{PERL_SRC} || "$Config{installarchlib}/CORE";
  3. if (!grep(/^-[cS]$/, @ARGV)) {
  4. $linkargs = sprintf("%s $libdir/$Config{libperl} %s",
  5. @Config{qw(ldflags libs)});
  6. }
  7. $cccmd = "$Config{cc} $Config{ccflags} -I$libdir @ARGV $linkargs";
  8. print "$cccmd\n";
  9. exec $cccmd;