1 package ExtUtils
::Mkbootstrap
;
3 $VERSION = substr q
$Revision: 1.14 $, 10;
4 # $Date: 1996/09/03 17:04:43 $
9 @EXPORT='&Mkbootstrap';
12 my($baseext, @bsloadlibs)=@_;
13 @bsloadlibs = grep($_, @bsloadlibs); # strip empty libs
15 print STDOUT
" bsloadlibs=@bsloadlibs\n" if $Verbose;
17 # We need DynaLoader here because we and/or the *_BS file may
18 # call dl_findfile(). We don't say `use' here because when
19 # first building perl extensions the DynaLoader will not have
20 # been built when MakeMaker gets first used.
23 rename "$baseext.bs", "$baseext.bso"
26 if (-f
"${baseext}_BS"){
28 package DynaLoader
; # execute code as if in DynaLoader
29 local($osname, $dlsrc) = (); # avoid warnings
30 ($osname, $dlsrc) = @Config::Config
{qw(osname dlsrc)};
37 if ($Config{'dlsrc'} =~ /^dl_dld/){
39 push(@dl_resolve_using, dl_findfile
('-lc'));
42 my(@all) = (@bsloadlibs, @DynaLoader::dl_resolve_using
);
45 open BS
, ">$baseext.bs"
46 or die "Unable to open $baseext.bs: $!";
47 print STDOUT
"Writing $baseext.bs\n";
48 print STDOUT
" containing: @all" if $Verbose;
49 print BS
"# $baseext DynaLoader bootstrap file for $^O architecture.\n";
50 print BS
"# Do not edit this file, changes will be lost.\n";
51 print BS
"# This file was automatically generated by the\n";
52 print BS
"# Mkbootstrap routine in ExtUtils::Mkbootstrap (v$VERSION).\n";
53 print BS
"\@DynaLoader::dl_resolve_using = ";
54 # If @all contains names in the form -lxxx or -Lxxx then it's asking for
55 # runtime library location so we automatically add a call to dl_findfile()
56 if (" @all" =~ m/ -[lLR]/){
57 print BS
" dl_findfile(qw(\n @all\n ));\n";
59 print BS
" qw(@all);\n";
61 # write extra code if *_BS says so
62 print BS
$DynaLoader::bscode
if $DynaLoader::bscode
;
74 ExtUtils::Mkbootstrap - make a bootstrap file for use by DynaLoader
82 Mkbootstrap typically gets called from an extension Makefile.
84 There is no C<*.bs> file supplied with the extension. Instead, there may
85 be a C<*_BS> file which has code for the special cases, like posix for
86 berkeley db on the NeXT.
88 This file will get parsed, and produce a maybe empty
89 C<@DynaLoader::dl_resolve_using> array for the current architecture.
90 That will be extended by $BSLOADLIBS, which was computed by
91 ExtUtils::Liblist::ext(). If this array still is empty, we do nothing,
92 else we write a .bs file with an C<@DynaLoader::dl_resolve_using>
95 The C<*_BS> file can put some code into the generated C<*.bs> file by
96 placing it in C<$bscode>. This is a handy 'escape' mechanism that may
97 prove useful in complex situations.
99 If @DynaLoader::dl_resolve_using contains C<-L*> or C<-l*> entries then
100 Mkbootstrap will automatically add a dl_findfile() call to the
101 generated C<*.bs> file.