home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / tsw / TSW_3.4.0.exe / Apache2 / perl / cc_harness < prev    next >
Encoding:
Text File  |  2003-11-06  |  295 b   |  13 lines

  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;
  13.