ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/App-Staticperl/staticperl.pod
(Generate patch)

Comparing App-Staticperl/staticperl.pod (file contents):
Revision 1.39 by root, Sat Apr 2 11:00:34 2011 UTC vs.
Revision 1.58 by root, Sun Jun 16 04:38:38 2013 UTC

1=head1 NAME 1=head1 NAME
2 2
3staticperl - perl, libc, 100 modules, all in one 500kb file 3staticperl - perl, libc, 100 modules, all in one standalone 500kb file
4 4
5=head1 SYNOPSIS 5=head1 SYNOPSIS
6 6
7 staticperl help # print the embedded documentation 7 staticperl help # print the embedded documentation
8 staticperl fetch # fetch and unpack perl sources 8 staticperl fetch # fetch and unpack perl sources
11 staticperl install # build and then install perl 11 staticperl install # build and then install perl
12 staticperl clean # clean most intermediate files (restart at configure) 12 staticperl clean # clean most intermediate files (restart at configure)
13 staticperl distclean # delete everything installed by this script 13 staticperl distclean # delete everything installed by this script
14 staticperl perl ... # invoke the perlinterpreter 14 staticperl perl ... # invoke the perlinterpreter
15 staticperl cpan # invoke CPAN shell 15 staticperl cpan # invoke CPAN shell
16 staticperl instmod path... # install unpacked modules 16 staticperl instsrc path... # install unpacked modules
17 staticperl instcpan modulename... # install modules from CPAN 17 staticperl instcpan modulename... # install modules from CPAN
18 staticperl mkbundle <bundle-args...> # see documentation 18 staticperl mkbundle <bundle-args...> # see documentation
19 staticperl mkperl <bundle-args...> # see documentation 19 staticperl mkperl <bundle-args...> # see documentation
20 staticperl mkapp appname <bundle-args...> # see documentation 20 staticperl mkapp appname <bundle-args...> # see documentation
21 21
39file that contains perl interpreter, libc, all the modules you need, all 39file that contains perl interpreter, libc, all the modules you need, all
40the libraries you need and of course your actual program. 40the libraries you need and of course your actual program.
41 41
42With F<uClibc> and F<upx> on x86, you can create a single 500kb binary 42With F<uClibc> and F<upx> on x86, you can create a single 500kb binary
43that contains perl and 100 modules such as POSIX, AnyEvent, EV, IO::AIO, 43that contains perl and 100 modules such as POSIX, AnyEvent, EV, IO::AIO,
44Coro and so on. Or any other choice of modules. 44Coro and so on. Or any other choice of modules (and some other size :).
45 45
46To see how this turns out, you can try out smallperl and bigperl, two 46To see how this turns out, you can try out smallperl and bigperl, two
47pre-built static and compressed perl binaries with many and even more 47pre-built static and compressed perl binaries with many and even more
48modules: just follow the links at L<http://staticperl.schmorp.de/>. 48modules: just follow the links at L<http://staticperl.schmorp.de/>.
49 49
84With F<staticperl>, the burden is mostly with the developer - only direct 84With F<staticperl>, the burden is mostly with the developer - only direct
85compile-time dependencies and L<AutoLoader> are handled automatically. 85compile-time dependencies and L<AutoLoader> are handled automatically.
86This means the modules to include often need to be tweaked manually. 86This means the modules to include often need to be tweaked manually.
87 87
88All this does not preclude more permissive modes to be implemented in 88All this does not preclude more permissive modes to be implemented in
89the future, but right now, you have to resolve state hidden dependencies 89the future, but right now, you have to resolve hidden dependencies
90manually. 90manually.
91 91
92=item * PAR works out of the box, F<staticperl> does not. 92=item * PAR works out of the box, F<staticperl> does not.
93 93
94Maintaining your own custom perl build can be a pain in the ass, and while 94Maintaining your own custom perl build can be a pain in the ass, and while
202=item F<staticperl cpan> [args...] 202=item F<staticperl cpan> [args...]
203 203
204Starts an interactive CPAN shell that you can use to install further 204Starts an interactive CPAN shell that you can use to install further
205modules. Installs the perl first if necessary, but apart from that, 205modules. Installs the perl first if necessary, but apart from that,
206no magic is involved: you could just as well run it manually via 206no magic is involved: you could just as well run it manually via
207F<~/.staticperl/perl/bin/cpan>. 207F<~/.staticperl/perl/bin/cpan>, except that F<staticperl> additionally
208sets the environment variable C<$PERL> to the path of the perl
209interpreter, which is handy in subshells.
208 210
209Any additional arguments are simply passed to the F<cpan> command. 211Any additional arguments are simply passed to the F<cpan> command.
210 212
211=item F<staticperl instcpan> module... 213=item F<staticperl instcpan> module...
212 214
346 add eg/httpd httpd.pm 348 add eg/httpd httpd.pm
347 349
348All options that specify modules or files to be added are processed in the 350All options that specify modules or files to be added are processed in the
349order given on the command line. 351order given on the command line.
350 352
351=head3 BUNDLE CREATION WORKFLOW / STATICPELR MKBUNDLE OPTIONS 353=head3 BUNDLE CREATION WORKFLOW / STATICPERL MKBUNDLE OPTIONS
352 354
353F<staticperl mkbundle> works by first assembling a list of candidate 355F<staticperl mkbundle> works by first assembling a list of candidate
354files and modules to include, then filtering them by include/exclude 356files and modules to include, then filtering them by include/exclude
355patterns. The remaining modules (together with their direct dependencies, 357patterns. The remaining modules (together with their direct dependencies,
356such as link libraries and L<AutoLoader> files) are then converted into 358such as link libraries and L<AutoLoader> files) are then converted into
541 # then later, in perl, use 543 # then later, in perl, use
542 use myfiles::file1; 544 use myfiles::file1;
543 require myfiles::file2; 545 require myfiles::file2;
544 my $res = do "myfiles/file3.pl"; 546 my $res = do "myfiles/file3.pl";
545 547
546=item C<--binadd> F<file> | C<--add> "F<file> alias" 548=item C<--addbin> F<file> | C<--addbin> "F<file> alias"
547 549
548Just like C<--add>, except that it treats the file as binary and adds it 550Just like C<--add>, except that it treats the file as binary and adds it
549without any postprocessing (perl files might get stripped to reduce their 551without any postprocessing (perl files might get stripped to reduce their
550size). 552size).
551 553
552If you specify an alias you should probably add a C<&> prefix to avoid 554If you specify an alias you should probably add a C</> prefix to avoid
553clashing with embedded perl files (whose paths never start with C<&>), 555clashing with embedded perl files (whose paths never start with C</>),
554and/or use a special directory prefix, such as C<&res/name>. 556and/or use a special directory prefix, such as C</res/name>.
555 557
556You can later get a copy of these files by calling C<staticperl::find 558You can later get a copy of these files by calling C<static::find
557"alias">. 559"alias">.
558 560
559An alternative way to embed binary files is to convert them to perl and 561An alternative way to embed binary files is to convert them to perl and
560use C<do> to get the contents - this method is a bit cumbersome, but works 562use C<do> to get the contents - this method is a bit cumbersome, but works
561both inside and outside of a staticperl bundle: 563both inside and outside of a staticperl bundle, without extra ado:
562 564
563 # a "binary" file, call it "bindata.pl" 565 # a "binary" file, call it "bindata.pl"
564 <<'SOME_MARKER' 566 <<'SOME_MARKER'
565 binary data NOT containing SOME_MARKER 567 binary data NOT containing SOME_MARKER
566 SOME_MARKER 568 SOME_MARKER
567 569
568 # load the binary 570 # load the binary
569 chomp (my $data = do "bindata.pl"); 571 chomp (my $data = do "bindata.pl");
572
573=item C<--allow-dynamic>
574
575By default, when F<mkbundle> hits a dynamic perl extension (e.g. a F<.so>
576or F<.dll> file), it will stop with a fatal error.
577
578When this option is enabled, F<mkbundle> packages the shared
579object into the bundle instead, with a prefix of F<!>
580(e.g. F<!auto/List/Util/Util.so>). What you do with that is currently up
581to you, F<staticperl> has no special support for this at the moment, apart
582from working around the lack of availability of F<PerlIO::scalar> while
583bootstrapping, at a speed cost.
584
585One way to deal with this is to write all files starting with F<!> into
586some directory and then C<unshift> that path onto C<@INC>.
587
588#TODO: example
570 589
571=back 590=back
572 591
573=item Step 2: filter all files using C<--include> and C<--exclude> options. 592=item Step 2: filter all files using C<--include> and C<--exclude> options.
574 593
733standalone applications, and this option removes those known to cause 752standalone applications, and this option removes those known to cause
734trouble. 753trouble.
735 754
736Specifically, these are removed: 755Specifically, these are removed:
737 756
738C<PERL_HASH_SEED_DEBUG> and C<PERL_DEBUG_MSTATS> can cause underaible 757C<PERL_HASH_SEED_DEBUG> and C<PERL_DEBUG_MSTATS> can cause undesirable
739output, C<PERL5OPT>, C<PERL_DESTRUCT_LEVEL>, C<PERL_HASH_SEED> and 758output, C<PERL5OPT>, C<PERL_DESTRUCT_LEVEL>, C<PERL_HASH_SEED> and
740C<PERL_SIGNALS> can alter execution significantly, and C<PERL_UNICODE>, 759C<PERL_SIGNALS> can alter execution significantly, and C<PERL_UNICODE>,
741C<PERLIO_DEBUG> and C<PERLIO> can affect input and output. 760C<PERLIO_DEBUG> and C<PERLIO> can affect input and output.
742 761
743The variables C<PERL_LIB> and C<PERL5_LIB> are always ignored because the 762The variables C<PERL_LIB> and C<PERL5_LIB> are always ignored because the
882=item C<STATICPERL> 901=item C<STATICPERL>
883 902
884The directory where staticperl stores all its files 903The directory where staticperl stores all its files
885(default: F<~/.staticperl>). 904(default: F<~/.staticperl>).
886 905
887=item C<PERL_MM_USE_DEFAULT>, C<EV_EXTRA_DEFS>, ... 906=item C<DLCACHE>
888 907
889Usually set to C<1> to make modules "less inquisitive" during their 908The path to a directory (will be created if it doesn't exist) where
890installation, you can set any environment variable you want - some modules 909downloaded perl sources are being cached, to avoid downloading them
891(such as L<Coro> or L<EV>) use environment variables for further tweaking. 910again. The default is empty, which means there is no cache.
892 911
893=item C<PERL_VERSION> 912=item C<PERL_VERSION>
894 913
895The perl version to install - default is currently C<5.12.3>, but C<5.8.9> 914The perl version to install - default is currently C<5.12.3>, but C<5.8.9>
896is also a good choice (5.8.9 is much smaller than 5.12.3, while 5.10.1 is 915is also a good choice (5.8.9 is much smaller than 5.12.3, while 5.10.1 is
897about as big as 5.12.3). 916about as big as 5.12.3).
898 917
918=item C<PERL_MM_USE_DEFAULT>, C<EV_EXTRA_DEFS>, ...
919
920Usually set to C<1> to make modules "less inquisitive" during their
921installation. You can set (and export!) any environment variable you want
922- some modules (such as L<Coro> or L<EV>) use environment variables for
923further tweaking.
924
899=item C<PERL_PREFIX> 925=item C<PERL_PREFIX>
900 926
901The prefix where perl gets installed (default: F<$STATICPERL/perl>), 927The directory where perl gets installed (default: F<$STATICPERL/perl>),
902i.e. where the F<bin> and F<lib> subdirectories will end up. 928i.e. where the F<bin> and F<lib> subdirectories will end up. Previous
929contents will be removed on installation.
903 930
904=item C<PERL_CONFIGURE> 931=item C<PERL_CONFIGURE>
905 932
906Additional Configure options - these are simply passed to the perl 933Additional Configure options - these are simply passed to the perl
907Configure script. For example, if you wanted to enable dynamic loading, 934Configure script. For example, if you wanted to enable dynamic loading,
922the top of the F<staticperl> script for more info on these, and use a 949the top of the F<staticperl> script for more info on these, and use a
923F<~/.staticperlrc> to override them. 950F<~/.staticperlrc> to override them.
924 951
925Most of the variables override (or modify) the corresponding F<Configure> 952Most of the variables override (or modify) the corresponding F<Configure>
926variable, except C<PERL_CCFLAGS>, which gets appended. 953variable, except C<PERL_CCFLAGS>, which gets appended.
954
955The default for C<PERL_OPTIMIZE> is C<-Os> (assuming gcc), and for
956C<PERL_LIBS> is C<-lm -lcrypt>, which should be good for most (but not
957all) systems.
958
959For other compilers or more customised optimisation settings, you need to
960adjust these, e.g. in your F<~/.staticperlrc>.
961
962With gcc on x86 and amd64, you can get more space-savings by using:
963
964 -Os -ffunction-sections -fdata-sections -finline-limit=8 -mpush-args
965 -mno-inline-stringops-dynamically -mno-align-stringops
966
967And on x86 and pentium3 and newer (basically everything you might ever
968want to run on), adding these is even better for space-savings (use
969-mtune=core2 or something newer for much faster code, too):
970
971 -fomit-frame-pointer -march=pentium3 -mtune=i386
927 972
928=back 973=back
929 974
930=head4 Variables you probably I<do not want> to override 975=head4 Variables you probably I<do not want> to override
931 976
1110 1155
1111=back 1156=back
1112 1157
1113=head1 RUNTIME FUNCTIONALITY 1158=head1 RUNTIME FUNCTIONALITY
1114 1159
1115Binaries created with C<mkbundle>/C<mkperl> contain extra functions, which 1160Binaries created with C<mkbundle>/C<mkperl> contain extra functionality,
1116are required to access the bundled perl sources, but might be useful for 1161mostly related to the extra files bundled in the binary (the virtual
1117other purposes. 1162filesystem). All of this data is statically compiled into the binary, and
1163accessing means copying it from a read-only section of your binary. Data
1164pages in this way is usually freed by the operating system, as it isn't
1165use more the onace.
1166
1167=head2 VIRTUAL FILESYSTEM
1168
1169Every bundle has a virtual filesystem. The only information stored in it
1170is the path and contents of each file that was bundled.
1171
1172=head3 LAYOUT
1173
1174Any path starting with an ampersand (F<&>) or exclamation mark (F<!>) are
1175reserved by F<staticperl>. They must only be used as described in this
1176section.
1177
1178=over 4
1179
1180=item !
1181
1182All files that typically cannot be loaded from memory (such as dynamic
1183objects or shared libraries), but have to reside in the filesystem, are
1184prefixed with F<!>. Typically these files get written out to some
1185(semi-)temporary directory shortly after program startup, or before being
1186used.
1187
1188=item !boot
1189
1190The bootstrap file, if specified during bundling.
1191
1192=item !auto/
1193
1194Shared objects or dlls corresponding to dynamically-linked perl extensions
1195are stored with an F<!auto/> prefix.
1196
1197=item !lib/
1198
1199External shared libraries are stored in this directory.
1200
1201=item any letter
1202
1203Any path starting with a letter is a perl library file. For example,
1204F<Coro/AIO.pm> corresponds to the file loaded by C<use Coro::AIO>, and
1205F<Coro/jit.pl> corresponds to C<require "Coro/jit.pl">.
1206
1207Obviously, module names shouldn't start with any other characters than
1208letters :)
1209
1210=back
1211
1212=head3 FUNCTIONS
1213
1214=over 4
1215
1216=item $file = static::find $path
1217
1218Returns the data associated with the given C<$path>
1219(e.g. C<Digest/MD5.pm>, C<auto/POSIX/autosplit.ix>).
1220
1221Returns C<undef> if the file isn't embedded.
1222
1223=item @paths = static::list
1224
1225Returns the list of all paths embedded in this binary.
1226
1227=back
1228
1229=head2 EXTRA FEATURES
1118 1230
1119In addition, for the embedded loading of perl files to work, F<staticperl> 1231In addition, for the embedded loading of perl files to work, F<staticperl>
1120overrides the C<@INC> array. 1232overrides the C<@INC> array.
1121
1122=over 4
1123
1124=item $file = staticperl::find $path
1125
1126Returns the data associated with the given C<$path>
1127(e.g. C<Digest/MD5.pm>, C<auto/POSIX/autosplit.ix>), which is basically
1128the UNIX path relative to the perl library directory.
1129
1130Returns C<undef> if the file isn't embedded.
1131
1132=item @paths = staticperl::list
1133
1134Returns the list of all paths embedded in this binary.
1135
1136=back
1137 1233
1138=head1 FULLY STATIC BINARIES - UCLIBC AND BUILDROOT 1234=head1 FULLY STATIC BINARIES - UCLIBC AND BUILDROOT
1139 1235
1140To make truly static (Linux-) libraries, you might want to have a look at 1236To make truly static (Linux-) libraries, you might want to have a look at
1141buildroot (L<http://buildroot.uclibc.org/>). 1237buildroot (L<http://buildroot.uclibc.org/>).
1150good experiences with GCC 4.4.x but not GCC 4.5. 1246good experiences with GCC 4.4.x but not GCC 4.5.
1151 1247
1152To minimise code size, I used C<-pipe -ffunction-sections -fdata-sections 1248To minimise code size, I used C<-pipe -ffunction-sections -fdata-sections
1153-finline-limit=8 -fno-builtin-strlen -mtune=i386>. The C<-mtune=i386> 1249-finline-limit=8 -fno-builtin-strlen -mtune=i386>. The C<-mtune=i386>
1154doesn't decrease codesize much, but it makes the file much more 1250doesn't decrease codesize much, but it makes the file much more
1155compressible. 1251compressible (and the execution a lot slower...).
1156 1252
1157If you don't need Coro or threads, you can go with "linuxthreads.old" (or 1253If you don't need Coro or threads, you can go with "linuxthreads.old" (or
1158no thread support). For Coro, it is highly recommended to switch to a 1254no thread support). For Coro, it is highly recommended to switch to a
1159uClibc newer than 0.9.31 (at the time of this writing, I used the 20101201 1255uClibc newer than 0.9.31 (at the time of this writing, I used the 20101201
1160snapshot) and enable NPTL, otherwise Coro needs to be configured with the 1256snapshot) and enable NPTL, otherwise Coro needs to be configured with the
1162twice the address space needed for stacks). 1258twice the address space needed for stacks).
1163 1259
1164If you use C<linuxthreads.old>, then you should also be aware that 1260If you use C<linuxthreads.old>, then you should also be aware that
1165uClibc shares C<errno> between all threads when statically linking. See 1261uClibc shares C<errno> between all threads when statically linking. See
1166L<http://lists.uclibc.org/pipermail/uclibc/2010-June/044157.html> for a 1262L<http://lists.uclibc.org/pipermail/uclibc/2010-June/044157.html> for a
1167workaround (And L<https://bugs.uclibc.org/2089> for discussion). 1263workaround (and L<https://bugs.uclibc.org/2089> for discussion).
1168 1264
1169C<ccache> support is also recommended, especially if you want 1265C<ccache> support is also recommended, especially if you want
1170to play around with buildroot options. Enabling the C<miniperl> 1266to play around with buildroot options. Enabling the C<miniperl>
1171package will probably enable all options required for a successful 1267package will probably enable all options required for a successful
1172perl build. F<staticperl> itself additionally needs either C<wget> 1268perl build. F<staticperl> itself additionally needs either C<wget>
1180it from working properly in a chroot - either use dash (and link it to 1276it from working properly in a chroot - either use dash (and link it to
1181F</bin/sh> inside the chroot) or link busybox to F</bin/sh>, using it's 1277F</bin/sh> inside the chroot) or link busybox to F</bin/sh>, using it's
1182built-in ash shell. 1278built-in ash shell.
1183 1279
1184Finally, you need F</dev/null> inside the chroot for many scripts to work 1280Finally, you need F</dev/null> inside the chroot for many scripts to work
1185- F<cp /dev/null output/target/dev> or bind-mounting your F</dev> will 1281- either F<cp /dev/null output/target/dev> or bind-mounting your F</dev>
1186both provide this. 1282will provide this.
1187 1283
1188After you have compiled and set up your buildroot target, you can copy 1284After you have compiled and set up your buildroot target, you can copy
1189F<staticperl> from the C<App::Staticperl> distribution or from your 1285F<staticperl> from the C<App::Staticperl> distribution or from your
1190perl f<bin> directory (if you installed it) into the F<output/target> 1286perl F<bin> directory (if you installed it) into the F<output/target>
1191filesystem, chroot inside and run it. 1287filesystem, chroot inside and run it.
1192 1288
1193=head1 RECIPES / SPECIFIC MODULES 1289=head1 RECIPES / SPECIFIC MODULES
1194 1290
1195This section contains some common(?) recipes and information about 1291This section contains some common(?) recipes and information about
1258C<MAN3PODS> to be empty via the C<PERL_MM_OPT> environment variable. 1354C<MAN3PODS> to be empty via the C<PERL_MM_OPT> environment variable.
1259 1355
1260=item Gtk2 1356=item Gtk2
1261 1357
1262See Pango, same problems, same solution. 1358See Pango, same problems, same solution.
1359
1360=item Net::SSLeay
1361
1362This module hasn't been significantly updated since OpenSSL is called
1363OpenSSL, and fails to properly link against dependent libraries, most
1364commonly, it forgets to specify -ldl when linking.
1365
1366On GNU/Linux systems this usually goes undetected, as perl usually links
1367against -ldl itself and OpenSSL just happens to pick it up that way, by
1368chance.
1369
1370For static builds, you either have to configure -ldl manually, or you
1371cna use the following snippet in your C<postinstall> hook which patches
1372Net::SSLeay after installation, which happens to work most of the time:
1373
1374 postinstall() {
1375 # first install it
1376 instcpan Net::SSLeay
1377 # then add -ldl for future linking
1378 chmod u+w "$PERL_PREFIX"/lib/auto/Net/SSLeay/extralibs.ld
1379 echo " -ldl" >>"$PERL_PREFIX"/lib/auto/Net/SSLeay/extralibs.ld
1380 }
1263 1381
1264=item Pango 1382=item Pango
1265 1383
1266In addition to the C<MAN3PODS> problem in Glib, Pango also routes around 1384In addition to the C<MAN3PODS> problem in Glib, Pango also routes around
1267L<ExtUtils::MakeMaker> by compiling its files on its own. F<staticperl> 1385L<ExtUtils::MakeMaker> by compiling its files on its own. F<staticperl>

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines