home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 June / PCWorld_2005-06_cd.bin / software / vyzkuste / firewally / firewally.exe / framework-2.3.exe / cc_harness < prev    next >
Text File  |  2003-11-07  |  295b  |  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.