ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/App-Staticperl/staticperl.pod
Revision: 1.19
Committed: Fri Dec 10 15:25:24 2010 UTC (13 years, 6 months ago) by root
Branch: MAIN
Changes since 1.18: +37 -0 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 =head1 NAME
2    
3 root 1.8 staticperl - perl, libc, 100 modules, all in one 500kb file
4 root 1.1
5     =head1 SYNOPSIS
6    
7     staticperl help # print the embedded documentation
8     staticperl fetch # fetch and unpack perl sources
9     staticperl configure # fetch and then configure perl
10     staticperl build # configure and then build perl
11     staticperl install # build and then install perl
12     staticperl clean # clean most intermediate files (restart at configure)
13     staticperl distclean # delete everything installed by this script
14     staticperl cpan # invoke CPAN shell
15     staticperl instmod path... # install unpacked modules
16     staticperl instcpan modulename... # install modules from CPAN
17     staticperl mkbundle <bundle-args...> # see documentation
18     staticperl mkperl <bundle-args...> # see documentation
19 root 1.14 staticperl mkapp appname <bundle-args...> # see documentation
20 root 1.1
21     Typical Examples:
22    
23     staticperl install # fetch, configure, build and install perl
24     staticperl cpan # run interactive cpan shell
25     staticperl mkperl -M '"Config_heavy.pl"' # build a perl that supports -V
26     staticperl mkperl -MAnyEvent::Impl::Perl -MAnyEvent::HTTPD -MURI -MURI::http
27     # build a perl with the above modules linked in
28 root 1.14 staticperl mkapp myapp --boot mainprog mymodules
29     # build a binary "myapp" from mainprog and mymodules
30 root 1.1
31     =head1 DESCRIPTION
32    
33 root 1.16 This script helps you to create single-file perl interpreters
34     or applications, or embedding a perl interpreter in your
35     applications. Single-file means that it is fully self-contained - no
36     separate shared objects, no autoload fragments, no .pm or .pl files are
37     needed. And when linking statically, you can create (or embed) a single
38     file that contains perl interpreter, libc, all the modules you need, all
39     the libraries you need and of course your actual program.
40 root 1.1
41 root 1.8 With F<uClibc> and F<upx> on x86, you can create a single 500kb binary
42     that contains perl and 100 modules such as POSIX, AnyEvent, EV, IO::AIO,
43     Coro and so on. Or any other choice of modules.
44 root 1.1
45 root 1.3 The created files do not need write access to the file system (like PAR
46 root 1.1 does). In fact, since this script is in many ways similar to PAR::Packer,
47     here are the differences:
48    
49     =over 4
50    
51     =item * The generated executables are much smaller than PAR created ones.
52    
53     Shared objects and the perl binary contain a lot of extra info, while
54     the static nature of F<staticperl> allows the linker to remove all
55     functionality and meta-info not required by the final executable. Even
56     extensions statically compiled into perl at build time will only be
57     present in the final executable when needed.
58    
59     In addition, F<staticperl> can strip perl sources much more effectively
60     than PAR.
61    
62     =item * The generated executables start much faster.
63    
64     There is no need to unpack files, or even to parse Zip archives (which is
65     slow and memory-consuming business).
66    
67     =item * The generated executables don't need a writable filesystem.
68    
69     F<staticperl> loads all required files directly from memory. There is no
70     need to unpack files into a temporary directory.
71    
72 root 1.17 =item * More control over included files, more burden.
73 root 1.1
74 root 1.3 PAR tries to be maintenance and hassle-free - it tries to include more
75 root 1.17 files than necessary to make sure everything works out of the box. It
76     mostly succeeds at this, but he extra files (such as the unicode database)
77     can take substantial amounts of memory and file size.
78 root 1.1
79     With F<staticperl>, the burden is mostly with the developer - only direct
80     compile-time dependencies and L<AutoLoader> are handled automatically.
81     This means the modules to include often need to be tweaked manually.
82    
83 root 1.17 All this does not preclude more permissive modes to be implemented in
84     the future, but right now, you have to resolve state hidden dependencies
85     manually.
86    
87 root 1.1 =item * PAR works out of the box, F<staticperl> does not.
88    
89     Maintaining your own custom perl build can be a pain in the ass, and while
90     F<staticperl> tries to make this easy, it still requires a custom perl
91     build and possibly fiddling with some modules. PAR is likely to produce
92     results faster.
93    
94 root 1.13 Ok, PAR never has worked for me out of the box, and for some people,
95     F<staticperl> does work out of the box, as they don't count "fiddling with
96     module use lists" against it, but nevertheless, F<staticperl> is certainly
97     a bit more difficult to use.
98    
99 root 1.1 =back
100    
101     =head1 HOW DOES IT WORK?
102    
103     Simple: F<staticperl> downloads, compile and installs a perl version of
104     your choice in F<~/.staticperl>. You can add extra modules either by
105     letting F<staticperl> install them for you automatically, or by using CPAN
106     and doing it interactively. This usually takes 5-10 minutes, depending on
107 root 1.3 the speed of your computer and your internet connection.
108 root 1.1
109     It is possible to do program development at this stage, too.
110    
111     Afterwards, you create a list of files and modules you want to include,
112 root 1.3 and then either build a new perl binary (that acts just like a normal perl
113 root 1.1 except everything is compiled in), or you create bundle files (basically C
114     sources you can use to embed all files into your project).
115    
116 root 1.18 This step is very fast (a few seconds if PPI is not used for stripping, or
117     the stripped files are in the cache), and can be tweaked and repeated as
118     often as necessary.
119 root 1.1
120     =head1 THE F<STATICPERL> SCRIPT
121    
122     This module installs a script called F<staticperl> into your perl
123     binary directory. The script is fully self-contained, and can be used
124     without perl (for example, in an uClibc chroot environment). In fact,
125     it can be extracted from the C<App::Staticperl> distribution tarball as
126     F<bin/staticperl>, without any installation.
127    
128     F<staticperl> interprets the first argument as a command to execute,
129     optionally followed by any parameters.
130    
131     There are two command categories: the "phase 1" commands which deal with
132     installing perl and perl modules, and the "phase 2" commands, which deal
133     with creating binaries and bundle files.
134    
135     =head2 PHASE 1 COMMANDS: INSTALLING PERL
136    
137     The most important command is F<install>, which does basically
138     everything. The default is to download and install perl 5.12.2 and a few
139     modules required by F<staticperl> itself, but all this can (and should) be
140     changed - see L<CONFIGURATION>, below.
141    
142     The command
143    
144     staticperl install
145    
146     Is normally all you need: It installs the perl interpreter in
147     F<~/.staticperl/perl>. It downloads, configures, builds and installs the
148     perl interpreter if required.
149    
150     Most of the following commands simply run one or more steps of this
151     sequence.
152    
153 root 1.3 To force recompilation or reinstallation, you need to run F<staticperl
154 root 1.1 distclean> first.
155    
156     =over 4
157    
158     =item F<staticperl fetch>
159    
160     Runs only the download and unpack phase, unless this has already happened.
161    
162     =item F<staticperl configure>
163    
164     Configures the unpacked perl sources, potentially after downloading them first.
165    
166     =item F<staticperl build>
167    
168     Builds the configured perl sources, potentially after automatically
169     configuring them.
170    
171     =item F<staticperl install>
172    
173 root 1.3 Wipes the perl installation directory (usually F<~/.staticperl/perl>) and
174     installs the perl distribution, potentially after building it first.
175 root 1.1
176     =item F<staticperl cpan> [args...]
177    
178 root 1.3 Starts an interactive CPAN shell that you can use to install further
179     modules. Installs the perl first if necessary, but apart from that,
180 root 1.1 no magic is involved: you could just as well run it manually via
181     F<~/.staticperl/perl/bin/cpan>.
182    
183     Any additional arguments are simply passed to the F<cpan> command.
184    
185     =item F<staticperl instcpan> module...
186    
187     Tries to install all the modules given and their dependencies, using CPAN.
188    
189     Example:
190    
191     staticperl instcpan EV AnyEvent::HTTPD Coro
192    
193     =item F<staticperl instsrc> directory...
194    
195     In the unlikely case that you have unpacked perl modules around and want
196 root 1.3 to install from these instead of from CPAN, you can do this using this
197 root 1.1 command by specifying all the directories with modules in them that you
198     want to have built.
199    
200     =item F<staticperl clean>
201    
202 root 1.12 Deletes the perl source directory (and potentially cleans up other
203     intermediate files). This can be used to clean up files only needed for
204     building perl, without removing the installed perl interpreter, or to
205     force a re-build from scratch.
206    
207     At the moment, it doesn't delete downloaded tarballs.
208 root 1.1
209     =item F<staticperl distclean>
210    
211     This wipes your complete F<~/.staticperl> directory. Be careful with this,
212     it nukes your perl download, perl sources, perl distribution and any
213     installed modules. It is useful if you wish to start over "from scratch"
214     or when you want to uninstall F<staticperl>.
215    
216     =back
217    
218     =head2 PHASE 2 COMMANDS: BUILDING PERL BUNDLES
219    
220     Building (linking) a new F<perl> binary is handled by a separate
221     script. To make it easy to use F<staticperl> from a F<chroot>, the script
222     is embedded into F<staticperl>, which will write it out and call for you
223     with any arguments you pass:
224    
225     staticperl mkbundle mkbundle-args...
226    
227     In the oh so unlikely case of something not working here, you
228 root 1.2 can run the script manually as well (by default it is written to
229 root 1.1 F<~/.staticperl/mkbundle>).
230    
231     F<mkbundle> is a more conventional command and expect the argument
232 root 1.3 syntax commonly used on UNIX clones. For example, this command builds
233 root 1.1 a new F<perl> binary and includes F<Config.pm> (for F<perl -V>),
234     F<AnyEvent::HTTPD>, F<URI> and a custom F<httpd> script (from F<eg/httpd>
235     in this distribution):
236    
237     # first make sure we have perl and the required modules
238     staticperl instcpan AnyEvent::HTTPD
239    
240     # now build the perl
241     staticperl mkperl -M'"Config_heavy.pl"' -MAnyEvent::Impl::Perl \
242     -MAnyEvent::HTTPD -MURI::http \
243     --add 'eg/httpd httpd.pm'
244    
245     # finally, invoke it
246     ./perl -Mhttpd
247    
248     As you can see, things are not quite as trivial: the L<Config> module has
249     a hidden dependency which is not even a perl module (F<Config_heavy.pl>),
250     L<AnyEvent> needs at least one event loop backend that we have to
251 root 1.3 specify manually (here L<AnyEvent::Impl::Perl>), and the F<URI> module
252 root 1.1 (required by L<AnyEvent::HTTPD>) implements various URI schemes as extra
253     modules - since L<AnyEvent::HTTPD> only needs C<http> URIs, we only need
254 root 1.3 to include that module. I found out about these dependencies by carefully
255     watching any error messages about missing modules...
256 root 1.1
257 root 1.14 Instead of building a new perl binary, you can also build a standalone
258     application:
259    
260     # build the app
261     staticperl mkapp app --boot eg/httpd \
262     -MAnyEvent::Impl::Perl -MAnyEvent::HTTPD -MURI::http
263    
264     # run it
265     ./app
266    
267 root 1.1 =head3 OPTION PROCESSING
268    
269 root 1.3 All options can be given as arguments on the command line (typically
270     using long (e.g. C<--verbose>) or short option (e.g. C<-v>) style). Since
271     specifying a lot of modules can make the command line very cumbersome,
272 root 1.1 you can put all long options into a "bundle specification file" (with or
273     without C<--> prefix) and specify this bundle file instead.
274    
275     For example, the command given earlier could also look like this:
276    
277     staticperl mkperl httpd.bundle
278    
279     And all options could be in F<httpd.bundle>:
280    
281     use "Config_heavy.pl"
282     use AnyEvent::Impl::Perl
283     use AnyEvent::HTTPD
284     use URI::http
285     add eg/httpd httpd.pm
286    
287 root 1.2 All options that specify modules or files to be added are processed in the
288 root 1.3 order given on the command line (that affects the C<--use> and C<--eval>
289 root 1.2 options at the moment).
290    
291 root 1.19 =head3 PACKAGE SELECTION WORKFLOW
292    
293     F<staticperl mkbundle> has a number of options to control package
294     selection. This section describes how they interact with each other. Also,
295     since I am still a newbie w.r.t. these issues, maybe future versions of
296     F<staticperl> will change this, so watch out :)
297    
298     The idiom "in order" means "in order that they are specified on the
299     commandline". If you use a bundle specification file, then the options
300     will be processed as if they were given in place of the bundle file name.
301    
302     =over 4
303    
304     =item 1. apply all C<--use>, C<--eval>, C<--add>, C<--addbin> and
305     C<--incglob> options, in order.
306    
307     In addition, C<--use> and C<--eval> dependencies will be added when the
308     options are processed.
309    
310     =item 2. apply all C<--include> and C<--exclude> options, in order.
311    
312     All this step does is potentially reduce the number of files already
313     selected or found in phase 1.
314    
315     =item 3. find all modules (== F<.pm> files), gather their static archives
316     (F<.a>) and AutoLoader splitfiles (F<.ix> and F<.al> files) and find any
317     extra libraries they need for linking (F<extralibs.ld>).
318    
319     This step is required to link against XS extensions and also adds files
320     required for L<AutoLoader> to do it's job.
321    
322     =back
323    
324     After this, all the files selected for bundling will be read and processed
325     (stripped), the bundle files will be written, and optionally a new F<perl>
326     or application binary will be linked.
327    
328 root 1.1 =head3 MKBUNDLE OPTIONS
329    
330     =over 4
331    
332 root 1.2 =item --verbose | -v
333    
334     Increases the verbosity level by one (the default is C<1>).
335    
336     =item --quiet | -q
337    
338     Decreases the verbosity level by one.
339    
340     =item --strip none|pod|ppi
341    
342     Specify the stripping method applied to reduce the file of the perl
343     sources included.
344    
345     The default is C<pod>, which uses the L<Pod::Strip> module to remove all
346 root 1.3 pod documentation, which is very fast and reduces file size a lot.
347 root 1.2
348     The C<ppi> method uses L<PPI> to parse and condense the perl sources. This
349 root 1.18 saves a lot more than just L<Pod::Strip>, and is generally safer,
350     but is also a lot slower (some files take almost a minute to strip -
351     F<staticperl> maintains a cache of stripped files to speed up subsequent
352     runs for this reason). Note that this method doesn't optimise for raw file
353     size, but for best compression (that means that the uncompressed file size
354     is a bit larger, but the files compress better, e.g. with F<upx>).
355 root 1.2
356 root 1.9 Last not least, if you need accurate line numbers in error messages,
357     or in the unlikely case where C<pod> is too slow, or some module gets
358     mistreated, you can specify C<none> to not mangle included perl sources in
359     any way.
360 root 1.2
361     =item --perl
362    
363     After writing out the bundle files, try to link a new perl interpreter. It
364     will be called F<perl> and will be left in the current working
365     directory. The bundle files will be removed.
366    
367 root 1.3 This switch is automatically used when F<staticperl> is invoked with the
368 root 1.2 C<mkperl> command (instead of C<mkbundle>):
369    
370     # build a new ./perl with only common::sense in it - very small :)
371     staticperl mkperl -Mcommon::sense
372    
373 root 1.14 =item --app name
374    
375     After writing out the bundle files, try to link a new standalone
376     program. It will be called C<name>, and the bundle files get removed after
377     linking it.
378    
379     The difference to the (mutually exclusive) C<--perl> option is that the
380     binary created by this option will not try to act as a perl interpreter -
381     instead it will simply initialise the perl interpreter, clean it up and
382     exit.
383    
384     This switch is automatically used when F<staticperl> is invoked with the
385     C<mkapp> command (instead of C<mkbundle>):
386    
387     To let it do something useful you I<must> add some boot code, e.g. with
388     the C<--boot> option.
389    
390     Example: create a standalone perl binary that will execute F<appfile> when
391     it is started.
392    
393     staticperl mkbundle --app myexe --boot appfile
394    
395 root 1.2 =item --use module | -Mmodule
396    
397     Include the named module and all direct dependencies. This is done by
398     C<require>'ing the module in a subprocess and tracing which other modules
399     and files it actually loads. If the module uses L<AutoLoader>, then all
400     splitfiles will be included as well.
401    
402     Example: include AnyEvent and AnyEvent::Impl::Perl.
403    
404     staticperl mkbundle --use AnyEvent --use AnyEvent::Impl::Perl
405    
406     Sometimes you want to load old-style "perl libraries" (F<.pl> files), or
407     maybe other weirdly named files. To do that, you need to quote the name in
408 root 1.3 single or double quotes. When given on the command line, you probably need
409 root 1.2 to quote once more to avoid your shell interpreting it. Common cases that
410     need this are F<Config_heavy.pl> and F<utf8_heavy.pl>.
411    
412     Example: include the required files for F<perl -V> to work in all its
413     glory (F<Config.pm> is included automatically by this).
414    
415     # bourne shell
416     staticperl mkbundle --use '"Config_heavy.pl"'
417    
418     # bundle specification file
419     use "Config_heavy.pl"
420    
421     The C<-Mmodule> syntax is included as an alias that might be easier to
422     remember than C<use>. Or maybe it confuses people. Time will tell. Or
423     maybe not. Argh.
424    
425     =item --eval "perl code" | -e "perl code"
426    
427     Sometimes it is easier (or necessary) to specify dependencies using perl
428     code, or maybe one of the modules you use need a special use statement. In
429     that case, you can use C<eval> to execute some perl snippet or set some
430     variables or whatever you need. All files C<require>'d or C<use>'d in the
431     script are included in the final bundle.
432    
433     Keep in mind that F<mkbundle> will only C<require> the modules named
434     by the C<--use> option, so do not expect the symbols from modules you
435 root 1.3 C<--use>'d earlier on the command line to be available.
436 root 1.2
437     Example: force L<AnyEvent> to detect a backend and therefore include it
438     in the final bundle.
439    
440     staticperl mkbundle --eval 'use AnyEvent; AnyEvent::detect'
441    
442     # or like this
443     staticperl mkbundle -MAnyEvent --eval 'use AnyEvent; AnyEvent::detect'
444    
445     Example: use a separate "bootstrap" script that C<use>'s lots of modules
446     and include this in the final bundle, to be executed automatically.
447    
448     staticperl mkbundle --eval 'do "bootstrap"' --boot bootstrap
449    
450     =item --boot filename
451    
452     Include the given file in the bundle and arrange for it to be executed
453     (using a C<require>) before anything else when the new perl is
454     initialised. This can be used to modify C<@INC> or anything else before
455 root 1.3 the perl interpreter executes scripts given on the command line (or via
456 root 1.2 C<-e>). This works even in an embedded interpreter.
457    
458 root 1.18 =item --incglob pattern
459    
460     This goes through all library directories and tries to match any F<.pm>
461     and F<.pl> files against the extended glob pattern (see below). If a file
462     matches, it is added. This switch will automatically detect L<AutoLoader>
463     files and the required link libraries for XS modules, but it will I<not>
464     scan the file for dependencies (at the moment).
465    
466     This is mainly useful to include "everything":
467    
468     --incglob '*'
469    
470     Or to include perl libraries, or trees of those, such as the unicode
471     database files needed by many other modules:
472    
473     --incglob '/unicore/**.pl'
474    
475     =item --add file | --add "file alias"
476 root 1.2
477     Adds the given (perl) file into the bundle (and optionally call it
478     "alias"). This is useful to include any custom files into the bundle.
479    
480     Example: embed the file F<httpd> as F<httpd.pm> when creating the bundle.
481    
482     staticperl mkperl --add "httpd httpd.pm"
483    
484     It is also a great way to add any custom modules:
485    
486     # specification file
487     add file1 myfiles/file1
488     add file2 myfiles/file2
489     add file3 myfiles/file3
490    
491 root 1.18 =item --binadd file | --add "file alias"
492 root 1.10
493     Just like C<--add>, except that it treats the file as binary and adds it
494     without any processing.
495    
496     You should probably add a C</> prefix to avoid clashing with embedded
497     perl files (whose paths do not start with C</>), and/or use a special
498     directory, such as C</res/name>.
499    
500     You can later get a copy of these files by calling C<staticperl::find
501     "alias">.
502    
503 root 1.18 =item --include pattern | -i pattern | --exclude pattern | -x pattern
504    
505     These two options define an include/exclude filter that is used after all
506     files selected by the other options have been found. Each include/exclude
507     is applied to all files found so far - an include makes sure that the
508     given files will be part of the resulting file set, an exclude will
509     exclude files. The patterns are "extended glob patterns" (see below).
510    
511     For example, to include everything, except C<Devel> modules, but still
512     include F<Devel::PPPort>, you could use this:
513    
514     --incglob '*' -i '/Devel/PPPort.pm' -x '/Devel/**'
515    
516 root 1.2 =item --static
517    
518     When C<--perl> is also given, link statically instead of dynamically. The
519     default is to link the new perl interpreter fully dynamic (that means all
520     perl modules are linked statically, but all external libraries are still
521     referenced dynamically).
522    
523     Keep in mind that Solaris doesn't support static linking at all, and
524     systems based on GNU libc don't really support it in a usable fashion
525     either. Try uClibc if you want to create fully statically linked
526     executables, or try the C<--staticlibs> option to link only some libraries
527     statically.
528    
529 root 1.18 =item --staticlib libname
530    
531     When not linking fully statically, this option allows you to link specific
532     libraries statically. What it does is simply replace all occurances of
533     C<-llibname> with the GCC-specific C<-Wl,-Bstatic -llibname -Wl,-Bdynamic>
534     option.
535    
536     This will have no effect unless the library is actually linked against,
537     specifically, C<--staticlib> will not link against the named library
538     unless it would be linked against anyway.
539    
540     Example: link libcrypt statically into the binary.
541    
542     staticperl mkperl -MIO::AIO --staticlib crypt
543    
544     # ldopts might nwo contain:
545     # -lm -Wl,-Bstatic -lcrypt -Wl,-Bdynamic -lpthread
546    
547 root 1.2 =item any other argument
548    
549     Any other argument is interpreted as a bundle specification file, which
550     supports most long options (without extra quoting), one option per line.
551 root 1.1
552     =back
553    
554 root 1.18 =head3 EXTENDED GLOB PATTERNS
555    
556     Some options of F<staticperl mkbundle> expect an I<extended glob
557     pattern>. This is neither a normal shell glob nor a regex, but something
558     in between. The idea has been copied from rsync, and there are the current
559     matching rules:
560    
561     =over 4
562    
563     =item Patterns starting with F</> will be a anchored at the root of the library tree.
564    
565     That is, F</unicore> will match the F<unicore> directory in C<@INC>, but
566     nothing inside, and neither any other file or directory called F<unicore>
567     anywhere else in the hierarchy.
568    
569     =item Patterns not starting with F</> will be anchored at the end of the path.
570    
571     That is, F<idna.pl> will match any file called F<idna.pl> anywhere in the
572     hierarchy, but not any directories of the same name.
573    
574     =item A F<*> matches any single component.
575    
576     That is, F</unicore/*.pl> would match all F<.pl> files directly inside
577     C</unicore>, not any deeper level F<.pl> files. Or in other words, F<*>
578     will not match slashes.
579    
580     =item A F<**> matches anything.
581    
582     That is, F</unicore/**.pl> would match all F<.pl> files under F</unicore>,
583     no matter how deeply nested they are inside subdirectories.
584    
585     =item A F<?> matches a single character within a component.
586    
587     That is, F</Encode/??.pm> matches F</Encode/JP.pm>, but not the
588     hypothetical F</Encode/J/.pm>, as F<?> does not match F</>.
589    
590     =back
591    
592 root 1.15 =head2 F<STATICPERL> CONFIGURATION AND HOOKS
593 root 1.1
594 root 1.2 During (each) startup, F<staticperl> tries to source the following shell
595     files in order:
596    
597     /etc/staticperlrc
598     ~/.staticperlrc
599     $STATICPERL/rc
600    
601     They can be used to override shell variables, or define functions to be
602     called at specific phases.
603    
604     Note that the last file is erased during F<staticperl distclean>, so
605     generally should not be used.
606    
607     =head3 CONFIGURATION VARIABLES
608    
609     =head4 Variables you I<should> override
610    
611     =over 4
612    
613     =item C<EMAIL>
614    
615     The e-mail address of the person who built this binary. Has no good
616     default, so should be specified by you.
617    
618     =item C<CPAN>
619    
620     The URL of the CPAN mirror to use (e.g. L<http://mirror.netcologne.de/cpan/>).
621    
622 root 1.6 =item C<EXTRA_MODULES>
623 root 1.2
624 root 1.6 Additional modules installed during F<staticperl install>. Here you can
625     set which modules you want have to installed from CPAN.
626 root 1.2
627 root 1.11 Example: I really really need EV, AnyEvent, Coro and AnyEvent::AIO.
628 root 1.2
629 root 1.11 EXTRA_MODULES="EV AnyEvent Coro AnyEvent::AIO"
630 root 1.2
631 root 1.6 Note that you can also use a C<postinstall> hook to achieve this, and
632     more.
633 root 1.2
634 root 1.11 =back
635    
636     =head4 Variables you might I<want> to override
637    
638     =over 4
639    
640     =item C<STATICPERL>
641    
642     The directory where staticperl stores all its files
643     (default: F<~/.staticperl>).
644    
645 root 1.6 =item C<PERL_MM_USE_DEFAULT>, C<EV_EXTRA_DEFS>, ...
646 root 1.2
647     Usually set to C<1> to make modules "less inquisitive" during their
648     installation, you can set any environment variable you want - some modules
649     (such as L<Coro> or L<EV>) use environment variables for further tweaking.
650    
651 root 1.11 =item C<PERL_VERSION>
652 root 1.6
653 root 1.11 The perl version to install - default is currently C<5.12.2>, but C<5.8.9>
654     is also a good choice (5.8.9 is much smaller than 5.12.2, while 5.10.1 is
655     about as big as 5.12.2).
656 root 1.2
657 root 1.11 =item C<PERL_PREFIX>
658 root 1.2
659 root 1.6 The prefix where perl gets installed (default: F<$STATICPERL/perl>),
660     i.e. where the F<bin> and F<lib> subdirectories will end up.
661 root 1.2
662 root 1.10 =item C<PERL_CONFIGURE>
663    
664     Additional Configure options - these are simply passed to the perl
665     Configure script. For example, if you wanted to enable dynamic loading,
666     you could pass C<-Dusedl>. To enable ithreads (Why would you want that
667     insanity? Don't! Use L<forks> instead!) you would pass C<-Duseithreads>
668     and so on.
669    
670     More commonly, you would either activate 64 bit integer support
671     (C<-Duse64bitint>), or disable large files support (-Uuselargefiles), to
672     reduce filesize further.
673    
674 root 1.6 =item C<PERL_CPPFLAGS>, C<PERL_OPTIMIZE>, C<PERL_LDFLAGS>, C<PERL_LIBS>
675 root 1.2
676 root 1.6 These flags are passed to perl's F<Configure> script, and are generally
677     optimised for small size (at the cost of performance). Since they also
678     contain subtle workarounds around various build issues, changing these
679     usually requires understanding their default values - best look at the top
680     of the F<staticperl> script for more info on these.
681 root 1.2
682     =back
683    
684 root 1.5 =head4 Variables you probably I<do not want> to override
685 root 1.2
686     =over 4
687    
688     =item C<MKBUNDLE>
689    
690     Where F<staticperl> writes the C<mkbundle> command to
691     (default: F<$STATICPERL/mkbundle>).
692    
693     =item C<STATICPERL_MODULES>
694    
695     Additional modules needed by C<mkbundle> - should therefore not be changed
696     unless you know what you are doing.
697    
698     =back
699    
700     =head3 OVERRIDABLE HOOKS
701    
702     In addition to environment variables, it is possible to provide some
703     shell functions that are called at specific times. To provide your own
704 root 1.3 commands, just define the corresponding function.
705 root 1.2
706     Example: install extra modules from CPAN and from some directories
707     at F<staticperl install> time.
708    
709     postinstall() {
710 root 1.4 rm -rf lib/threads* # weg mit Schaden
711 root 1.2 instcpan IO::AIO EV
712     instsrc ~/src/AnyEvent
713     instsrc ~/src/XML-Sablotron-1.0100001
714 root 1.4 instcpan Anyevent::AIO AnyEvent::HTTPD
715 root 1.2 }
716    
717     =over 4
718    
719 root 1.12 =item preconfigure
720    
721     Called just before running F<./Configur> in the perl source
722     directory. Current working directory is the perl source directory.
723    
724     This can be used to set any C<PERL_xxx> variables, which might be costly
725     to compute.
726    
727 root 1.2 =item postconfigure
728    
729     Called after configuring, but before building perl. Current working
730     directory is the perl source directory.
731    
732 root 1.12 Could be used to tailor/patch config.sh (followed by F<sh Configure -S>)
733     or do any other modifications.
734 root 1.2
735     =item postbuild
736    
737     Called after building, but before installing perl. Current working
738     directory is the perl source directory.
739    
740     I have no clue what this could be used for - tell me.
741    
742     =item postinstall
743    
744     Called after perl and any extra modules have been installed in C<$PREFIX>,
745     but before setting the "installation O.K." flag.
746    
747     The current working directory is C<$PREFIX>, but maybe you should not rely
748     on that.
749    
750     This hook is most useful to customise the installation, by deleting files,
751     or installing extra modules using the C<instcpan> or C<instsrc> functions.
752    
753     The script must return with a zero exit status, or the installation will
754     fail.
755    
756     =back
757 root 1.1
758 root 1.9 =head1 ANATOMY OF A BUNDLE
759    
760     When not building a new perl binary, C<mkbundle> will leave a number of
761     files in the current working directory, which can be used to embed a perl
762     interpreter in your program.
763    
764     Intimate knowledge of L<perlembed> and preferably some experience with
765     embedding perl is highly recommended.
766    
767     C<mkperl> (or the C<--perl> option) basically does this to link the new
768     interpreter (it also adds a main program to F<bundle.>):
769    
770     $Config{cc} $(cat bundle.ccopts) -o perl bundle.c $(cat bundle.ldopts)
771    
772     =over 4
773    
774     =item bundle.h
775    
776     A header file that contains the prototypes of the few symbols "exported"
777     by bundle.c, and also exposes the perl headers to the application.
778    
779     =over 4
780    
781     =item staticperl_init ()
782    
783     Initialises the perl interpreter. You can use the normal perl functions
784     after calling this function, for example, to define extra functions or
785     to load a .pm file that contains some initialisation code, or the main
786     program function:
787    
788     XS (xsfunction)
789     {
790     dXSARGS;
791    
792     // now we have items, ST(i) etc.
793     }
794    
795     static void
796     run_myapp(void)
797     {
798     staticperl_init ();
799     newXSproto ("myapp::xsfunction", xsfunction, __FILE__, "$$;$");
800     eval_pv ("require myapp::main", 1); // executes "myapp/main.pm"
801     }
802    
803     =item staticperl_xs_init (pTHX)
804    
805     Sometimes you need direct control over C<perl_parse> and C<perl_run>, in
806     which case you do not want to use C<staticperl_init> but call them on your
807     own.
808    
809     Then you need this function - either pass it directly as the C<xs_init>
810     function to C<perl_parse>, or call it from your own C<xs_init> function.
811    
812     =item staticperl_cleanup ()
813    
814     In the unlikely case that you want to destroy the perl interpreter, here
815     is the corresponding function.
816    
817     =item PerlInterpreter *staticperl
818    
819     The perl interpreter pointer used by staticperl. Not normally so useful,
820     but there it is.
821    
822     =back
823    
824     =item bundle.ccopts
825    
826     Contains the compiler options required to compile at least F<bundle.c> and
827     any file that includes F<bundle.h> - you should probably use it in your
828     C<CFLAGS>.
829    
830     =item bundle.ldopts
831    
832     The linker options needed to link the final program.
833    
834     =back
835    
836     =head1 RUNTIME FUNCTIONALITY
837    
838     Binaries created with C<mkbundle>/C<mkperl> contain extra functions, which
839     are required to access the bundled perl sources, but might be useful for
840     other purposes.
841    
842     In addition, for the embedded loading of perl files to work, F<staticperl>
843     overrides the C<@INC> array.
844    
845     =over 4
846    
847     =item $file = staticperl::find $path
848    
849     Returns the data associated with the given C<$path>
850     (e.g. C<Digest/MD5.pm>, C<auto/POSIX/autosplit.ix>), which is basically
851     the UNIX path relative to the perl library directory.
852    
853     Returns C<undef> if the file isn't embedded.
854    
855     =item @paths = staticperl::list
856    
857     Returns the list of all paths embedded in this binary.
858    
859     =back
860    
861     =head1 FULLY STATIC BINARIES - BUILDROOT
862    
863 root 1.10 To make truly static (Linux-) libraries, you might want to have a look at
864 root 1.9 buildroot (L<http://buildroot.uclibc.org/>).
865    
866     Buildroot is primarily meant to set up a cross-compile environment (which
867     is not so useful as perl doesn't quite like cross compiles), but it can also compile
868     a chroot environment where you can use F<staticperl>.
869    
870     To do so, download buildroot, and enable "Build options => development
871     files in target filesystem" and optionally "Build options => gcc
872     optimization level (optimize for size)". At the time of writing, I had
873     good experiences with GCC 4.4.x but not GCC 4.5.
874    
875     To minimise code size, I used C<-pipe -ffunction-sections -fdata-sections
876     -finline-limit=8 -fno-builtin-strlen -mtune=i386>. The C<-mtune=i386>
877     doesn't decrease codesize much, but it makes the file much more
878     compressible.
879    
880     If you don't need Coro or threads, you can go with "linuxthreads.old" (or
881     no thread support). For Coro, it is highly recommended to switch to a
882     uClibc newer than 0.9.31 (at the time of this writing, I used the 20101201
883     snapshot) and enable NPTL, otherwise Coro needs to be configured with the
884     ultra-slow pthreads backend to work around linuxthreads bugs (it also uses
885     twice the address space needed for stacks).
886    
887 root 1.10 If you use C<linuxthreads.old>, then you should also be aware that
888     uClibc shares C<errno> between all threads when statically linking. See
889     L<http://lists.uclibc.org/pipermail/uclibc/2010-June/044157.html> for a
890     workaround (And L<https://bugs.uclibc.org/2089> for discussion).
891    
892 root 1.11 C<ccache> support is also recommended, especially if you want
893     to play around with buildroot options. Enabling the C<miniperl>
894     package will probably enable all options required for a successful
895     perl build. F<staticperl> itself additionally needs either C<wget>
896     (recommended, for CPAN) or C<curl>.
897 root 1.9
898     As for shells, busybox should provide all that is needed, but the default
899     busybox configuration doesn't include F<comm> which is needed by perl -
900     either make a custom busybox config, or compile coreutils.
901    
902     For the latter route, you might find that bash has some bugs that keep
903     it from working properly in a chroot - either use dash (and link it to
904     F</bin/sh> inside the chroot) or link busybox to F</bin/sh>, using it's
905     built-in ash shell.
906    
907     Finally, you need F</dev/null> inside the chroot for many scripts to work
908     - F<cp /dev/null output/target/dev> or bind-mounting your F</dev> will
909     both provide this.
910    
911     After you have compiled and set up your buildroot target, you can copy
912     F<staticperl> from the C<App::Staticperl> distribution or from your
913     perl f<bin> directory (if you installed it) into the F<output/target>
914     filesystem, chroot inside and run it.
915    
916 root 1.17 =head1 RECIPES / SPECIFIC MODULES
917    
918     This section contains some common(?) recipes and information about
919     problems with some common modules or perl constructs that require extra
920     files to be included.
921    
922     =head2 MODULES
923    
924     =over 4
925    
926     =item utf8
927    
928     Some functionality in the utf8 module, such as swash handling (used
929     for unicode character ranges in regexes) is implemented in the
930 root 1.18 C<"utf8_heavy.pl"> library:
931    
932     -M'"utf8_heavy.pl"'
933 root 1.17
934     Many Unicode properties in turn are defined in separate modules,
935     such as C<"unicore/Heavy.pl"> and more specific data tables such as
936 root 1.18 C<"unicore/To/Digit.pl"> or C<"unicore/lib/Perl/Word.pl">. These tables
937     are big (7MB uncompressed, although F<staticperl> contains special
938     handling for those files), so including them on demand by your application
939     only might pay off.
940 root 1.17
941 root 1.18 To simply include the whole unicode database, use:
942 root 1.17
943 root 1.18 --incglob '/unicore/*.pl'
944 root 1.17
945     =item AnyEvent
946    
947     AnyEvent needs a backend implementation that it will load in a delayed
948     fashion. The L<AnyEvent::Impl::Perl> backend is the default choice
949     for AnyEvent if it can't find anything else, and is usually a safe
950     fallback. If you plan to use e.g. L<EV> (L<POE>...), then you need to
951     include the L<AnyEvent::Impl::EV> (L<AnyEvent::Impl::POE>...) backend as
952     well.
953    
954     If you want to handle IRIs or IDNs (L<AnyEvent::Util> punycode and idn
955     functions), you also need to include C<"AnyEvent/Util/idna.pl"> and
956     C<"AnyEvent/Util/uts46data.pl">.
957    
958 root 1.18 =item Carp
959    
960     Carp had (in older versions of perl) a dependency on L<Carp::Heavy>. As of
961     perl 5.12.2 (maybe earlier), this dependency no longer exists.
962    
963     =item Config
964    
965     The F<perl -V> switch (as well as many modules) needs L<Config>, which in
966     turn might need L<"Config_heavy.pl">. Including the latter gives you
967     both.
968    
969     =item Term::ReadLine::Perl
970    
971     Also needs L<Term::ReadLine::readline>.
972    
973 root 1.17 =item URI
974    
975     URI implements schemes as separate modules - the generic URL scheme is
976     implemented in L<URI::_generic>, HTTP is implemented in L<URI::http>. If
977     you need to use any of these schemes, you should include these manually.
978    
979     =back
980    
981     =head2 RECIPES
982    
983     =over 4
984    
985 root 1.18 =item Linking everything in
986    
987     To link just about everything installed in the perl library into a new
988     perl, try this:
989    
990     staticperl mkperl --strip ppi --incglob '*'
991    
992 root 1.17 =item Getting rid of netdb function
993    
994     The perl core has lots of netdb functions (C<getnetbyname>, C<getgrent>
995     and so on) that few applications use. You can avoid compiling them in by
996     putting the following fragment into a C<preconfigure> hook:
997    
998     preconfigure() {
999     for sym in \
1000     d_getgrnam_r d_endgrent d_endgrent_r d_endhent \
1001     d_endhostent_r d_endnent d_endnetent_r d_endpent \
1002     d_endprotoent_r d_endpwent d_endpwent_r d_endsent \
1003     d_endservent_r d_getgrent d_getgrent_r d_getgrgid_r \
1004     d_getgrnam_r d_gethbyaddr d_gethent d_getsbyport \
1005     d_gethostbyaddr_r d_gethostbyname_r d_gethostent_r \
1006     d_getlogin_r d_getnbyaddr d_getnbyname d_getnent \
1007     d_getnetbyaddr_r d_getnetbyname_r d_getnetent_r \
1008     d_getpent d_getpbyname d_getpbynumber d_getprotobyname_r \
1009     d_getprotobynumber_r d_getprotoent_r d_getpwent \
1010     d_getpwent_r d_getpwnam_r d_getpwuid_r d_getsent \
1011     d_getservbyname_r d_getservbyport_r d_getservent_r \
1012     d_getspnam_r d_getsbyname
1013     # d_gethbyname
1014     do
1015     PERL_CONFIGURE="$PERL_CONFIGURE -U$sym"
1016     done
1017     }
1018    
1019     This mostly gains space when linking staticaly, as the functions will
1020     liekly not be linked in. The gain for dynamically-linked binaries is
1021     smaller.
1022    
1023     Also, this leaves C<gethostbyname> in - not only is it actually used
1024     often, the L<Socket> module also exposes it, so leaving it out usually
1025     gains little. Why Socket exposes a C function that is in the core already
1026     is anybody's guess.
1027    
1028     =back
1029    
1030 root 1.1 =head1 AUTHOR
1031    
1032     Marc Lehmann <schmorp@schmorp.de>
1033     http://software.schmorp.de/pkg/staticperl.html