X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FScalar-Vec-Util.git;a=blobdiff_plain;f=Makefile.PL;fp=Makefile.PL;h=8cabdb8724009b8f203a668091c6fdfe5308da91;hp=49e3969ceef0de4cf502d38bc9823d22c61c382a;hb=4bf551f40a4b4435ebfb90d32d688b1318d02dd5;hpb=dd9de87457a5c03961779add970e9d0f103d334f diff --git a/Makefile.PL b/Makefile.PL index 49e3969..8cabdb8 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -129,25 +129,31 @@ if (defined $cc and defined $ld) { $PARAMS{CC} = $cc; $PARAMS{LD} = $ld; - my $bits = 8; - if (not is_little_endian()) { - print "Forcing unit size of 8 on non-little-endian systems.\n"; + my $type = filter_argv UNIT => sub { return $_[0] }; + if (defined $type) { + print "Forcing '$type' as the unit.\n"; + push @DEFINES, '-DBV_UNIT="' . $type . '"'; } else { - print "Checking unit size in bits... "; - my $size = 1; - my $align = $Config{alignbytes} || 1; - my @units = (8, 16, 32, 64); - for my $unit (@units) { - my $unit_size = $Config{"u${unit}size"}; - if ($unit_size and $unit_size <= $align) { - $bits = $unit; - $size = $unit_size; + my $bits = 8; + if (not is_little_endian()) { + print "Forcing unit size of 8 on non-little-endian systems.\n"; + } else { + print "Checking unit size in bits... "; + my $size = 1; + my $align = $Config{alignbytes} || 1; + my @units = (8, 16, 32, 64); + for my $unit (@units) { + my $unit_size = $Config{"u${unit}size"}; + if ($unit_size and $unit_size <= $align) { + $bits = $unit; + $size = $unit_size; + } } + print "$bits (actually $size bytes for $align bytes alignment).\n"; } - print "$bits (actually $size bytes for $align bytes alignment).\n"; + push @DEFINES, '-DBV_UNIT="' . ($Config{"u${bits}type"} || "U$bits") . '"'; + push @DEFINES, "-DSVU_SIZE=$bits"; } - push @DEFINES, '-DBV_UNIT="' . ($Config{"u${bits}type"} || "U$bits") . '"'; - push @DEFINES, "-DSVU_SIZE=$bits"; } else { $PARAMS{C} = [ ]; $PARAMS{XS} = { };