ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/App-Staticperl/staticperl.pod
Revision: 1.16
Committed: Wed Dec 8 23:03:21 2010 UTC (13 years, 5 months ago) by root
Branch: MAIN
Changes since 1.15: +7 -6 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 =head1 NAME
2
3 staticperl - perl, libc, 100 modules, all in one 500kb file
4
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 staticperl mkapp appname <bundle-args...> # see documentation
20
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 staticperl mkapp myapp --boot mainprog mymodules
29 # build a binary "myapp" from mainprog and mymodules
30
31 =head1 DESCRIPTION
32
33 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
41 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
45 The created files do not need write access to the file system (like PAR
46 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 =item * More control over included files.
73
74 PAR tries to be maintenance and hassle-free - it tries to include more
75 files than necessary to make sure everything works out of the box. The
76 extra files (such as the unicode database) can take substantial amounts of
77 memory and file size.
78
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 =item * PAR works out of the box, F<staticperl> does not.
84
85 Maintaining your own custom perl build can be a pain in the ass, and while
86 F<staticperl> tries to make this easy, it still requires a custom perl
87 build and possibly fiddling with some modules. PAR is likely to produce
88 results faster.
89
90 Ok, PAR never has worked for me out of the box, and for some people,
91 F<staticperl> does work out of the box, as they don't count "fiddling with
92 module use lists" against it, but nevertheless, F<staticperl> is certainly
93 a bit more difficult to use.
94
95 =back
96
97 =head1 HOW DOES IT WORK?
98
99 Simple: F<staticperl> downloads, compile and installs a perl version of
100 your choice in F<~/.staticperl>. You can add extra modules either by
101 letting F<staticperl> install them for you automatically, or by using CPAN
102 and doing it interactively. This usually takes 5-10 minutes, depending on
103 the speed of your computer and your internet connection.
104
105 It is possible to do program development at this stage, too.
106
107 Afterwards, you create a list of files and modules you want to include,
108 and then either build a new perl binary (that acts just like a normal perl
109 except everything is compiled in), or you create bundle files (basically C
110 sources you can use to embed all files into your project).
111
112 This step is very fast (a few seconds if PPI is not used for stripping,
113 more seconds otherwise, as PPI is very slow), and can be tweaked and
114 repeated as often as necessary.
115
116 =head1 THE F<STATICPERL> SCRIPT
117
118 This module installs a script called F<staticperl> into your perl
119 binary directory. The script is fully self-contained, and can be used
120 without perl (for example, in an uClibc chroot environment). In fact,
121 it can be extracted from the C<App::Staticperl> distribution tarball as
122 F<bin/staticperl>, without any installation.
123
124 F<staticperl> interprets the first argument as a command to execute,
125 optionally followed by any parameters.
126
127 There are two command categories: the "phase 1" commands which deal with
128 installing perl and perl modules, and the "phase 2" commands, which deal
129 with creating binaries and bundle files.
130
131 =head2 PHASE 1 COMMANDS: INSTALLING PERL
132
133 The most important command is F<install>, which does basically
134 everything. The default is to download and install perl 5.12.2 and a few
135 modules required by F<staticperl> itself, but all this can (and should) be
136 changed - see L<CONFIGURATION>, below.
137
138 The command
139
140 staticperl install
141
142 Is normally all you need: It installs the perl interpreter in
143 F<~/.staticperl/perl>. It downloads, configures, builds and installs the
144 perl interpreter if required.
145
146 Most of the following commands simply run one or more steps of this
147 sequence.
148
149 To force recompilation or reinstallation, you need to run F<staticperl
150 distclean> first.
151
152 =over 4
153
154 =item F<staticperl fetch>
155
156 Runs only the download and unpack phase, unless this has already happened.
157
158 =item F<staticperl configure>
159
160 Configures the unpacked perl sources, potentially after downloading them first.
161
162 =item F<staticperl build>
163
164 Builds the configured perl sources, potentially after automatically
165 configuring them.
166
167 =item F<staticperl install>
168
169 Wipes the perl installation directory (usually F<~/.staticperl/perl>) and
170 installs the perl distribution, potentially after building it first.
171
172 =item F<staticperl cpan> [args...]
173
174 Starts an interactive CPAN shell that you can use to install further
175 modules. Installs the perl first if necessary, but apart from that,
176 no magic is involved: you could just as well run it manually via
177 F<~/.staticperl/perl/bin/cpan>.
178
179 Any additional arguments are simply passed to the F<cpan> command.
180
181 =item F<staticperl instcpan> module...
182
183 Tries to install all the modules given and their dependencies, using CPAN.
184
185 Example:
186
187 staticperl instcpan EV AnyEvent::HTTPD Coro
188
189 =item F<staticperl instsrc> directory...
190
191 In the unlikely case that you have unpacked perl modules around and want
192 to install from these instead of from CPAN, you can do this using this
193 command by specifying all the directories with modules in them that you
194 want to have built.
195
196 =item F<staticperl clean>
197
198 Deletes the perl source directory (and potentially cleans up other
199 intermediate files). This can be used to clean up files only needed for
200 building perl, without removing the installed perl interpreter, or to
201 force a re-build from scratch.
202
203 At the moment, it doesn't delete downloaded tarballs.
204
205 =item F<staticperl distclean>
206
207 This wipes your complete F<~/.staticperl> directory. Be careful with this,
208 it nukes your perl download, perl sources, perl distribution and any
209 installed modules. It is useful if you wish to start over "from scratch"
210 or when you want to uninstall F<staticperl>.
211
212 =back
213
214 =head2 PHASE 2 COMMANDS: BUILDING PERL BUNDLES
215
216 Building (linking) a new F<perl> binary is handled by a separate
217 script. To make it easy to use F<staticperl> from a F<chroot>, the script
218 is embedded into F<staticperl>, which will write it out and call for you
219 with any arguments you pass:
220
221 staticperl mkbundle mkbundle-args...
222
223 In the oh so unlikely case of something not working here, you
224 can run the script manually as well (by default it is written to
225 F<~/.staticperl/mkbundle>).
226
227 F<mkbundle> is a more conventional command and expect the argument
228 syntax commonly used on UNIX clones. For example, this command builds
229 a new F<perl> binary and includes F<Config.pm> (for F<perl -V>),
230 F<AnyEvent::HTTPD>, F<URI> and a custom F<httpd> script (from F<eg/httpd>
231 in this distribution):
232
233 # first make sure we have perl and the required modules
234 staticperl instcpan AnyEvent::HTTPD
235
236 # now build the perl
237 staticperl mkperl -M'"Config_heavy.pl"' -MAnyEvent::Impl::Perl \
238 -MAnyEvent::HTTPD -MURI::http \
239 --add 'eg/httpd httpd.pm'
240
241 # finally, invoke it
242 ./perl -Mhttpd
243
244 As you can see, things are not quite as trivial: the L<Config> module has
245 a hidden dependency which is not even a perl module (F<Config_heavy.pl>),
246 L<AnyEvent> needs at least one event loop backend that we have to
247 specify manually (here L<AnyEvent::Impl::Perl>), and the F<URI> module
248 (required by L<AnyEvent::HTTPD>) implements various URI schemes as extra
249 modules - since L<AnyEvent::HTTPD> only needs C<http> URIs, we only need
250 to include that module. I found out about these dependencies by carefully
251 watching any error messages about missing modules...
252
253 Instead of building a new perl binary, you can also build a standalone
254 application:
255
256 # build the app
257 staticperl mkapp app --boot eg/httpd \
258 -MAnyEvent::Impl::Perl -MAnyEvent::HTTPD -MURI::http
259
260 # run it
261 ./app
262
263 =head3 OPTION PROCESSING
264
265 All options can be given as arguments on the command line (typically
266 using long (e.g. C<--verbose>) or short option (e.g. C<-v>) style). Since
267 specifying a lot of modules can make the command line very cumbersome,
268 you can put all long options into a "bundle specification file" (with or
269 without C<--> prefix) and specify this bundle file instead.
270
271 For example, the command given earlier could also look like this:
272
273 staticperl mkperl httpd.bundle
274
275 And all options could be in F<httpd.bundle>:
276
277 use "Config_heavy.pl"
278 use AnyEvent::Impl::Perl
279 use AnyEvent::HTTPD
280 use URI::http
281 add eg/httpd httpd.pm
282
283 All options that specify modules or files to be added are processed in the
284 order given on the command line (that affects the C<--use> and C<--eval>
285 options at the moment).
286
287 =head3 MKBUNDLE OPTIONS
288
289 =over 4
290
291 =item --verbose | -v
292
293 Increases the verbosity level by one (the default is C<1>).
294
295 =item --quiet | -q
296
297 Decreases the verbosity level by one.
298
299 =item --strip none|pod|ppi
300
301 Specify the stripping method applied to reduce the file of the perl
302 sources included.
303
304 The default is C<pod>, which uses the L<Pod::Strip> module to remove all
305 pod documentation, which is very fast and reduces file size a lot.
306
307 The C<ppi> method uses L<PPI> to parse and condense the perl sources. This
308 saves a lot more than just L<Pod::Strip>, and is generally safer, but
309 is also a lot slower, so is best used for production builds. Note that
310 this method doesn't optimise for raw file size, but for best compression
311 (that means that the uncompressed file size is a bit larger, but the files
312 compress better, e.g. with F<upx>).
313
314 Last not least, if you need accurate line numbers in error messages,
315 or in the unlikely case where C<pod> is too slow, or some module gets
316 mistreated, you can specify C<none> to not mangle included perl sources in
317 any way.
318
319 =item --perl
320
321 After writing out the bundle files, try to link a new perl interpreter. It
322 will be called F<perl> and will be left in the current working
323 directory. The bundle files will be removed.
324
325 This switch is automatically used when F<staticperl> is invoked with the
326 C<mkperl> command (instead of C<mkbundle>):
327
328 # build a new ./perl with only common::sense in it - very small :)
329 staticperl mkperl -Mcommon::sense
330
331 =item --app name
332
333 After writing out the bundle files, try to link a new standalone
334 program. It will be called C<name>, and the bundle files get removed after
335 linking it.
336
337 The difference to the (mutually exclusive) C<--perl> option is that the
338 binary created by this option will not try to act as a perl interpreter -
339 instead it will simply initialise the perl interpreter, clean it up and
340 exit.
341
342 This switch is automatically used when F<staticperl> is invoked with the
343 C<mkapp> command (instead of C<mkbundle>):
344
345 To let it do something useful you I<must> add some boot code, e.g. with
346 the C<--boot> option.
347
348 Example: create a standalone perl binary that will execute F<appfile> when
349 it is started.
350
351 staticperl mkbundle --app myexe --boot appfile
352
353 =item --use module | -Mmodule
354
355 Include the named module and all direct dependencies. This is done by
356 C<require>'ing the module in a subprocess and tracing which other modules
357 and files it actually loads. If the module uses L<AutoLoader>, then all
358 splitfiles will be included as well.
359
360 Example: include AnyEvent and AnyEvent::Impl::Perl.
361
362 staticperl mkbundle --use AnyEvent --use AnyEvent::Impl::Perl
363
364 Sometimes you want to load old-style "perl libraries" (F<.pl> files), or
365 maybe other weirdly named files. To do that, you need to quote the name in
366 single or double quotes. When given on the command line, you probably need
367 to quote once more to avoid your shell interpreting it. Common cases that
368 need this are F<Config_heavy.pl> and F<utf8_heavy.pl>.
369
370 Example: include the required files for F<perl -V> to work in all its
371 glory (F<Config.pm> is included automatically by this).
372
373 # bourne shell
374 staticperl mkbundle --use '"Config_heavy.pl"'
375
376 # bundle specification file
377 use "Config_heavy.pl"
378
379 The C<-Mmodule> syntax is included as an alias that might be easier to
380 remember than C<use>. Or maybe it confuses people. Time will tell. Or
381 maybe not. Argh.
382
383 =item --eval "perl code" | -e "perl code"
384
385 Sometimes it is easier (or necessary) to specify dependencies using perl
386 code, or maybe one of the modules you use need a special use statement. In
387 that case, you can use C<eval> to execute some perl snippet or set some
388 variables or whatever you need. All files C<require>'d or C<use>'d in the
389 script are included in the final bundle.
390
391 Keep in mind that F<mkbundle> will only C<require> the modules named
392 by the C<--use> option, so do not expect the symbols from modules you
393 C<--use>'d earlier on the command line to be available.
394
395 Example: force L<AnyEvent> to detect a backend and therefore include it
396 in the final bundle.
397
398 staticperl mkbundle --eval 'use AnyEvent; AnyEvent::detect'
399
400 # or like this
401 staticperl mkbundle -MAnyEvent --eval 'use AnyEvent; AnyEvent::detect'
402
403 Example: use a separate "bootstrap" script that C<use>'s lots of modules
404 and include this in the final bundle, to be executed automatically.
405
406 staticperl mkbundle --eval 'do "bootstrap"' --boot bootstrap
407
408 =item --boot filename
409
410 Include the given file in the bundle and arrange for it to be executed
411 (using a C<require>) before anything else when the new perl is
412 initialised. This can be used to modify C<@INC> or anything else before
413 the perl interpreter executes scripts given on the command line (or via
414 C<-e>). This works even in an embedded interpreter.
415
416 =item --add "file" | --add "file alias"
417
418 Adds the given (perl) file into the bundle (and optionally call it
419 "alias"). This is useful to include any custom files into the bundle.
420
421 Example: embed the file F<httpd> as F<httpd.pm> when creating the bundle.
422
423 staticperl mkperl --add "httpd httpd.pm"
424
425 It is also a great way to add any custom modules:
426
427 # specification file
428 add file1 myfiles/file1
429 add file2 myfiles/file2
430 add file3 myfiles/file3
431
432 =item --binadd "file" | --add "file alias"
433
434 Just like C<--add>, except that it treats the file as binary and adds it
435 without any processing.
436
437 You should probably add a C</> prefix to avoid clashing with embedded
438 perl files (whose paths do not start with C</>), and/or use a special
439 directory, such as C</res/name>.
440
441 You can later get a copy of these files by calling C<staticperl::find
442 "alias">.
443
444 =item --static
445
446 When C<--perl> is also given, link statically instead of dynamically. The
447 default is to link the new perl interpreter fully dynamic (that means all
448 perl modules are linked statically, but all external libraries are still
449 referenced dynamically).
450
451 Keep in mind that Solaris doesn't support static linking at all, and
452 systems based on GNU libc don't really support it in a usable fashion
453 either. Try uClibc if you want to create fully statically linked
454 executables, or try the C<--staticlibs> option to link only some libraries
455 statically.
456
457 =item any other argument
458
459 Any other argument is interpreted as a bundle specification file, which
460 supports most long options (without extra quoting), one option per line.
461
462 =back
463
464 =head2 F<STATICPERL> CONFIGURATION AND HOOKS
465
466 During (each) startup, F<staticperl> tries to source the following shell
467 files in order:
468
469 /etc/staticperlrc
470 ~/.staticperlrc
471 $STATICPERL/rc
472
473 They can be used to override shell variables, or define functions to be
474 called at specific phases.
475
476 Note that the last file is erased during F<staticperl distclean>, so
477 generally should not be used.
478
479 =head3 CONFIGURATION VARIABLES
480
481 =head4 Variables you I<should> override
482
483 =over 4
484
485 =item C<EMAIL>
486
487 The e-mail address of the person who built this binary. Has no good
488 default, so should be specified by you.
489
490 =item C<CPAN>
491
492 The URL of the CPAN mirror to use (e.g. L<http://mirror.netcologne.de/cpan/>).
493
494 =item C<EXTRA_MODULES>
495
496 Additional modules installed during F<staticperl install>. Here you can
497 set which modules you want have to installed from CPAN.
498
499 Example: I really really need EV, AnyEvent, Coro and AnyEvent::AIO.
500
501 EXTRA_MODULES="EV AnyEvent Coro AnyEvent::AIO"
502
503 Note that you can also use a C<postinstall> hook to achieve this, and
504 more.
505
506 =back
507
508 =head4 Variables you might I<want> to override
509
510 =over 4
511
512 =item C<STATICPERL>
513
514 The directory where staticperl stores all its files
515 (default: F<~/.staticperl>).
516
517 =item C<PERL_MM_USE_DEFAULT>, C<EV_EXTRA_DEFS>, ...
518
519 Usually set to C<1> to make modules "less inquisitive" during their
520 installation, you can set any environment variable you want - some modules
521 (such as L<Coro> or L<EV>) use environment variables for further tweaking.
522
523 =item C<PERL_VERSION>
524
525 The perl version to install - default is currently C<5.12.2>, but C<5.8.9>
526 is also a good choice (5.8.9 is much smaller than 5.12.2, while 5.10.1 is
527 about as big as 5.12.2).
528
529 =item C<PERL_PREFIX>
530
531 The prefix where perl gets installed (default: F<$STATICPERL/perl>),
532 i.e. where the F<bin> and F<lib> subdirectories will end up.
533
534 =item C<PERL_CONFIGURE>
535
536 Additional Configure options - these are simply passed to the perl
537 Configure script. For example, if you wanted to enable dynamic loading,
538 you could pass C<-Dusedl>. To enable ithreads (Why would you want that
539 insanity? Don't! Use L<forks> instead!) you would pass C<-Duseithreads>
540 and so on.
541
542 More commonly, you would either activate 64 bit integer support
543 (C<-Duse64bitint>), or disable large files support (-Uuselargefiles), to
544 reduce filesize further.
545
546 =item C<PERL_CPPFLAGS>, C<PERL_OPTIMIZE>, C<PERL_LDFLAGS>, C<PERL_LIBS>
547
548 These flags are passed to perl's F<Configure> script, and are generally
549 optimised for small size (at the cost of performance). Since they also
550 contain subtle workarounds around various build issues, changing these
551 usually requires understanding their default values - best look at the top
552 of the F<staticperl> script for more info on these.
553
554 =back
555
556 =head4 Variables you probably I<do not want> to override
557
558 =over 4
559
560 =item C<MKBUNDLE>
561
562 Where F<staticperl> writes the C<mkbundle> command to
563 (default: F<$STATICPERL/mkbundle>).
564
565 =item C<STATICPERL_MODULES>
566
567 Additional modules needed by C<mkbundle> - should therefore not be changed
568 unless you know what you are doing.
569
570 =back
571
572 =head3 OVERRIDABLE HOOKS
573
574 In addition to environment variables, it is possible to provide some
575 shell functions that are called at specific times. To provide your own
576 commands, just define the corresponding function.
577
578 Example: install extra modules from CPAN and from some directories
579 at F<staticperl install> time.
580
581 postinstall() {
582 rm -rf lib/threads* # weg mit Schaden
583 instcpan IO::AIO EV
584 instsrc ~/src/AnyEvent
585 instsrc ~/src/XML-Sablotron-1.0100001
586 instcpan Anyevent::AIO AnyEvent::HTTPD
587 }
588
589 =over 4
590
591 =item preconfigure
592
593 Called just before running F<./Configur> in the perl source
594 directory. Current working directory is the perl source directory.
595
596 This can be used to set any C<PERL_xxx> variables, which might be costly
597 to compute.
598
599 =item postconfigure
600
601 Called after configuring, but before building perl. Current working
602 directory is the perl source directory.
603
604 Could be used to tailor/patch config.sh (followed by F<sh Configure -S>)
605 or do any other modifications.
606
607 =item postbuild
608
609 Called after building, but before installing perl. Current working
610 directory is the perl source directory.
611
612 I have no clue what this could be used for - tell me.
613
614 =item postinstall
615
616 Called after perl and any extra modules have been installed in C<$PREFIX>,
617 but before setting the "installation O.K." flag.
618
619 The current working directory is C<$PREFIX>, but maybe you should not rely
620 on that.
621
622 This hook is most useful to customise the installation, by deleting files,
623 or installing extra modules using the C<instcpan> or C<instsrc> functions.
624
625 The script must return with a zero exit status, or the installation will
626 fail.
627
628 =back
629
630 =head1 ANATOMY OF A BUNDLE
631
632 When not building a new perl binary, C<mkbundle> will leave a number of
633 files in the current working directory, which can be used to embed a perl
634 interpreter in your program.
635
636 Intimate knowledge of L<perlembed> and preferably some experience with
637 embedding perl is highly recommended.
638
639 C<mkperl> (or the C<--perl> option) basically does this to link the new
640 interpreter (it also adds a main program to F<bundle.>):
641
642 $Config{cc} $(cat bundle.ccopts) -o perl bundle.c $(cat bundle.ldopts)
643
644 =over 4
645
646 =item bundle.h
647
648 A header file that contains the prototypes of the few symbols "exported"
649 by bundle.c, and also exposes the perl headers to the application.
650
651 =over 4
652
653 =item staticperl_init ()
654
655 Initialises the perl interpreter. You can use the normal perl functions
656 after calling this function, for example, to define extra functions or
657 to load a .pm file that contains some initialisation code, or the main
658 program function:
659
660 XS (xsfunction)
661 {
662 dXSARGS;
663
664 // now we have items, ST(i) etc.
665 }
666
667 static void
668 run_myapp(void)
669 {
670 staticperl_init ();
671 newXSproto ("myapp::xsfunction", xsfunction, __FILE__, "$$;$");
672 eval_pv ("require myapp::main", 1); // executes "myapp/main.pm"
673 }
674
675 =item staticperl_xs_init (pTHX)
676
677 Sometimes you need direct control over C<perl_parse> and C<perl_run>, in
678 which case you do not want to use C<staticperl_init> but call them on your
679 own.
680
681 Then you need this function - either pass it directly as the C<xs_init>
682 function to C<perl_parse>, or call it from your own C<xs_init> function.
683
684 =item staticperl_cleanup ()
685
686 In the unlikely case that you want to destroy the perl interpreter, here
687 is the corresponding function.
688
689 =item PerlInterpreter *staticperl
690
691 The perl interpreter pointer used by staticperl. Not normally so useful,
692 but there it is.
693
694 =back
695
696 =item bundle.ccopts
697
698 Contains the compiler options required to compile at least F<bundle.c> and
699 any file that includes F<bundle.h> - you should probably use it in your
700 C<CFLAGS>.
701
702 =item bundle.ldopts
703
704 The linker options needed to link the final program.
705
706 =back
707
708 =head1 RUNTIME FUNCTIONALITY
709
710 Binaries created with C<mkbundle>/C<mkperl> contain extra functions, which
711 are required to access the bundled perl sources, but might be useful for
712 other purposes.
713
714 In addition, for the embedded loading of perl files to work, F<staticperl>
715 overrides the C<@INC> array.
716
717 =over 4
718
719 =item $file = staticperl::find $path
720
721 Returns the data associated with the given C<$path>
722 (e.g. C<Digest/MD5.pm>, C<auto/POSIX/autosplit.ix>), which is basically
723 the UNIX path relative to the perl library directory.
724
725 Returns C<undef> if the file isn't embedded.
726
727 =item @paths = staticperl::list
728
729 Returns the list of all paths embedded in this binary.
730
731 =back
732
733 =head1 FULLY STATIC BINARIES - BUILDROOT
734
735 To make truly static (Linux-) libraries, you might want to have a look at
736 buildroot (L<http://buildroot.uclibc.org/>).
737
738 Buildroot is primarily meant to set up a cross-compile environment (which
739 is not so useful as perl doesn't quite like cross compiles), but it can also compile
740 a chroot environment where you can use F<staticperl>.
741
742 To do so, download buildroot, and enable "Build options => development
743 files in target filesystem" and optionally "Build options => gcc
744 optimization level (optimize for size)". At the time of writing, I had
745 good experiences with GCC 4.4.x but not GCC 4.5.
746
747 To minimise code size, I used C<-pipe -ffunction-sections -fdata-sections
748 -finline-limit=8 -fno-builtin-strlen -mtune=i386>. The C<-mtune=i386>
749 doesn't decrease codesize much, but it makes the file much more
750 compressible.
751
752 If you don't need Coro or threads, you can go with "linuxthreads.old" (or
753 no thread support). For Coro, it is highly recommended to switch to a
754 uClibc newer than 0.9.31 (at the time of this writing, I used the 20101201
755 snapshot) and enable NPTL, otherwise Coro needs to be configured with the
756 ultra-slow pthreads backend to work around linuxthreads bugs (it also uses
757 twice the address space needed for stacks).
758
759 If you use C<linuxthreads.old>, then you should also be aware that
760 uClibc shares C<errno> between all threads when statically linking. See
761 L<http://lists.uclibc.org/pipermail/uclibc/2010-June/044157.html> for a
762 workaround (And L<https://bugs.uclibc.org/2089> for discussion).
763
764 C<ccache> support is also recommended, especially if you want
765 to play around with buildroot options. Enabling the C<miniperl>
766 package will probably enable all options required for a successful
767 perl build. F<staticperl> itself additionally needs either C<wget>
768 (recommended, for CPAN) or C<curl>.
769
770 As for shells, busybox should provide all that is needed, but the default
771 busybox configuration doesn't include F<comm> which is needed by perl -
772 either make a custom busybox config, or compile coreutils.
773
774 For the latter route, you might find that bash has some bugs that keep
775 it from working properly in a chroot - either use dash (and link it to
776 F</bin/sh> inside the chroot) or link busybox to F</bin/sh>, using it's
777 built-in ash shell.
778
779 Finally, you need F</dev/null> inside the chroot for many scripts to work
780 - F<cp /dev/null output/target/dev> or bind-mounting your F</dev> will
781 both provide this.
782
783 After you have compiled and set up your buildroot target, you can copy
784 F<staticperl> from the C<App::Staticperl> distribution or from your
785 perl f<bin> directory (if you installed it) into the F<output/target>
786 filesystem, chroot inside and run it.
787
788 =head1 AUTHOR
789
790 Marc Lehmann <schmorp@schmorp.de>
791 http://software.schmorp.de/pkg/staticperl.html