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