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
|
package ExtUtils::CBuilder::Base;
use strict;
use File::Spec;
use File::Basename;
use Config;
use Text::ParseWords;
use vars qw($VERSION);
$VERSION = '0.00_01';
sub new {
my $class = shift;
my $self = bless {@_}, $class;
$self->{properties}{perl} = $class->find_perl_interpreter
or warn "Warning: Can't locate your perl binary";
while (my ($k,$v) = each %Config) {
$self->{config}{$k} = $v unless exists $self->{config}{$k};
}
return $self;
}
sub find_perl_interpreter {
my $perl;
File::Spec->file_name_is_absolute($perl = $^X)
or -f ($perl = $Config::Config{perlpath})
or ($perl = $^X);
return $perl;
}
sub add_to_cleanup {
my $self = shift;
my %files = map {$_, 1} @_;
}
sub object_file {
my ($self, $filename) = @_;
# File name, minus the suffix
(my $file_base = $filename) =~ s/\.[^.]+$//;
return "$file_base$self->{config}{obj_ext}";
}
sub arg_include_dirs {
my $self = shift;
return map {"-I$_"} @_;
}
sub arg_nolink { '-c' }
sub arg_object_file {
my ($self, $file) = @_;
return ('-o', $file);
}
sub arg_share_object_file {
my ($self, $file) = @_;
return ($self->split_like_shell($self->{config}{lddlflags}), '-o', $file);
}
sub arg_exec_file {
my ($self, $file) = @_;
return ('-o', $file);
}
sub compile {
my ($self, %args) = @_;
die "Missing 'source' argument to compile()" unless defined $args{source};
my $cf = $self->{config}; # For convenience
$args{object_file} ||= $self->object_file($args{source});
my @include_dirs = $self->arg_include_dirs
(@{$args{include_dirs} || []},
File::Spec->catdir($cf->{installarchlib}, 'CORE'));
my @extra_compiler_flags = $self->split_like_shell($args{extra_compiler_flags});
my @cccdlflags = $self->split_like_shell($cf->{cccdlflags});
my @ccflags = $self->split_like_shell($cf->{ccflags});
my @optimize = $self->split_like_shell($cf->{optimize});
my @flags = (@include_dirs, @cccdlflags, @extra_compiler_flags,
$self->arg_nolink,
@ccflags, @optimize,
$self->arg_object_file($args{object_file}),
);
my @cc = $self->split_like_shell($cf->{cc});
$self->do_system(@cc, @flags, $args{source})
or die "error building $args{object_file} from '$args{source}'";
return $args{object_file};
}
sub have_compiler {
my ($self) = @_;
return $self->{have_compiler} if defined $self->{have_compiler};
my $tmpfile = File::Spec->catfile(File::Spec->tmpdir, 'compilet.c');
{
local *FH;
open FH, "> $tmpfile" or die "Can't create $tmpfile: $!";
print FH "int boot_compilet() { return 1; }\n";
close FH;
}
my ($obj_file, @lib_files);
eval {
$obj_file = $self->compile(source => $tmpfile);
@lib_files = $self->link(objects => $obj_file, module_name => 'compilet');
};
warn $@ if $@;
my $result = $self->{have_compiler} = $@ ? 0 : 1;
foreach (grep defined, $tmpfile, $obj_file, @lib_files) {
1 while unlink;
}
return $result;
}
sub lib_file {
my ($self, $dl_file) = @_;
$dl_file =~ s/\.[^.]+$//;
$dl_file =~ tr/"//d;
return "$dl_file.$self->{config}{dlext}";
}
sub exe_file {
my ($self, $dl_file) = @_;
$dl_file =~ s/\.[^.]+$//;
$dl_file =~ tr/"//d;
return "$dl_file$self->{config}{_exe}";
}
sub need_prelink { 0 }
sub prelink {
my ($self, %args) = @_;
($args{dl_file} = $args{dl_name}) =~ s/.*::// unless $args{dl_file};
require ExtUtils::Mksymlists;
ExtUtils::Mksymlists::Mksymlists( # dl. abbrev for dynamic library
DL_VARS => $args{dl_vars} || [],
DL_FUNCS => $args{dl_funcs} || {},
FUNCLIST => $args{dl_func_list} || [],
IMPORTS => $args{dl_imports} || {},
NAME => $args{dl_name},
DLBASE => $args{dl_base},
FILE => $args{dl_file},
);
# Mksymlists will create one of these files
return grep -e, map "$args{dl_file}.$_", qw(ext def opt);
}
sub link {
my ($self, %args) = @_;
return $self->_do_link('lib_file', lddl => 1, %args);
}
sub link_executable {
my ($self, %args) = @_;
return $self->_do_link('exe_file', lddl => 0, %args);
}
sub _do_link {
my ($self, $type, %args) = @_;
my $cf = $self->{config}; # For convenience
my $objects = delete $args{objects};
$objects = [$objects] unless ref $objects;
my $out = $args{$type} || $self->$type($objects->[0]);
my @temp_files;
@temp_files =
$self->prelink(%args,
dl_name => $args{module_name}) if $self->need_prelink;
my @linker_flags = $self->split_like_shell($args{extra_linker_flags});
my @output = $args{lddl} ? $self->arg_share_object_file($out) : $self->arg_exec_file($out);
my @shrp = $self->split_like_shell($cf->{shrpenv});
my @ld = $self->split_like_shell($cf->{ld});
$self->do_system(@shrp, @ld, @output, @$objects, @linker_flags)
or die "error building $out from @$objects";
return wantarray ? ($out, @temp_files) : $out;
}
sub do_system {
my ($self, @cmd) = @_;
print "@cmd\n";
return !system(@cmd);
}
sub split_like_shell {
my ($self, $string) = @_;
return () unless defined($string);
return @$string if UNIVERSAL::isa($string, 'ARRAY');
$string =~ s/^\s+|\s+$//g;
return () unless length($string);
return Text::ParseWords::shellwords($string);
}
1;
|