# Copyright 2001-2014, Paul Johnson (paul@pjcj.net) # This software is free. It is licensed under the same terms as Perl itself. # The latest version of this software should be available from my homepage: # http://www.pjcj.net # This file was automatically generated by Makefile.PL. package Devel::Cover::Inc; use strict; use warnings; our $VERSION = "1.15"; our $Perl_version = '5.022001'; our $Base = '/u/girishkh/perl-5.22.1/srcarch/Devel-Cover-1.15'; our @Inc = qw( . /u/girishkh/perl-5.22.1/perlinstall/lib/5.22.1 /u/girishkh/perl-5.22.1/perlinstall/lib/5.22.1/x86_64-linux-thread-multi /u/girishkh/perl-5.22.1/perlinstall/lib/site_perl/5.22.1 /u/girishkh/perl-5.22.1/perlinstall/lib/site_perl/5.22.1/x86_64-linux-thread-multi ); chomp (our $Perl = <<'EOV'); # Careful with \\ in the path /u/girishkh/perl-5.22.1/perlinstall/bin/perl EOV if ($Perl_version ne $]) { print STDERR <<"EOM"; This version of Devel::Cover was built with Perl version $Perl_version. It is now being run with Perl version $]. Attempting to make adjustments, but you may find that some of your modules do not have coverage data collected. You may need to alter the +-inc, +-ignore and +-select options. EOM eval "use Cwd"; my %inc = map { -d $_ ? (($_ eq "." ? $_ : Cwd::abs_path($_)) => 1) : () } @INC; @Inc = sort keys %inc; } # TODO - check for threadedness, 64bits etc. ? 1