This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perl 5.002gamma: hints/linux.sh
[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
12echo "Extracting perl.exp"
13
14echo "#!" > perl.exp
15
16sed -n "/^[A-Za-z]/ p" global.sym >> perl.exp
17
75f92628
AD
18# also add symbols from interp.sym
19# They are only needed if -DMULTIPLICITY is not set but it
20# doesn't hurt to include them anyway.
21sed -n "/^[A-Za-z]/ p" interp.sym >> perl.exp
22
23# extra globals not included above.
a0d0e21e
LW
24cat <<END >> perl.exp
25perl_init_ext
26perl_alloc
27perl_construct
28perl_destruct
29perl_free
30perl_parse
31perl_run
32perl_get_sv
33perl_get_av
34perl_get_hv
35perl_get_cv
36perl_call_argv
37perl_call_pv
38perl_call_method
39perl_call_sv
40perl_requirepv
1aef975c
AD
41safemalloc
42saferealloc
43safefree
a0d0e21e 44END