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.50 by root, Wed Jul 13 17:47:40 2011 UTC vs.
Revision 1.61 by root, Fri Oct 16 02:43:37 2015 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
348 add eg/httpd httpd.pm 348 add eg/httpd httpd.pm
349 349
350All 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
351order given on the command line. 351order given on the command line.
352 352
353=head3 BUNDLE CREATION WORKFLOW / STATICPELR MKBUNDLE OPTIONS 353=head3 BUNDLE CREATION WORKFLOW / STATICPERL MKBUNDLE OPTIONS
354 354
355F<staticperl mkbundle> works by first assembling a list of candidate 355F<staticperl mkbundle> works by first assembling a list of candidate
356files and modules to include, then filtering them by include/exclude 356files and modules to include, then filtering them by include/exclude
357patterns. The remaining modules (together with their direct dependencies, 357patterns. The remaining modules (together with their direct dependencies,
358such as link libraries and L<AutoLoader> files) are then converted into 358such as link libraries and L<AutoLoader> files) are then converted into
543 # then later, in perl, use 543 # then later, in perl, use
544 use myfiles::file1; 544 use myfiles::file1;
545 require myfiles::file2; 545 require myfiles::file2;
546 my $res = do "myfiles/file3.pl"; 546 my $res = do "myfiles/file3.pl";
547 547
548=item C<--binadd> F<file> | C<--add> "F<file> alias" 548=item C<--addbin> F<file> | C<--addbin> "F<file> alias"
549 549
550Just 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
551without any postprocessing (perl files might get stripped to reduce their 551without any postprocessing (perl files might get stripped to reduce their
552size). 552size).
553 553
752standalone applications, and this option removes those known to cause 752standalone applications, and this option removes those known to cause
753trouble. 753trouble.
754 754
755Specifically, these are removed: 755Specifically, these are removed:
756 756
757C<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
758output, C<PERL5OPT>, C<PERL_DESTRUCT_LEVEL>, C<PERL_HASH_SEED> and 758output, C<PERL5OPT>, C<PERL_DESTRUCT_LEVEL>, C<PERL_HASH_SEED> and
759C<PERL_SIGNALS> can alter execution significantly, and C<PERL_UNICODE>, 759C<PERL_SIGNALS> can alter execution significantly, and C<PERL_UNICODE>,
760C<PERLIO_DEBUG> and C<PERLIO> can affect input and output. 760C<PERLIO_DEBUG> and C<PERLIO> can affect input and output.
761 761
762The 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
909downloaded perl sources are being cached, to avoid downloading them 909downloaded perl sources are being cached, to avoid downloading them
910again. The default is empty, which means there is no cache. 910again. The default is empty, which means there is no cache.
911 911
912=item C<PERL_VERSION> 912=item C<PERL_VERSION>
913 913
914The perl version to install - default is currently C<5.12.3>, but C<5.8.9> 914The perl version to install - C<5.12.5> is a good choice for small builds,
915is also a good choice (5.8.9 is much smaller than 5.12.3, while 5.10.1 is 915but C<5.8.9> is also a good choice (5.8.9 is much smaller than 5.12.5), if
916about as big as 5.12.3). 916it builds on your system.
917
918You can also set this variable to the absolute URL of a tarball (F<.tar>,
919F<.tar.gz>, F<.tar.bz2>, F<.tar.lzma> or F<.tar.xz>), or to the absolute
920path of an unpacked perl source tree, which will be copied.
921
922The default is currently
923F<http://stableperl.schmorp.de/dist/latest.tar.gz>, i.e. the latest
924stableperl release.
917 925
918=item C<PERL_MM_USE_DEFAULT>, C<EV_EXTRA_DEFS>, ... 926=item C<PERL_MM_USE_DEFAULT>, C<EV_EXTRA_DEFS>, ...
919 927
920Usually set to C<1> to make modules "less inquisitive" during their 928Usually set to C<1> to make modules "less inquisitive" during their
921installation. You can set (and export!) any environment variable you want 929installation. You can set (and export!) any environment variable you want
922- some modules (such as L<Coro> or L<EV>) use environment variables for 930- some modules (such as L<Coro> or L<EV>) use environment variables for
923further tweaking. 931further tweaking.
924 932
925=item C<PERL_PREFIX> 933=item C<PERL_PREFIX>
926 934
927The prefix where perl gets installed (default: F<$STATICPERL/perl>), 935The directory where perl gets installed (default: F<$STATICPERL/perl>),
928i.e. where the F<bin> and F<lib> subdirectories will end up. 936i.e. where the F<bin> and F<lib> subdirectories will end up. Previous
937contents will be removed on installation.
929 938
930=item C<PERL_CONFIGURE> 939=item C<PERL_CONFIGURE>
931 940
932Additional Configure options - these are simply passed to the perl 941Additional Configure options - these are simply passed to the perl
933Configure script. For example, if you wanted to enable dynamic loading, 942Configure script. For example, if you wanted to enable dynamic loading,
949F<~/.staticperlrc> to override them. 958F<~/.staticperlrc> to override them.
950 959
951Most of the variables override (or modify) the corresponding F<Configure> 960Most of the variables override (or modify) the corresponding F<Configure>
952variable, except C<PERL_CCFLAGS>, which gets appended. 961variable, except C<PERL_CCFLAGS>, which gets appended.
953 962
954You should have a look near the beginning of the F<staticperl> script - 963The default for C<PERL_OPTIMIZE> is C<-Os> (assuming gcc), and for
955staticperl tries to default C<PERL_OPTIMIZE> to some psace-saving options 964C<PERL_LIBS> is C<-lm -lcrypt>, which should be good for most (but not
956suitable for newer gcc versions. For other compilers or older versions you 965all) systems.
966
967For other compilers or more customised optimisation settings, you need to
957need to adjust these, for example, in your F<~/.staticperlrc>. 968adjust these, e.g. in your F<~/.staticperlrc>.
969
970With gcc on x86 and amd64, you can get more space-savings by using:
971
972 -Os -ffunction-sections -fdata-sections -finline-limit=8 -mpush-args
973 -mno-inline-stringops-dynamically -mno-align-stringops
974
975And on x86 and pentium3 and newer (basically everything you might ever
976want to run on), adding these is even better for space-savings (use
977-mtune=core2 or something newer for much faster code, too):
978
979 -fomit-frame-pointer -march=pentium3 -mtune=i386
958 980
959=back 981=back
960 982
961=head4 Variables you probably I<do not want> to override 983=head4 Variables you probably I<do not want> to override
962 984
1215=head2 EXTRA FEATURES 1237=head2 EXTRA FEATURES
1216 1238
1217In addition, for the embedded loading of perl files to work, F<staticperl> 1239In addition, for the embedded loading of perl files to work, F<staticperl>
1218overrides the C<@INC> array. 1240overrides the C<@INC> array.
1219 1241
1220=head1 FULLY STATIC BINARIES - UCLIBC AND BUILDROOT 1242=head1 FULLY STATIC BINARIES - ALPINE LINUX
1221 1243
1222To make truly static (Linux-) libraries, you might want to have a look at 1244This section once contained a way to build fully static (including
1223buildroot (L<http://buildroot.uclibc.org/>). 1245uClibc) binaries with buildroot. Unfortunately, buildroot no longer
1246supports a compiler, so I recommend using alpine linux instead
1247(L<http://alpinelinux.org/>). Get yourself a VM (e.g. with qemu), run an
1248older alpine linux verison in it (e.g. 2.4), copy staticperl inside and
1249use it.
1224 1250
1225Buildroot is primarily meant to set up a cross-compile environment (which 1251The reason you might want an older alpine linux is that uClibc can be
1226is not so useful as perl doesn't quite like cross compiles), but it can also compile 1252quite dependent on kernel versions, so the newest version of alpine linux
1227a chroot environment where you can use F<staticperl>. 1253might need a newer kernel then you might want for, if you plan to run your
1228 1254binaries on on other kernels.
1229To do so, download buildroot, and enable "Build options => development
1230files in target filesystem" and optionally "Build options => gcc
1231optimization level (optimize for size)". At the time of writing, I had
1232good experiences with GCC 4.4.x but not GCC 4.5.
1233
1234To minimise code size, I used C<-pipe -ffunction-sections -fdata-sections
1235-finline-limit=8 -fno-builtin-strlen -mtune=i386>. The C<-mtune=i386>
1236doesn't decrease codesize much, but it makes the file much more
1237compressible (and the execution a lot slower...).
1238
1239If you don't need Coro or threads, you can go with "linuxthreads.old" (or
1240no thread support). For Coro, it is highly recommended to switch to a
1241uClibc newer than 0.9.31 (at the time of this writing, I used the 20101201
1242snapshot) and enable NPTL, otherwise Coro needs to be configured with the
1243ultra-slow pthreads backend to work around linuxthreads bugs (it also uses
1244twice the address space needed for stacks).
1245
1246If you use C<linuxthreads.old>, then you should also be aware that
1247uClibc shares C<errno> between all threads when statically linking. See
1248L<http://lists.uclibc.org/pipermail/uclibc/2010-June/044157.html> for a
1249workaround (and L<https://bugs.uclibc.org/2089> for discussion).
1250
1251C<ccache> support is also recommended, especially if you want
1252to play around with buildroot options. Enabling the C<miniperl>
1253package will probably enable all options required for a successful
1254perl build. F<staticperl> itself additionally needs either C<wget>
1255(recommended, for CPAN) or C<curl>.
1256
1257As for shells, busybox should provide all that is needed, but the default
1258busybox configuration doesn't include F<comm> which is needed by perl -
1259either make a custom busybox config, or compile coreutils.
1260
1261For the latter route, you might find that bash has some bugs that keep
1262it from working properly in a chroot - either use dash (and link it to
1263F</bin/sh> inside the chroot) or link busybox to F</bin/sh>, using it's
1264built-in ash shell.
1265
1266Finally, you need F</dev/null> inside the chroot for many scripts to work
1267- either F<cp /dev/null output/target/dev> or bind-mounting your F</dev>
1268will provide this.
1269
1270After you have compiled and set up your buildroot target, you can copy
1271F<staticperl> from the C<App::Staticperl> distribution or from your
1272perl F<bin> directory (if you installed it) into the F<output/target>
1273filesystem, chroot inside and run it.
1274 1255
1275=head1 RECIPES / SPECIFIC MODULES 1256=head1 RECIPES / SPECIFIC MODULES
1276 1257
1277This section contains some common(?) recipes and information about 1258This section contains some common(?) recipes and information about
1278problems with some common modules or perl constructs that require extra 1259problems with some common modules or perl constructs that require extra
1340C<MAN3PODS> to be empty via the C<PERL_MM_OPT> environment variable. 1321C<MAN3PODS> to be empty via the C<PERL_MM_OPT> environment variable.
1341 1322
1342=item Gtk2 1323=item Gtk2
1343 1324
1344See Pango, same problems, same solution. 1325See Pango, same problems, same solution.
1326
1327=item Net::SSLeay
1328
1329This module hasn't been significantly updated since OpenSSL is called
1330OpenSSL, and fails to properly link against dependent libraries, most
1331commonly, it forgets to specify -ldl when linking.
1332
1333On GNU/Linux systems this usually goes undetected, as perl usually links
1334against -ldl itself and OpenSSL just happens to pick it up that way, by
1335chance.
1336
1337For static builds, you either have to configure -ldl manually, or you
1338cna use the following snippet in your C<postinstall> hook which patches
1339Net::SSLeay after installation, which happens to work most of the time:
1340
1341 postinstall() {
1342 # first install it
1343 instcpan Net::SSLeay
1344 # then add -ldl for future linking
1345 chmod u+w "$PERL_PREFIX"/lib/auto/Net/SSLeay/extralibs.ld
1346 echo " -ldl" >>"$PERL_PREFIX"/lib/auto/Net/SSLeay/extralibs.ld
1347 }
1345 1348
1346=item Pango 1349=item Pango
1347 1350
1348In addition to the C<MAN3PODS> problem in Glib, Pango also routes around 1351In addition to the C<MAN3PODS> problem in Glib, Pango also routes around
1349L<ExtUtils::MakeMaker> by compiling its files on its own. F<staticperl> 1352L<ExtUtils::MakeMaker> by compiling its files on its own. F<staticperl>
1417gains little. Why Socket exposes a C function that is in the core already 1420gains little. Why Socket exposes a C function that is in the core already
1418is anybody's guess. 1421is anybody's guess.
1419 1422
1420=back 1423=back
1421 1424
1425=head1 ADDITIONAL RESOURCES
1426
1427Some guy has made a repository on github
1428(L<https://github.com/gh0stwizard/staticperl-modules>) with some modules
1429patched to build with staticperl.
1430
1422=head1 AUTHOR 1431=head1 AUTHOR
1423 1432
1424 Marc Lehmann <schmorp@schmorp.de> 1433 Marc Lehmann <schmorp@schmorp.de>
1425 http://software.schmorp.de/pkg/staticperl.html 1434 http://software.schmorp.de/pkg/staticperl.html
1435

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines