The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more
12345678910 use strict;use warnings;use ExtUtils::MakeMaker;WriteMakefile( 'NAME' => 'PDL::Bench', 'LIBS' => [''], # e.g., '-lm' 'DEFINE' => '', # e.g., '-DHAVE_SOMETHING' 'INC' => '', # e.g., '-I/usr/include/other');
use
strict;
warnings;
ExtUtils::MakeMaker;
WriteMakefile(
'NAME'
=>
'PDL::Bench'
,
'LIBS'
=> [
''
],
# e.g., '-lm'
'DEFINE'
# e.g., '-DHAVE_SOMETHING'
'INC'
# e.g., '-I/usr/include/other'
);