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