1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
|
# PDL interface to FFTW
# Makefile.PL for a package defined by PP code.
use ExtUtils::MakeMaker;
PDL::Core::Dev->import();
BEGIN {
$msg = ""; $forcebuild=0; # Note: forcebuild not used
if (defined $PDL_CONFIG{WITH_FFTW} && $PDL_CONFIG{WITH_FFTW}==0) {
$msg = "\n Will skip build of PDL::FFTW on this system \n";
goto skip;
}
if (defined $PDL_CONFIG{WITH_FFTW} && $PDL_CONFIG{WITH_FFTW}==1) {
print "\n Will forcibly try and build PDL::FFTW on this system \n\n";
$forcebuild=1;
}
# Setup the FFTW library we will link to: (single/double precision)
# Default is double precision
$want_float = 0;
$want_double = 1;
if (defined $PDL_CONFIG{FFTW_TYPE} && $PDL_CONFIG{FFTW_TYPE} =~ /single/i ) {
$want_float = 1;
$want_double = 0;
}
$found_float = $found_double = 'none';
# Look for FFTW includes/libs
# default locations:
@FFTW_inc_locations = ('/usr/local/include');
@FFTW_lib_locations = ('/lib','/usr/lib','/usr/local/lib');
# get locations from perldl.conf, if specified there:
@FFTW_inc_locations = @{$PDL_CONFIG{FFTW_INC}} if( defined $PDL_CONFIG{FFTW_INC} );
@FFTW_lib_locations = @{$PDL_CONFIG{FFTW_LIBS}} if( defined $PDL_CONFIG{FFTW_LIBS} );
foreach $i (@FFTW_inc_locations) {
if (-e "$i/dfftw.h") {
print "Found FFTW2 double version in $i/dfftw.h !\n";
$double_rinclude = 'drfftw.h';
$double_lib = '-ldfftw -ldrfftw';
# Inc found, now try to find libs:
if( findLibs($double_lib, @FFTW_lib_locations)){
print " FFTW Libs also found.\n";
$found_double = 'dfftw.h';
}
}
if (-e "$i/sfftw.h") {
print "Found FFTW2 single version $i/sfftw.h !\n";
$single_rinclude = 'srfftw.h';
$single_lib = '-lsfftw -lsrfftw';
# Inc found, now try to find libs:
if( findLibs($single_lib, @FFTW_lib_locations)){
print " FFTW Libs also found.\n";
$found_float = 'sfftw.h';
}
}
if (-e "$i/fftw.h") {
open F,"$i/fftw.h";
$is_float=0;
while (<F>) {
if (/define FFTW_ENABLE_FLOAT 1/) {$is_float=1;}
}
close F;
if ($is_float) {
print "Found FFTW2 single version in $i/fftw.h !\n";
$single_rinclude = 'rfftw.h';
$single_lib = '-lfftw -lrfftw';
# Inc found, now try to find libs:
if( findLibs($single_lib, @FFTW_lib_locations)){
print " FFTW Libs also found.\n";
$found_float = 'fftw.h';
}
}
else {
print "Found FFTW2 double version in $i/fftw.h !\n";
$double_rinclude = 'rfftw.h';
$double_lib = '-lfftw -lrfftw';
if( findLibs($double_lib, @FFTW_lib_locations)){
print " FFTW Libs also found.\n";
$found_double = 'fftw.h';
}
}
}
}
$donot = 1;
$wanted_not_found = 0;
# want float, found float
if ($found_float ne 'none' && $want_float ) {
$include = $found_float;
print "Building single version\n";
$pdltype = 'PDL_F';
$lib = $single_lib;
$rinclude = $single_rinclude;
$out = '$fftwtype=\'float\'';
$donot = 0;
}
# want double, found double
elsif ($found_double ne 'none' && $want_double ) {
$include = $found_double;
print "Building double version\n";
$pdltype = 'PDL_D';
$lib = $double_lib;
$rinclude = $double_rinclude;
$out = '$fftwtype=\'double\'';
$donot = 0;
}
if ( $donot ) {
$msg .= "\n Skipping build of PDL::FFTW.\n";
# maybe we found something, but it wasn't what was wanted...
if ( $found_double ne 'none' )
{ $msg .= "Found double version, wanted float!\n" }
if ( $found_float ne 'none' )
{ $msg .= "Found float version, wanted double!\n" }
}
skip:
if ($msg ne "" && $forcebuild==0) {
warn $msg."\n";
open(OUT,">Makefile");
print OUT "fred:\n";
print OUT "\t\@echo \n";
my $emsg = substr($msg, 1); # Get rid of leading \n
$emsg =~ s/\n+$//; # Remove final \n(s)
$emsg =~ s/"//g;
$emsg =~ s/\n/"\n\t\@echo "/g; # Echo other lines
print OUT "\t\@echo \"$emsg\"\n";
print OUT "\t\@echo \n";
print OUT "\nall: fred\n";
print OUT "\ntest: fred\n";
print OUT <<EOT;
clean ::
-mv Makefile Makefile.old
realclean ::
rm -rf Makefile Makefile.old
EOT
close(OUT);
$donot = 1;
} else {
print "\n Building PDL::FFTW. Turn off WITH_FFTW if there are any problems\n\n";
}
# Sub to find libs
sub findLibs {
my ($libstring, @libdirs) = @_;
# make a list of libs from the libstring
my @libs = split ' ',$double_lib;
grep s/\-l//g, @libs;
grep $_ = "lib$_.a", @libs;
my %libs;
my $lib;
foreach $libdir(@libdirs){
foreach $lib(@libs){
if( -e "$libdir/$lib"){
$libs{$lib} = 1;
}
}
}
if( scalar(keys %libs) == scalar(@libs) ){
return 1; # all libs in the list were found
}
print " Libs: '".join("', '",@libs)."' Not Found\n";
print " Looked in: '".join("', '",@libdirs)."'\n";
return 0; # all libs in the list not found
}
}
##############################################################################
return if $donot;
open F,'>typespec';
print F $out,";\n";
print F 'pp_addhdr(\'',"\n";
print F '#include "',$include,'"',"\n";
print F '#include "',$rinclude,'"',"\n";
print F '#define PDL_MYTYPE ',$pdltype,"\n";
print F '\');',"\n";
close F;
@pack = (["fftw.pd",FFTW,PDL::FFTW]);
%hash = pdlpp_stdargs_int(@::pack);
$hash{INC} .= " -I".join(' -I',@FFTW_inc_locations);
$hash{clean}->{FILES} .= ' typespec';
push @{$hash{LIBS}},"-lm -L".join(" -L",@FFTW_lib_locations)." $lib";
WriteMakefile(%hash);
sub MY::postamble {
pdlpp_postamble_int(@::pack);
} # Add genpp rule
|