This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Update to version 1.16
[perl5.git] / perl_exp.SH
CommitLineData
a0d0e21e
LW
1#!/bin/sh
2
75f92628
AD
3# Written: Nov 1994 Wayne Scott (wscott@ichips.intel.com)
4
a0d0e21e
LW
5# Create the export list for perl.
6# Needed by AIX to do dynamic linking.
7
8# This simple program relys on 'global.sym' being up to date
9# with all of the global symbols that a dynamicly link library
10# might want to access.
11
bbb28fc1 12# All symbols have a Perl_ prefix because that's what embed.h
13# sticks in front of them.
14
a0d0e21e
LW
15echo "Extracting perl.exp"
16
17echo "#!" > perl.exp
18
bbb28fc1 19sed -n '/^[A-Za-z]/ s/^/Perl_/p' global.sym >> perl.exp
a0d0e21e 20
75f92628
AD
21# also add symbols from interp.sym
22# They are only needed if -DMULTIPLICITY is not set but it
23# doesn't hurt to include them anyway.
bbb28fc1 24sed -n '/^[A-Za-z]/ p' interp.sym >> perl.exp
75f92628
AD
25
26# extra globals not included above.
a0d0e21e 27cat <<END >> perl.exp
a5f75d66 28perl_init_i18nl14n
a0d0e21e
LW
29perl_init_ext
30perl_alloc
31perl_construct
32perl_destruct
33perl_free
34perl_parse
35perl_run
36perl_get_sv
37perl_get_av
38perl_get_hv
39perl_get_cv
40perl_call_argv
41perl_call_pv
42perl_call_method
43perl_call_sv
44perl_requirepv
1aef975c
AD
45safemalloc
46saferealloc
47safefree
a0d0e21e 48END