1ExtUtils::Miniperl(3pm)Perl Programmers Reference GuideExtUtils::Miniperl(3pm)
2
3
4
6 ExtUtils::Miniperl, writemain - write the C code for perlmain.c
7
9 "use ExtUtils::Miniperl;"
10
11 "writemain(@directories);"
12
14 This whole module is written when perl itself is built from a script
15 called minimod.PL. In case you want to patch it, please patch
16 minimod.PL in the perl distribution instead.
17
18 writemain() takes an argument list of directories containing archive
19 libraries that relate to perl modules and should be linked into a new
20 perl binary. It writes to STDOUT a corresponding perlmain.c file that
21 is a plain C file containing all the bootstrap code to make the modules
22 associated with the libraries available from within perl.
23
24 The typical usage is from within a Makefile generated by
25 ExtUtils::MakeMaker. So under normal circumstances you won't have to
26 deal with this module directly.
27
29 ExtUtils::MakeMaker
30
31
32
33perl v5.10.1 2017-03-22 ExtUtils::Miniperl(3pm)