← Index
NYTProf Performance Profile   « line view »
For split.pl
  Run on Thu Apr 20 02:05:47 2023
Reported on Thu Apr 20 18:31:10 2023

Filename/usr/share/perl/5.36/ExtUtils/MY.pm
StatementsExecuted 8 statements in 85µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11110µs12µsExtUtils::MY::::BEGIN@3ExtUtils::MY::BEGIN@3
0000s0sExtUtils::MY::::DESTROYExtUtils::MY::DESTROY
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package ExtUtils::MY;
2
3269µs215µs
# spent 12µs (10+3) within ExtUtils::MY::BEGIN@3 which was called: # once (10µs+3µs) by IPC::Cmd::can_run at line 3
use strict;
# spent 12µs making 1 call to ExtUtils::MY::BEGIN@3 # spent 3µs making 1 call to strict::import
41400nsrequire ExtUtils::MM;
5
61200nsour $VERSION = '7.64';
71400ns$VERSION =~ tr/_//d;
816µsour @ISA = qw(ExtUtils::MM);
9
10{
1113µs package MY;
1216µs our @ISA = qw(ExtUtils::MY);
13}
14
15sub DESTROY {}
16
17
18=head1 NAME
19
20ExtUtils::MY - ExtUtils::MakeMaker subclass for customization
21
22=head1 SYNOPSIS
23
24 # in your Makefile.PL
25 sub MY::whatever {
26 ...
27 }
28
29=head1 DESCRIPTION
30
31B<FOR INTERNAL USE ONLY>
32
33ExtUtils::MY is a subclass of L<ExtUtils::MM>. Its provided in your
34Makefile.PL for you to add and override MakeMaker functionality.
35
36It also provides a convenient alias via the MY class.
37
38ExtUtils::MY might turn out to be a temporary solution, but MY won't
39go away.
40
41=cut