Subject: | Missing dependency: SOOT |
Today I installed Dumbbench via 'cpanm':
#####
$ cpanm Dumbbench
--> Working on Dumbbench
Fetching http://www.cpan.org/authors/id/S/SM/SMUELLER/Dumbbench-0.09.tar.gz ... OK
Configuring Dumbbench-0.09 ... OK
==> Found dependencies: Class::XSAccessor, Statistics::CaseResampling
--> Working on Class::XSAccessor
Fetching http://www.cpan.org/authors/id/S/SM/SMUELLER/Class-XSAccessor-1.19.tar.gz ... OK
Configuring Class-XSAccessor-1.19 ... OK
Building and testing Class-XSAccessor-1.19 ... OK
Successfully installed Class-XSAccessor-1.19
--> Working on Statistics::CaseResampling
Fetching http://www.cpan.org/authors/id/S/SM/SMUELLER/Statistics-CaseResampling-0.15.tar.gz ... OK
Configuring Statistics-CaseResampling-0.15 ... OK
Building and testing Statistics-CaseResampling-0.15 ... OK
Successfully installed Statistics-CaseResampling-0.15
Building and testing Dumbbench-0.09 ... OK
Successfully installed Dumbbench-0.09
3 distributions installed
#####
I then began working on a program for which the following is a reduced case:
#####
use 5.14.2;
use warnings;
use Dumbbench;
use Dumbbench::CPUFrequencyPinner;
use Dumbbench::BoxPlot;
require Dumbbench::BoxPlot;
say "Hello world";
#####
Results:
#####
$ perl -c dumbbench.pl
Can't locate SOOT.pm in @INC (you may need to install the SOOT module)
#####
SOOT is not found in your Makefile.PL.
Thank you very much.
Jim Keenan