blob: b08bf1d9243cd12f43b3204578158abda9242cd6 (
plain)
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
|
#!./miniperl
#
# Create perlmain.c from miniperlmain.c, adding code to boot the
# extensions listed on the command line. In addition, create a
# linker options file which causes the bootstrap routines for
# these extension to be universal symbols in PerlShr.Exe.
#
# Last modified 29-Nov-1994 by Charles Bailey bailey@newman.upenn.edu
#
if (-f 'miniperlmain.c') { $dir = ''; }
elsif (-f '../miniperlmain.c') { $dir = '../'; }
else { die "$0: Can't find miniperlmain.c\n"; }
open (IN,"${dir}miniperlmain.c")
|| die "$0: Can't open ${dir}miniperlmain.c: $!\n";
open (OUT,">${dir}perlmain.c")
|| die "$0: Can't open ${dir}perlmain.c: $!\n";
while (<IN>) {
print OUT;
last if /Do not delete this line--writemain depends on it/;
}
$ok = !eof(IN);
close IN;
if (!$ok) {
close OUT;
unlink "${dir}perlmain.c";
die "$0: Can't find marker line in ${dir}miniperlmain.c - aborting\n";
}
print OUT <<'EOH';
static void
xs_init()
{
EOH
if (@ARGV) {
$names = join(' ',@ARGV);
$names =~ tr/"//d; # Plan9 doesn't remove "" on command line
# Allow for multiple names in one quoted group
@exts = split(/\s+/,$names);
}
if (@exts) {
print OUT " char *file = __FILE__;\n";
foreach $ext (@exts) {
my($subname) = $ext;
$subname =~ s/::/__/g;
print OUT "extern void boot_${subname} (CV* cv);\n"
}
# May not actually be a declaration, so put after other declarations
print OUT " dXSUB_SYS;\n";
foreach $ext (@exts) {
my($subname) = $ext;
$subname =~ s/::/__/g;
print "Adding $ext . . .\n";
if ($ext eq 'DynaLoader') {
# Must NOT install 'DynaLoader::boot_DynaLoader' as 'bootstrap'!
# boot_DynaLoader is called directly in DynaLoader.pm
print OUT " newXS(\"${ext}::boot_${ext}\", boot_${subname}, file);\n"
}
else {
print OUT " newXS(\"${ext}::bootstrap\", boot_${subname}, file);\n"
}
}
}
print OUT "}\n";
close OUT;
|