[win32] integrate mainline
[p5sagit/p5-mst-13.2.git] / ext / B / O.pm
CommitLineData
a798dbf2 1package O;
2use B qw(minus_c);
3use Carp;
4
5sub import {
6 my ($class, $backend, @options) = @_;
7 eval "use B::$backend ()";
8 if ($@) {
9 croak "use of backend $backend failed: $@";
10 }
11 my $compilesub = &{"B::${backend}::compile"}(@options);
12 if (ref($compilesub) eq "CODE") {
13 minus_c;
14 eval 'END { &$compilesub() }';
15 } else {
16 die $compilesub;
17 }
18}
19
201;
21