| 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 |
root |
1.14 |
staticperl mkapp appname <bundle-args...> # see documentation |
| 20 |
root |
1.1 |
|
| 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 |
root |
1.14 |
staticperl mkapp myapp --boot mainprog mymodules |
| 29 |
|
|
# build a binary "myapp" from mainprog and mymodules |
| 30 |
root |
1.1 |
|
| 31 |
|
|
=head1 DESCRIPTION |
| 32 |
|
|
|
| 33 |
root |
1.16 |
This script helps you to create single-file perl interpreters |
| 34 |
|
|
or applications, or embedding a perl interpreter in your |
| 35 |
|
|
applications. Single-file means that it is fully self-contained - no |
| 36 |
|
|
separate shared objects, no autoload fragments, no .pm or .pl files are |
| 37 |
|
|
needed. And when linking statically, you can create (or embed) a single |
| 38 |
|
|
file that contains perl interpreter, libc, all the modules you need, all |
| 39 |
|
|
the libraries you need and of course your actual program. |
| 40 |
root |
1.1 |
|
| 41 |
root |
1.8 |
With F<uClibc> and F<upx> on x86, you can create a single 500kb binary |
| 42 |
|
|
that contains perl and 100 modules such as POSIX, AnyEvent, EV, IO::AIO, |
| 43 |
|
|
Coro and so on. Or any other choice of modules. |
| 44 |
root |
1.1 |
|
| 45 |
root |
1.20 |
To see how this turns out, you can try out smallperl and bigperl, two |
| 46 |
|
|
pre-built static and compressed perl binaries with many and even more |
| 47 |
|
|
modules: just follow the links at L<http://staticperl.schmorp.de/>. |
| 48 |
|
|
|
| 49 |
root |
1.3 |
The created files do not need write access to the file system (like PAR |
| 50 |
root |
1.1 |
does). In fact, since this script is in many ways similar to PAR::Packer, |
| 51 |
|
|
here are the differences: |
| 52 |
|
|
|
| 53 |
|
|
=over 4 |
| 54 |
|
|
|
| 55 |
|
|
=item * The generated executables are much smaller than PAR created ones. |
| 56 |
|
|
|
| 57 |
|
|
Shared objects and the perl binary contain a lot of extra info, while |
| 58 |
|
|
the static nature of F<staticperl> allows the linker to remove all |
| 59 |
|
|
functionality and meta-info not required by the final executable. Even |
| 60 |
|
|
extensions statically compiled into perl at build time will only be |
| 61 |
|
|
present in the final executable when needed. |
| 62 |
|
|
|
| 63 |
|
|
In addition, F<staticperl> can strip perl sources much more effectively |
| 64 |
|
|
than PAR. |
| 65 |
|
|
|
| 66 |
|
|
=item * The generated executables start much faster. |
| 67 |
|
|
|
| 68 |
|
|
There is no need to unpack files, or even to parse Zip archives (which is |
| 69 |
|
|
slow and memory-consuming business). |
| 70 |
|
|
|
| 71 |
|
|
=item * The generated executables don't need a writable filesystem. |
| 72 |
|
|
|
| 73 |
|
|
F<staticperl> loads all required files directly from memory. There is no |
| 74 |
|
|
need to unpack files into a temporary directory. |
| 75 |
|
|
|
| 76 |
root |
1.17 |
=item * More control over included files, more burden. |
| 77 |
root |
1.1 |
|
| 78 |
root |
1.3 |
PAR tries to be maintenance and hassle-free - it tries to include more |
| 79 |
root |
1.17 |
files than necessary to make sure everything works out of the box. It |
| 80 |
|
|
mostly succeeds at this, but he extra files (such as the unicode database) |
| 81 |
|
|
can take substantial amounts of memory and file size. |
| 82 |
root |
1.1 |
|
| 83 |
|
|
With F<staticperl>, the burden is mostly with the developer - only direct |
| 84 |
|
|
compile-time dependencies and L<AutoLoader> are handled automatically. |
| 85 |
|
|
This means the modules to include often need to be tweaked manually. |
| 86 |
|
|
|
| 87 |
root |
1.17 |
All this does not preclude more permissive modes to be implemented in |
| 88 |
|
|
the future, but right now, you have to resolve state hidden dependencies |
| 89 |
|
|
manually. |
| 90 |
|
|
|
| 91 |
root |
1.1 |
=item * PAR works out of the box, F<staticperl> does not. |
| 92 |
|
|
|
| 93 |
|
|
Maintaining your own custom perl build can be a pain in the ass, and while |
| 94 |
|
|
F<staticperl> tries to make this easy, it still requires a custom perl |
| 95 |
|
|
build and possibly fiddling with some modules. PAR is likely to produce |
| 96 |
|
|
results faster. |
| 97 |
|
|
|
| 98 |
root |
1.13 |
Ok, PAR never has worked for me out of the box, and for some people, |
| 99 |
|
|
F<staticperl> does work out of the box, as they don't count "fiddling with |
| 100 |
|
|
module use lists" against it, but nevertheless, F<staticperl> is certainly |
| 101 |
|
|
a bit more difficult to use. |
| 102 |
|
|
|
| 103 |
root |
1.1 |
=back |
| 104 |
|
|
|
| 105 |
|
|
=head1 HOW DOES IT WORK? |
| 106 |
|
|
|
| 107 |
|
|
Simple: F<staticperl> downloads, compile and installs a perl version of |
| 108 |
|
|
your choice in F<~/.staticperl>. You can add extra modules either by |
| 109 |
|
|
letting F<staticperl> install them for you automatically, or by using CPAN |
| 110 |
|
|
and doing it interactively. This usually takes 5-10 minutes, depending on |
| 111 |
root |
1.3 |
the speed of your computer and your internet connection. |
| 112 |
root |
1.1 |
|
| 113 |
|
|
It is possible to do program development at this stage, too. |
| 114 |
|
|
|
| 115 |
|
|
Afterwards, you create a list of files and modules you want to include, |
| 116 |
root |
1.3 |
and then either build a new perl binary (that acts just like a normal perl |
| 117 |
root |
1.1 |
except everything is compiled in), or you create bundle files (basically C |
| 118 |
|
|
sources you can use to embed all files into your project). |
| 119 |
|
|
|
| 120 |
root |
1.18 |
This step is very fast (a few seconds if PPI is not used for stripping, or |
| 121 |
|
|
the stripped files are in the cache), and can be tweaked and repeated as |
| 122 |
|
|
often as necessary. |
| 123 |
root |
1.1 |
|
| 124 |
|
|
=head1 THE F<STATICPERL> SCRIPT |
| 125 |
|
|
|
| 126 |
|
|
This module installs a script called F<staticperl> into your perl |
| 127 |
root |
1.21 |
binary directory. The script is fully self-contained, and can be |
| 128 |
|
|
used without perl (for example, in an uClibc chroot environment). In |
| 129 |
|
|
fact, it can be extracted from the C<App::Staticperl> distribution |
| 130 |
|
|
tarball as F<bin/staticperl>, without any installation. The |
| 131 |
|
|
newest (possibly alpha) version can also be downloaded from |
| 132 |
|
|
L<http://staticperl.schmorp.de/staticperl>. |
| 133 |
root |
1.1 |
|
| 134 |
|
|
F<staticperl> interprets the first argument as a command to execute, |
| 135 |
|
|
optionally followed by any parameters. |
| 136 |
|
|
|
| 137 |
|
|
There are two command categories: the "phase 1" commands which deal with |
| 138 |
|
|
installing perl and perl modules, and the "phase 2" commands, which deal |
| 139 |
|
|
with creating binaries and bundle files. |
| 140 |
|
|
|
| 141 |
|
|
=head2 PHASE 1 COMMANDS: INSTALLING PERL |
| 142 |
|
|
|
| 143 |
|
|
The most important command is F<install>, which does basically |
| 144 |
|
|
everything. The default is to download and install perl 5.12.2 and a few |
| 145 |
|
|
modules required by F<staticperl> itself, but all this can (and should) be |
| 146 |
|
|
changed - see L<CONFIGURATION>, below. |
| 147 |
|
|
|
| 148 |
|
|
The command |
| 149 |
|
|
|
| 150 |
|
|
staticperl install |
| 151 |
|
|
|
| 152 |
root |
1.24 |
is normally all you need: It installs the perl interpreter in |
| 153 |
root |
1.1 |
F<~/.staticperl/perl>. It downloads, configures, builds and installs the |
| 154 |
|
|
perl interpreter if required. |
| 155 |
|
|
|
| 156 |
root |
1.24 |
Most of the following F<staticperl> subcommands simply run one or more |
| 157 |
|
|
steps of this sequence. |
| 158 |
|
|
|
| 159 |
|
|
If it fails, then most commonly because the compiler options I selected |
| 160 |
|
|
are not supported by your compiler - either edit the F<staticperl> script |
| 161 |
|
|
yourself or create F<~/.staticperl> shell script where your set working |
| 162 |
|
|
C<PERL_CCFLAGS> etc. variables. |
| 163 |
root |
1.1 |
|
| 164 |
root |
1.3 |
To force recompilation or reinstallation, you need to run F<staticperl |
| 165 |
root |
1.1 |
distclean> first. |
| 166 |
|
|
|
| 167 |
|
|
=over 4 |
| 168 |
|
|
|
| 169 |
root |
1.20 |
=item F<staticperl version> |
| 170 |
|
|
|
| 171 |
|
|
Prints some info about the version of the F<staticperl> script you are using. |
| 172 |
|
|
|
| 173 |
root |
1.1 |
=item F<staticperl fetch> |
| 174 |
|
|
|
| 175 |
|
|
Runs only the download and unpack phase, unless this has already happened. |
| 176 |
|
|
|
| 177 |
|
|
=item F<staticperl configure> |
| 178 |
|
|
|
| 179 |
|
|
Configures the unpacked perl sources, potentially after downloading them first. |
| 180 |
|
|
|
| 181 |
|
|
=item F<staticperl build> |
| 182 |
|
|
|
| 183 |
|
|
Builds the configured perl sources, potentially after automatically |
| 184 |
|
|
configuring them. |
| 185 |
|
|
|
| 186 |
|
|
=item F<staticperl install> |
| 187 |
|
|
|
| 188 |
root |
1.3 |
Wipes the perl installation directory (usually F<~/.staticperl/perl>) and |
| 189 |
|
|
installs the perl distribution, potentially after building it first. |
| 190 |
root |
1.1 |
|
| 191 |
|
|
=item F<staticperl cpan> [args...] |
| 192 |
|
|
|
| 193 |
root |
1.3 |
Starts an interactive CPAN shell that you can use to install further |
| 194 |
|
|
modules. Installs the perl first if necessary, but apart from that, |
| 195 |
root |
1.1 |
no magic is involved: you could just as well run it manually via |
| 196 |
|
|
F<~/.staticperl/perl/bin/cpan>. |
| 197 |
|
|
|
| 198 |
|
|
Any additional arguments are simply passed to the F<cpan> command. |
| 199 |
|
|
|
| 200 |
|
|
=item F<staticperl instcpan> module... |
| 201 |
|
|
|
| 202 |
|
|
Tries to install all the modules given and their dependencies, using CPAN. |
| 203 |
|
|
|
| 204 |
|
|
Example: |
| 205 |
|
|
|
| 206 |
|
|
staticperl instcpan EV AnyEvent::HTTPD Coro |
| 207 |
|
|
|
| 208 |
|
|
=item F<staticperl instsrc> directory... |
| 209 |
|
|
|
| 210 |
|
|
In the unlikely case that you have unpacked perl modules around and want |
| 211 |
root |
1.3 |
to install from these instead of from CPAN, you can do this using this |
| 212 |
root |
1.1 |
command by specifying all the directories with modules in them that you |
| 213 |
|
|
want to have built. |
| 214 |
|
|
|
| 215 |
|
|
=item F<staticperl clean> |
| 216 |
|
|
|
| 217 |
root |
1.12 |
Deletes the perl source directory (and potentially cleans up other |
| 218 |
|
|
intermediate files). This can be used to clean up files only needed for |
| 219 |
root |
1.24 |
building perl, without removing the installed perl interpreter. |
| 220 |
root |
1.12 |
|
| 221 |
|
|
At the moment, it doesn't delete downloaded tarballs. |
| 222 |
root |
1.1 |
|
| 223 |
root |
1.24 |
The exact semantics of this command will probably change. |
| 224 |
|
|
|
| 225 |
root |
1.1 |
=item F<staticperl distclean> |
| 226 |
|
|
|
| 227 |
|
|
This wipes your complete F<~/.staticperl> directory. Be careful with this, |
| 228 |
|
|
it nukes your perl download, perl sources, perl distribution and any |
| 229 |
|
|
installed modules. It is useful if you wish to start over "from scratch" |
| 230 |
|
|
or when you want to uninstall F<staticperl>. |
| 231 |
|
|
|
| 232 |
|
|
=back |
| 233 |
|
|
|
| 234 |
|
|
=head2 PHASE 2 COMMANDS: BUILDING PERL BUNDLES |
| 235 |
|
|
|
| 236 |
|
|
Building (linking) a new F<perl> binary is handled by a separate |
| 237 |
|
|
script. To make it easy to use F<staticperl> from a F<chroot>, the script |
| 238 |
|
|
is embedded into F<staticperl>, which will write it out and call for you |
| 239 |
|
|
with any arguments you pass: |
| 240 |
|
|
|
| 241 |
|
|
staticperl mkbundle mkbundle-args... |
| 242 |
|
|
|
| 243 |
|
|
In the oh so unlikely case of something not working here, you |
| 244 |
root |
1.2 |
can run the script manually as well (by default it is written to |
| 245 |
root |
1.1 |
F<~/.staticperl/mkbundle>). |
| 246 |
|
|
|
| 247 |
|
|
F<mkbundle> is a more conventional command and expect the argument |
| 248 |
root |
1.3 |
syntax commonly used on UNIX clones. For example, this command builds |
| 249 |
root |
1.1 |
a new F<perl> binary and includes F<Config.pm> (for F<perl -V>), |
| 250 |
|
|
F<AnyEvent::HTTPD>, F<URI> and a custom F<httpd> script (from F<eg/httpd> |
| 251 |
|
|
in this distribution): |
| 252 |
|
|
|
| 253 |
|
|
# first make sure we have perl and the required modules |
| 254 |
|
|
staticperl instcpan AnyEvent::HTTPD |
| 255 |
|
|
|
| 256 |
|
|
# now build the perl |
| 257 |
|
|
staticperl mkperl -M'"Config_heavy.pl"' -MAnyEvent::Impl::Perl \ |
| 258 |
|
|
-MAnyEvent::HTTPD -MURI::http \ |
| 259 |
|
|
--add 'eg/httpd httpd.pm' |
| 260 |
|
|
|
| 261 |
|
|
# finally, invoke it |
| 262 |
|
|
./perl -Mhttpd |
| 263 |
|
|
|
| 264 |
|
|
As you can see, things are not quite as trivial: the L<Config> module has |
| 265 |
|
|
a hidden dependency which is not even a perl module (F<Config_heavy.pl>), |
| 266 |
|
|
L<AnyEvent> needs at least one event loop backend that we have to |
| 267 |
root |
1.3 |
specify manually (here L<AnyEvent::Impl::Perl>), and the F<URI> module |
| 268 |
root |
1.1 |
(required by L<AnyEvent::HTTPD>) implements various URI schemes as extra |
| 269 |
|
|
modules - since L<AnyEvent::HTTPD> only needs C<http> URIs, we only need |
| 270 |
root |
1.3 |
to include that module. I found out about these dependencies by carefully |
| 271 |
|
|
watching any error messages about missing modules... |
| 272 |
root |
1.1 |
|
| 273 |
root |
1.14 |
Instead of building a new perl binary, you can also build a standalone |
| 274 |
|
|
application: |
| 275 |
|
|
|
| 276 |
|
|
# build the app |
| 277 |
|
|
staticperl mkapp app --boot eg/httpd \ |
| 278 |
|
|
-MAnyEvent::Impl::Perl -MAnyEvent::HTTPD -MURI::http |
| 279 |
|
|
|
| 280 |
|
|
# run it |
| 281 |
|
|
./app |
| 282 |
|
|
|
| 283 |
root |
1.25 |
Here are the three phase 2 commands: |
| 284 |
|
|
|
| 285 |
|
|
=over 4 |
| 286 |
|
|
|
| 287 |
|
|
=item F<staticperl mkbundle> args... |
| 288 |
|
|
|
| 289 |
|
|
The "default" bundle command - it interprets the given bundle options and |
| 290 |
|
|
writes out F<bundle.h>, F<bundle.c>, F<bundle.ccopts> and F<bundle.ldopts> |
| 291 |
|
|
files, useful for embedding. |
| 292 |
|
|
|
| 293 |
|
|
=item F<staticperl mkperl> args... |
| 294 |
|
|
|
| 295 |
|
|
Creates a bundle just like F<staticperl mkbundle> (in fact, it's the same |
| 296 |
|
|
as invoking F<staticperl mkbundle --perl> args...), but then compiles and |
| 297 |
|
|
links a new perl interpreter that embeds the created bundle, then deletes |
| 298 |
|
|
all intermediate files. |
| 299 |
|
|
|
| 300 |
|
|
=item F<staticperl mkapp> filename args... |
| 301 |
|
|
|
| 302 |
|
|
Does the same as F<staticperl mkbundle> (in fact, it's the same as |
| 303 |
|
|
invoking F<staticperl mkbundle --app> filename args...), but then compiles |
| 304 |
|
|
and links a new standalone application that simply initialises the perl |
| 305 |
|
|
interpreter. |
| 306 |
|
|
|
| 307 |
|
|
The difference to F<staticperl mkperl> is that the standalone application |
| 308 |
|
|
does not act like a perl interpreter would - in fact, by default it would |
| 309 |
|
|
just do nothing and exit immediately, so you should specify some code to |
| 310 |
|
|
be executed via the F<--boot> option. |
| 311 |
|
|
|
| 312 |
|
|
=back |
| 313 |
|
|
|
| 314 |
root |
1.1 |
=head3 OPTION PROCESSING |
| 315 |
|
|
|
| 316 |
root |
1.3 |
All options can be given as arguments on the command line (typically |
| 317 |
|
|
using long (e.g. C<--verbose>) or short option (e.g. C<-v>) style). Since |
| 318 |
root |
1.27 |
specifying a lot of options can make the command line very long and |
| 319 |
|
|
unwieldy, you can put all long options into a "bundle specification file" |
| 320 |
|
|
(one option per line, with or without C<--> prefix) and specify this |
| 321 |
|
|
bundle file instead. |
| 322 |
root |
1.1 |
|
| 323 |
root |
1.27 |
For example, the command given earlier to link a new F<perl> could also |
| 324 |
|
|
look like this: |
| 325 |
root |
1.1 |
|
| 326 |
|
|
staticperl mkperl httpd.bundle |
| 327 |
|
|
|
| 328 |
root |
1.27 |
With all options stored in the F<httpd.bundle> file (one option per line, |
| 329 |
|
|
everything after the option is an argument): |
| 330 |
|
|
|
| 331 |
root |
1.1 |
use "Config_heavy.pl" |
| 332 |
|
|
use AnyEvent::Impl::Perl |
| 333 |
|
|
use AnyEvent::HTTPD |
| 334 |
|
|
use URI::http |
| 335 |
|
|
add eg/httpd httpd.pm |
| 336 |
|
|
|
| 337 |
root |
1.2 |
All options that specify modules or files to be added are processed in the |
| 338 |
root |
1.25 |
order given on the command line. |
| 339 |
root |
1.2 |
|
| 340 |
root |
1.27 |
=head3 BUNDLE CREATION WORKFLOW / STATICPELR MKBUNDLE OPTIONS |
| 341 |
root |
1.19 |
|
| 342 |
root |
1.26 |
F<staticperl mkbundle> works by first assembling a list of candidate |
| 343 |
|
|
files and modules to include, then filtering them by include/exclude |
| 344 |
root |
1.27 |
patterns. The remaining modules (together with their direct dependencies, |
| 345 |
|
|
such as link libraries and L<AutoLoader> files) are then converted into |
| 346 |
|
|
bundle files suitable for embedding. F<staticperl mkbundle> can then |
| 347 |
|
|
optionally build a new perl interpreter or a standalone application. |
| 348 |
root |
1.19 |
|
| 349 |
|
|
=over 4 |
| 350 |
|
|
|
| 351 |
root |
1.26 |
=item Step 0: Generic argument processing. |
| 352 |
root |
1.19 |
|
| 353 |
root |
1.26 |
The following options influence F<staticperl mkbundle> itself. |
| 354 |
root |
1.1 |
|
| 355 |
|
|
=over 4 |
| 356 |
|
|
|
| 357 |
root |
1.27 |
=item C<--verbose> | C<-v> |
| 358 |
root |
1.2 |
|
| 359 |
|
|
Increases the verbosity level by one (the default is C<1>). |
| 360 |
|
|
|
| 361 |
root |
1.27 |
=item C<--quiet> | C<-q> |
| 362 |
root |
1.2 |
|
| 363 |
|
|
Decreases the verbosity level by one. |
| 364 |
|
|
|
| 365 |
root |
1.26 |
=item any other argument |
| 366 |
root |
1.2 |
|
| 367 |
root |
1.26 |
Any other argument is interpreted as a bundle specification file, which |
| 368 |
root |
1.27 |
supports all options (without extra quoting), one option per line, in the |
| 369 |
|
|
format C<option> or C<option argument>. They will effectively be expanded |
| 370 |
|
|
and processed as if they were directly written on the command line, in |
| 371 |
|
|
place of the file name. |
| 372 |
root |
1.2 |
|
| 373 |
root |
1.26 |
=back |
| 374 |
root |
1.2 |
|
| 375 |
root |
1.26 |
=item Step 1: gather candidate files and modules |
| 376 |
root |
1.2 |
|
| 377 |
root |
1.26 |
In this step, modules, perl libraries (F<.pl> files) and other files are |
| 378 |
|
|
selected for inclusion in the bundle. The relevant options are executed |
| 379 |
|
|
in order (this makes a difference mostly for C<--eval>, which can rely on |
| 380 |
|
|
earlier C<--use> options to have been executed). |
| 381 |
root |
1.2 |
|
| 382 |
root |
1.26 |
=over 4 |
| 383 |
root |
1.2 |
|
| 384 |
root |
1.26 |
=item C<--use> F<module> | C<-M>F<module> |
| 385 |
root |
1.14 |
|
| 386 |
root |
1.26 |
Include the named module and trace direct dependencies. This is done by |
| 387 |
root |
1.2 |
C<require>'ing the module in a subprocess and tracing which other modules |
| 388 |
root |
1.26 |
and files it actually loads. |
| 389 |
root |
1.2 |
|
| 390 |
|
|
Example: include AnyEvent and AnyEvent::Impl::Perl. |
| 391 |
|
|
|
| 392 |
|
|
staticperl mkbundle --use AnyEvent --use AnyEvent::Impl::Perl |
| 393 |
|
|
|
| 394 |
root |
1.28 |
Sometimes you want to load old-style "perl libraries" (F<.pl> files), |
| 395 |
|
|
or maybe other weirdly named files. To do that, you need to quote |
| 396 |
|
|
the name in single or double quotes (this is because F<staticperl> |
| 397 |
|
|
I<literally> just adds the string after the C<require> - which acts |
| 398 |
|
|
different when confronted with quoted vs. unquoted strings). When given on |
| 399 |
|
|
the command line, you probably need to quote once more to avoid your shell |
| 400 |
|
|
interpreting it. Common cases that need this are F<Config_heavy.pl> and |
| 401 |
|
|
F<utf8_heavy.pl>. |
| 402 |
root |
1.2 |
|
| 403 |
|
|
Example: include the required files for F<perl -V> to work in all its |
| 404 |
|
|
glory (F<Config.pm> is included automatically by this). |
| 405 |
|
|
|
| 406 |
|
|
# bourne shell |
| 407 |
|
|
staticperl mkbundle --use '"Config_heavy.pl"' |
| 408 |
|
|
|
| 409 |
|
|
# bundle specification file |
| 410 |
|
|
use "Config_heavy.pl" |
| 411 |
|
|
|
| 412 |
root |
1.28 |
The C<-M>module syntax is included as a convenience that might be easier |
| 413 |
|
|
to remember than C<--use> - it's the same switch as perl itself uses |
| 414 |
|
|
to load modules. Or maybe it confuses people. Time will tell. Or maybe |
| 415 |
|
|
not. Sigh. |
| 416 |
root |
1.2 |
|
| 417 |
root |
1.26 |
=item C<--eval> "perl code" | C<-e> "perl code" |
| 418 |
root |
1.2 |
|
| 419 |
|
|
Sometimes it is easier (or necessary) to specify dependencies using perl |
| 420 |
|
|
code, or maybe one of the modules you use need a special use statement. In |
| 421 |
root |
1.26 |
that case, you can use C<--eval> to execute some perl snippet or set some |
| 422 |
|
|
variables or whatever you need. All files C<require>'d or C<use>'d while |
| 423 |
|
|
executing the snippet are included in the final bundle. |
| 424 |
root |
1.2 |
|
| 425 |
|
|
Keep in mind that F<mkbundle> will only C<require> the modules named |
| 426 |
|
|
by the C<--use> option, so do not expect the symbols from modules you |
| 427 |
root |
1.3 |
C<--use>'d earlier on the command line to be available. |
| 428 |
root |
1.2 |
|
| 429 |
|
|
Example: force L<AnyEvent> to detect a backend and therefore include it |
| 430 |
|
|
in the final bundle. |
| 431 |
|
|
|
| 432 |
|
|
staticperl mkbundle --eval 'use AnyEvent; AnyEvent::detect' |
| 433 |
|
|
|
| 434 |
|
|
# or like this |
| 435 |
root |
1.26 |
staticperl mkbundle -MAnyEvent --eval 'AnyEvent::detect' |
| 436 |
root |
1.2 |
|
| 437 |
|
|
Example: use a separate "bootstrap" script that C<use>'s lots of modules |
| 438 |
root |
1.26 |
and also include this in the final bundle, to be executed automatically |
| 439 |
|
|
when the interpreter is initialised. |
| 440 |
root |
1.2 |
|
| 441 |
|
|
staticperl mkbundle --eval 'do "bootstrap"' --boot bootstrap |
| 442 |
|
|
|
| 443 |
root |
1.26 |
=item C<--boot> F<filename> |
| 444 |
|
|
|
| 445 |
|
|
Include the given file in the bundle and arrange for it to be |
| 446 |
|
|
executed (using C<require>) before the main program when the new perl |
| 447 |
|
|
is initialised. This can be used to modify C<@INC> or do similar |
| 448 |
|
|
modifications before the perl interpreter executes scripts given on the |
| 449 |
|
|
command line (or via C<-e>). This works even in an embedded interpreter - |
| 450 |
|
|
the file will be executed during interpreter initialisation in that case. |
| 451 |
|
|
|
| 452 |
|
|
=item C<--incglob> pattern |
| 453 |
|
|
|
| 454 |
|
|
This goes through all standard library directories and tries to match any |
| 455 |
|
|
F<.pm> and F<.pl> files against the extended glob pattern (see below). If |
| 456 |
|
|
a file matches, it is added. The pattern is matched against the full path |
| 457 |
|
|
of the file (sans the library directory prefix), e.g. F<Sys/Syslog.pm>. |
| 458 |
|
|
|
| 459 |
|
|
This is very useful to include "everything": |
| 460 |
|
|
|
| 461 |
|
|
--incglob '*' |
| 462 |
|
|
|
| 463 |
|
|
It is also useful for including perl libraries, or trees of those, such as |
| 464 |
root |
1.28 |
the unicode database files needed by some perl built-ins, the regex engine |
| 465 |
root |
1.26 |
and other modules. |
| 466 |
|
|
|
| 467 |
|
|
--incglob '/unicore/**.pl' |
| 468 |
|
|
|
| 469 |
|
|
=item C<--add> F<file> | C<--add> "F<file> alias" |
| 470 |
|
|
|
| 471 |
|
|
Adds the given (perl) file into the bundle (and optionally call it |
| 472 |
|
|
"alias"). The F<file> is either an absolute path or a path relative to |
| 473 |
|
|
the current directory. If an alias is specified, then this is the name it |
| 474 |
root |
1.28 |
will use for C<@INC> searches, otherwise the F<file> will be used as the |
| 475 |
root |
1.26 |
internal name. |
| 476 |
|
|
|
| 477 |
|
|
This switch is used to include extra files into the bundle. |
| 478 |
|
|
|
| 479 |
|
|
Example: embed the file F<httpd> in the current directory as F<httpd.pm> |
| 480 |
|
|
when creating the bundle. |
| 481 |
|
|
|
| 482 |
|
|
staticperl mkperl --add "httpd httpd.pm" |
| 483 |
|
|
|
| 484 |
|
|
Example: add local files as extra modules in the bundle. |
| 485 |
|
|
|
| 486 |
|
|
# specification file |
| 487 |
|
|
add file1 myfiles/file1.pm |
| 488 |
|
|
add file2 myfiles/file2.pm |
| 489 |
|
|
add file3 myfiles/file3.pl |
| 490 |
|
|
|
| 491 |
|
|
# then later, in perl, use |
| 492 |
|
|
use myfiles::file1; |
| 493 |
|
|
require myfiles::file2; |
| 494 |
|
|
my $res = do "myfiles/file3.pl"; |
| 495 |
|
|
|
| 496 |
|
|
=item C<--binadd> F<file> | C<--add> "F<file> alias" |
| 497 |
|
|
|
| 498 |
|
|
Just like C<--add>, except that it treats the file as binary and adds it |
| 499 |
|
|
without any postprocessing (perl files might get stripped to reduce their |
| 500 |
|
|
size). |
| 501 |
|
|
|
| 502 |
|
|
You should probably add a C</> prefix to avoid clashing with embedded perl |
| 503 |
|
|
files (whose paths do not start with C</>), and/or use a special directory |
| 504 |
|
|
prefix, such as C</res/name>. |
| 505 |
|
|
|
| 506 |
|
|
You can later get a copy of these files by calling C<staticperl::find |
| 507 |
|
|
"alias">. |
| 508 |
|
|
|
| 509 |
|
|
An alternative way to embed binary files is to convert them to perl and |
| 510 |
|
|
use C<do> to get the contents - this method is a bit cumbersome, but works |
| 511 |
|
|
both inside and outside of a staticperl bundle: |
| 512 |
root |
1.2 |
|
| 513 |
root |
1.26 |
# a "binary" file, call it "bindata.pl" |
| 514 |
|
|
<<'SOME_MARKER' |
| 515 |
|
|
binary data NOT containing SOME_MARKER |
| 516 |
|
|
SOME_MARKER |
| 517 |
root |
1.2 |
|
| 518 |
root |
1.26 |
# load the binary |
| 519 |
|
|
chomp (my $data = do "bindata.pl"); |
| 520 |
|
|
|
| 521 |
|
|
=back |
| 522 |
|
|
|
| 523 |
|
|
=item Step 2: filter all files using C<--include> and C<--exclude> options. |
| 524 |
|
|
|
| 525 |
|
|
After all candidate files and modules are added, they are I<filtered> |
| 526 |
|
|
by a combination of C<--include> and C<--exclude> patterns (there is an |
| 527 |
root |
1.28 |
implicit C<--include *> at the end, so if no filters are specified, all |
| 528 |
root |
1.26 |
files are included). |
| 529 |
|
|
|
| 530 |
|
|
All that this step does is potentially reduce the number of files that are |
| 531 |
|
|
to be included - no new files are added during this step. |
| 532 |
|
|
|
| 533 |
|
|
=over 4 |
| 534 |
|
|
|
| 535 |
|
|
=item C<--include> pattern | C<-i> pattern | C<--exclude> pattern | C<-x> pattern |
| 536 |
|
|
|
| 537 |
|
|
These specify an include or exclude pattern to be applied to the candidate |
| 538 |
|
|
file list. An include makes sure that the given files will be part of the |
| 539 |
|
|
resulting file set, an exclude will exclude remaining files. The patterns |
| 540 |
|
|
are "extended glob patterns" (see below). |
| 541 |
|
|
|
| 542 |
|
|
The patterns are applied "in order" - files included via earlier |
| 543 |
|
|
C<--include> specifications cannot be removed by any following |
| 544 |
|
|
C<--exclude>, and likewise, and file excluded by an earlier C<--exclude> |
| 545 |
|
|
cannot be added by any following C<--include>. |
| 546 |
|
|
|
| 547 |
|
|
For example, to include everything except C<Devel> modules, but still |
| 548 |
|
|
include F<Devel::PPPort>, you could use this: |
| 549 |
|
|
|
| 550 |
|
|
--incglob '*' -i '/Devel/PPPort.pm' -x '/Devel/**' |
| 551 |
|
|
|
| 552 |
|
|
=back |
| 553 |
|
|
|
| 554 |
|
|
=item Step 3: add any extra or "hidden" dependencies. |
| 555 |
|
|
|
| 556 |
|
|
F<staticperl> currently knows about three extra types of depdendencies |
| 557 |
|
|
that are added automatically. Only one (F<.packlist> files) is currently |
| 558 |
|
|
optional and can be influenced, the others are always included: |
| 559 |
|
|
|
| 560 |
|
|
=over 4 |
| 561 |
|
|
|
| 562 |
|
|
=item C<--usepacklist> |
| 563 |
root |
1.20 |
|
| 564 |
|
|
Read F<.packlist> files for each distribution that happens to match a |
| 565 |
|
|
module name you specified. Sounds weird, and it is, so expect semantics to |
| 566 |
|
|
change somehow in the future. |
| 567 |
|
|
|
| 568 |
|
|
The idea is that most CPAN distributions have a F<.pm> file that matches |
| 569 |
|
|
the name of the distribution (which is rather reasonable after all). |
| 570 |
|
|
|
| 571 |
|
|
If this switch is enabled, then if any of the F<.pm> files that have been |
| 572 |
|
|
selected match an install distribution, then all F<.pm>, F<.pl>, F<.al> |
| 573 |
|
|
and F<.ix> files installed by this distribution are also included. |
| 574 |
|
|
|
| 575 |
|
|
For example, using this switch, when the L<URI> module is specified, then |
| 576 |
|
|
all L<URI> submodules that have been installed via the CPAN distribution |
| 577 |
|
|
are included as well, so you don't have to manually specify them. |
| 578 |
|
|
|
| 579 |
root |
1.26 |
=item L<AutoLoader> splitfiles |
| 580 |
root |
1.18 |
|
| 581 |
root |
1.26 |
Some modules use L<AutoLoader> - less commonly (hopefully) used functions |
| 582 |
|
|
are split into separate F<.al> files, and an index (F<.ix>) file contains |
| 583 |
|
|
the prototypes. |
| 584 |
root |
1.18 |
|
| 585 |
root |
1.26 |
Both F<.ix> and F<.al> files will be detected automatically and added to |
| 586 |
|
|
the bundle. |
| 587 |
root |
1.18 |
|
| 588 |
root |
1.26 |
=item link libraries (F<.a> files) |
| 589 |
|
|
|
| 590 |
|
|
Modules using XS (or any other non-perl language extension compiled at |
| 591 |
|
|
installation time) will have a static archive (typically F<.a>). These |
| 592 |
|
|
will automatically be added to the linker options in F<bundle.ldopts>. |
| 593 |
|
|
|
| 594 |
|
|
Should F<staticperl> find a dynamic link library (typically F<.so>) it |
| 595 |
|
|
will warn about it - obviously this shouldn't happen unless you use |
| 596 |
|
|
F<staticperl> on the wrong perl, or one (probably wrongly) configured to |
| 597 |
|
|
use dynamic loading. |
| 598 |
|
|
|
| 599 |
|
|
=item extra libraries (F<extralibs.ld>) |
| 600 |
|
|
|
| 601 |
|
|
Some modules need linking against external libraries - these are found in |
| 602 |
|
|
F<extralibs.ld> and added to F<bundle.ldopts>. |
| 603 |
|
|
|
| 604 |
|
|
=back |
| 605 |
|
|
|
| 606 |
|
|
=item Step 4: write bundle files and optionally link a program |
| 607 |
|
|
|
| 608 |
|
|
At this point, the select files will be read, processed (stripped) and |
| 609 |
|
|
finally the bundle files get written to disk, and F<staticperl mkbundle> |
| 610 |
|
|
is normally finished. Optionally, it can go a step further and either link |
| 611 |
|
|
a new F<perl> binary with all selected modules and files inside, or build |
| 612 |
|
|
a standalone application. |
| 613 |
|
|
|
| 614 |
|
|
Both the contents of the bundle files and any extra linking is controlled |
| 615 |
|
|
by these options: |
| 616 |
|
|
|
| 617 |
|
|
=over 4 |
| 618 |
root |
1.18 |
|
| 619 |
root |
1.26 |
=item C<--strip> C<none>|C<pod>|C<ppi> |
| 620 |
root |
1.18 |
|
| 621 |
root |
1.26 |
Specify the stripping method applied to reduce the file of the perl |
| 622 |
|
|
sources included. |
| 623 |
root |
1.18 |
|
| 624 |
root |
1.26 |
The default is C<pod>, which uses the L<Pod::Strip> module to remove all |
| 625 |
|
|
pod documentation, which is very fast and reduces file size a lot. |
| 626 |
root |
1.2 |
|
| 627 |
root |
1.26 |
The C<ppi> method uses L<PPI> to parse and condense the perl sources. This |
| 628 |
|
|
saves a lot more than just L<Pod::Strip>, and is generally safer, |
| 629 |
|
|
but is also a lot slower (some files take almost a minute to strip - |
| 630 |
|
|
F<staticperl> maintains a cache of stripped files to speed up subsequent |
| 631 |
|
|
runs for this reason). Note that this method doesn't optimise for raw file |
| 632 |
|
|
size, but for best compression (that means that the uncompressed file size |
| 633 |
|
|
is a bit larger, but the files compress better, e.g. with F<upx>). |
| 634 |
|
|
|
| 635 |
|
|
Last not least, if you need accurate line numbers in error messages, |
| 636 |
|
|
or in the unlikely case where C<pod> is too slow, or some module gets |
| 637 |
|
|
mistreated, you can specify C<none> to not mangle included perl sources in |
| 638 |
|
|
any way. |
| 639 |
root |
1.2 |
|
| 640 |
root |
1.28 |
=item C<--perl> |
| 641 |
root |
1.2 |
|
| 642 |
root |
1.26 |
After writing out the bundle files, try to link a new perl interpreter. It |
| 643 |
|
|
will be called F<perl> and will be left in the current working |
| 644 |
|
|
directory. The bundle files will be removed. |
| 645 |
root |
1.2 |
|
| 646 |
root |
1.26 |
This switch is automatically used when F<staticperl> is invoked with the |
| 647 |
|
|
C<mkperl> command instead of C<mkbundle>. |
| 648 |
root |
1.2 |
|
| 649 |
root |
1.26 |
Example: build a new F<./perl> binary with only L<common::sense> inside - |
| 650 |
|
|
it will be even smaller than the standard perl interpreter as none of the |
| 651 |
|
|
modules of the base distribution (such as L<Fcntl>) will be included. |
| 652 |
root |
1.2 |
|
| 653 |
root |
1.26 |
staticperl mkperl -Mcommon::sense |
| 654 |
root |
1.10 |
|
| 655 |
root |
1.28 |
=item C<--app> F<name> |
| 656 |
root |
1.10 |
|
| 657 |
root |
1.26 |
After writing out the bundle files, try to link a new standalone |
| 658 |
|
|
program. It will be called C<name>, and the bundle files get removed after |
| 659 |
|
|
linking it. |
| 660 |
root |
1.10 |
|
| 661 |
root |
1.26 |
This switch is automatically used when F<staticperl> is invoked with the |
| 662 |
|
|
C<mkapp> command instead of C<mkbundle>. |
| 663 |
root |
1.10 |
|
| 664 |
root |
1.26 |
The difference to the (mutually exclusive) C<--perl> option is that the |
| 665 |
|
|
binary created by this option will not try to act as a perl interpreter - |
| 666 |
|
|
instead it will simply initialise the perl interpreter, clean it up and |
| 667 |
|
|
exit. |
| 668 |
root |
1.18 |
|
| 669 |
root |
1.26 |
This means that, by default, it will do nothing but burna few CPU cycles |
| 670 |
|
|
- for it to do something useful you I<must> add some boot code, e.g. with |
| 671 |
|
|
the C<--boot> option. |
| 672 |
root |
1.18 |
|
| 673 |
root |
1.26 |
Example: create a standalone perl binary called F<./myexe> that will |
| 674 |
|
|
execute F<appfile> when it is started. |
| 675 |
root |
1.18 |
|
| 676 |
root |
1.26 |
staticperl mkbundle --app myexe --boot appfile |
| 677 |
root |
1.18 |
|
| 678 |
root |
1.28 |
=item C<--static> |
| 679 |
root |
1.2 |
|
| 680 |
root |
1.26 |
Add C<-static> to F<bundle.ldopts>, which means a fully static (if |
| 681 |
|
|
supported by the OS) executable will be created. This is not immensely |
| 682 |
|
|
useful when just creating the bundle files, but is most useful when |
| 683 |
|
|
linking a binary with the C<--perl> or C<--app> options. |
| 684 |
|
|
|
| 685 |
|
|
The default is to link the new binary dynamically (that means all perl |
| 686 |
|
|
modules are linked statically, but all external libraries are still |
| 687 |
root |
1.2 |
referenced dynamically). |
| 688 |
|
|
|
| 689 |
|
|
Keep in mind that Solaris doesn't support static linking at all, and |
| 690 |
root |
1.26 |
systems based on GNU libc don't really support it in a very usable |
| 691 |
|
|
fashion either. Try uClibc if you want to create fully statically linked |
| 692 |
|
|
executables, or try the C<--staticlib> option to link only some libraries |
| 693 |
root |
1.2 |
statically. |
| 694 |
|
|
|
| 695 |
root |
1.28 |
=item C<--staticlib> libname |
| 696 |
root |
1.18 |
|
| 697 |
|
|
When not linking fully statically, this option allows you to link specific |
| 698 |
root |
1.28 |
libraries statically. What it does is simply replace all occurrences of |
| 699 |
root |
1.18 |
C<-llibname> with the GCC-specific C<-Wl,-Bstatic -llibname -Wl,-Bdynamic> |
| 700 |
|
|
option. |
| 701 |
|
|
|
| 702 |
|
|
This will have no effect unless the library is actually linked against, |
| 703 |
|
|
specifically, C<--staticlib> will not link against the named library |
| 704 |
|
|
unless it would be linked against anyway. |
| 705 |
|
|
|
| 706 |
root |
1.28 |
Example: link libcrypt statically into the final binary. |
| 707 |
root |
1.18 |
|
| 708 |
|
|
staticperl mkperl -MIO::AIO --staticlib crypt |
| 709 |
|
|
|
| 710 |
root |
1.26 |
# ldopts might now contain: |
| 711 |
root |
1.18 |
# -lm -Wl,-Bstatic -lcrypt -Wl,-Bdynamic -lpthread |
| 712 |
|
|
|
| 713 |
root |
1.26 |
=back |
| 714 |
root |
1.1 |
|
| 715 |
|
|
=back |
| 716 |
|
|
|
| 717 |
root |
1.18 |
=head3 EXTENDED GLOB PATTERNS |
| 718 |
|
|
|
| 719 |
|
|
Some options of F<staticperl mkbundle> expect an I<extended glob |
| 720 |
|
|
pattern>. This is neither a normal shell glob nor a regex, but something |
| 721 |
|
|
in between. The idea has been copied from rsync, and there are the current |
| 722 |
|
|
matching rules: |
| 723 |
|
|
|
| 724 |
|
|
=over 4 |
| 725 |
|
|
|
| 726 |
|
|
=item Patterns starting with F</> will be a anchored at the root of the library tree. |
| 727 |
|
|
|
| 728 |
|
|
That is, F</unicore> will match the F<unicore> directory in C<@INC>, but |
| 729 |
|
|
nothing inside, and neither any other file or directory called F<unicore> |
| 730 |
|
|
anywhere else in the hierarchy. |
| 731 |
|
|
|
| 732 |
|
|
=item Patterns not starting with F</> will be anchored at the end of the path. |
| 733 |
|
|
|
| 734 |
|
|
That is, F<idna.pl> will match any file called F<idna.pl> anywhere in the |
| 735 |
|
|
hierarchy, but not any directories of the same name. |
| 736 |
|
|
|
| 737 |
|
|
=item A F<*> matches any single component. |
| 738 |
|
|
|
| 739 |
|
|
That is, F</unicore/*.pl> would match all F<.pl> files directly inside |
| 740 |
|
|
C</unicore>, not any deeper level F<.pl> files. Or in other words, F<*> |
| 741 |
|
|
will not match slashes. |
| 742 |
|
|
|
| 743 |
|
|
=item A F<**> matches anything. |
| 744 |
|
|
|
| 745 |
|
|
That is, F</unicore/**.pl> would match all F<.pl> files under F</unicore>, |
| 746 |
|
|
no matter how deeply nested they are inside subdirectories. |
| 747 |
|
|
|
| 748 |
|
|
=item A F<?> matches a single character within a component. |
| 749 |
|
|
|
| 750 |
|
|
That is, F</Encode/??.pm> matches F</Encode/JP.pm>, but not the |
| 751 |
|
|
hypothetical F</Encode/J/.pm>, as F<?> does not match F</>. |
| 752 |
|
|
|
| 753 |
|
|
=back |
| 754 |
|
|
|
| 755 |
root |
1.15 |
=head2 F<STATICPERL> CONFIGURATION AND HOOKS |
| 756 |
root |
1.1 |
|
| 757 |
root |
1.20 |
During (each) startup, F<staticperl> tries to source some shell files to |
| 758 |
|
|
allow you to fine-tune/override configuration settings. |
| 759 |
|
|
|
| 760 |
|
|
In them you can override shell variables, or define shell functions |
| 761 |
|
|
("hooks") to be called at specific phases during installation. For |
| 762 |
|
|
example, you could define a C<postinstall> hook to install additional |
| 763 |
|
|
modules from CPAN each time you start from scratch. |
| 764 |
|
|
|
| 765 |
|
|
If the env variable C<$STATICPERLRC> is set, then F<staticperl> will try |
| 766 |
|
|
to source the file named with it only. Otherwise, it tries the following |
| 767 |
|
|
shell files in order: |
| 768 |
root |
1.2 |
|
| 769 |
|
|
/etc/staticperlrc |
| 770 |
|
|
~/.staticperlrc |
| 771 |
|
|
$STATICPERL/rc |
| 772 |
|
|
|
| 773 |
|
|
Note that the last file is erased during F<staticperl distclean>, so |
| 774 |
|
|
generally should not be used. |
| 775 |
|
|
|
| 776 |
|
|
=head3 CONFIGURATION VARIABLES |
| 777 |
|
|
|
| 778 |
|
|
=head4 Variables you I<should> override |
| 779 |
|
|
|
| 780 |
|
|
=over 4 |
| 781 |
|
|
|
| 782 |
|
|
=item C<EMAIL> |
| 783 |
|
|
|
| 784 |
|
|
The e-mail address of the person who built this binary. Has no good |
| 785 |
|
|
default, so should be specified by you. |
| 786 |
|
|
|
| 787 |
|
|
=item C<CPAN> |
| 788 |
|
|
|
| 789 |
|
|
The URL of the CPAN mirror to use (e.g. L<http://mirror.netcologne.de/cpan/>). |
| 790 |
|
|
|
| 791 |
root |
1.6 |
=item C<EXTRA_MODULES> |
| 792 |
root |
1.2 |
|
| 793 |
root |
1.6 |
Additional modules installed during F<staticperl install>. Here you can |
| 794 |
|
|
set which modules you want have to installed from CPAN. |
| 795 |
root |
1.2 |
|
| 796 |
root |
1.11 |
Example: I really really need EV, AnyEvent, Coro and AnyEvent::AIO. |
| 797 |
root |
1.2 |
|
| 798 |
root |
1.11 |
EXTRA_MODULES="EV AnyEvent Coro AnyEvent::AIO" |
| 799 |
root |
1.2 |
|
| 800 |
root |
1.6 |
Note that you can also use a C<postinstall> hook to achieve this, and |
| 801 |
|
|
more. |
| 802 |
root |
1.2 |
|
| 803 |
root |
1.11 |
=back |
| 804 |
|
|
|
| 805 |
|
|
=head4 Variables you might I<want> to override |
| 806 |
|
|
|
| 807 |
|
|
=over 4 |
| 808 |
|
|
|
| 809 |
|
|
=item C<STATICPERL> |
| 810 |
|
|
|
| 811 |
|
|
The directory where staticperl stores all its files |
| 812 |
|
|
(default: F<~/.staticperl>). |
| 813 |
|
|
|
| 814 |
root |
1.6 |
=item C<PERL_MM_USE_DEFAULT>, C<EV_EXTRA_DEFS>, ... |
| 815 |
root |
1.2 |
|
| 816 |
|
|
Usually set to C<1> to make modules "less inquisitive" during their |
| 817 |
|
|
installation, you can set any environment variable you want - some modules |
| 818 |
|
|
(such as L<Coro> or L<EV>) use environment variables for further tweaking. |
| 819 |
|
|
|
| 820 |
root |
1.11 |
=item C<PERL_VERSION> |
| 821 |
root |
1.6 |
|
| 822 |
root |
1.11 |
The perl version to install - default is currently C<5.12.2>, but C<5.8.9> |
| 823 |
|
|
is also a good choice (5.8.9 is much smaller than 5.12.2, while 5.10.1 is |
| 824 |
|
|
about as big as 5.12.2). |
| 825 |
root |
1.2 |
|
| 826 |
root |
1.11 |
=item C<PERL_PREFIX> |
| 827 |
root |
1.2 |
|
| 828 |
root |
1.6 |
The prefix where perl gets installed (default: F<$STATICPERL/perl>), |
| 829 |
|
|
i.e. where the F<bin> and F<lib> subdirectories will end up. |
| 830 |
root |
1.2 |
|
| 831 |
root |
1.10 |
=item C<PERL_CONFIGURE> |
| 832 |
|
|
|
| 833 |
|
|
Additional Configure options - these are simply passed to the perl |
| 834 |
|
|
Configure script. For example, if you wanted to enable dynamic loading, |
| 835 |
|
|
you could pass C<-Dusedl>. To enable ithreads (Why would you want that |
| 836 |
|
|
insanity? Don't! Use L<forks> instead!) you would pass C<-Duseithreads> |
| 837 |
|
|
and so on. |
| 838 |
|
|
|
| 839 |
|
|
More commonly, you would either activate 64 bit integer support |
| 840 |
|
|
(C<-Duse64bitint>), or disable large files support (-Uuselargefiles), to |
| 841 |
|
|
reduce filesize further. |
| 842 |
|
|
|
| 843 |
root |
1.24 |
=item C<PERL_CC>, C<PERL_CCFLAGS>, C<PERL_OPTIMIZE>, C<PERL_LDFLAGS>, C<PERL_LIBS> |
| 844 |
root |
1.2 |
|
| 845 |
root |
1.6 |
These flags are passed to perl's F<Configure> script, and are generally |
| 846 |
|
|
optimised for small size (at the cost of performance). Since they also |
| 847 |
|
|
contain subtle workarounds around various build issues, changing these |
| 848 |
root |
1.24 |
usually requires understanding their default values - best look at |
| 849 |
|
|
the top of the F<staticperl> script for more info on these, and use a |
| 850 |
|
|
F<~/.staticperlrc> to override them. |
| 851 |
|
|
|
| 852 |
|
|
Most of the variables override (or modify) the corresponding F<Configure> |
| 853 |
|
|
variable, except C<PERL_CCFLAGS>, which gets appended. |
| 854 |
root |
1.2 |
|
| 855 |
|
|
=back |
| 856 |
|
|
|
| 857 |
root |
1.5 |
=head4 Variables you probably I<do not want> to override |
| 858 |
root |
1.2 |
|
| 859 |
|
|
=over 4 |
| 860 |
|
|
|
| 861 |
root |
1.23 |
=item C<MAKE> |
| 862 |
|
|
|
| 863 |
|
|
The make command to use - default is C<make>. |
| 864 |
|
|
|
| 865 |
root |
1.2 |
=item C<MKBUNDLE> |
| 866 |
|
|
|
| 867 |
|
|
Where F<staticperl> writes the C<mkbundle> command to |
| 868 |
|
|
(default: F<$STATICPERL/mkbundle>). |
| 869 |
|
|
|
| 870 |
|
|
=item C<STATICPERL_MODULES> |
| 871 |
|
|
|
| 872 |
|
|
Additional modules needed by C<mkbundle> - should therefore not be changed |
| 873 |
|
|
unless you know what you are doing. |
| 874 |
|
|
|
| 875 |
|
|
=back |
| 876 |
|
|
|
| 877 |
|
|
=head3 OVERRIDABLE HOOKS |
| 878 |
|
|
|
| 879 |
|
|
In addition to environment variables, it is possible to provide some |
| 880 |
|
|
shell functions that are called at specific times. To provide your own |
| 881 |
root |
1.3 |
commands, just define the corresponding function. |
| 882 |
root |
1.2 |
|
| 883 |
|
|
Example: install extra modules from CPAN and from some directories |
| 884 |
|
|
at F<staticperl install> time. |
| 885 |
|
|
|
| 886 |
|
|
postinstall() { |
| 887 |
root |
1.4 |
rm -rf lib/threads* # weg mit Schaden |
| 888 |
root |
1.2 |
instcpan IO::AIO EV |
| 889 |
|
|
instsrc ~/src/AnyEvent |
| 890 |
|
|
instsrc ~/src/XML-Sablotron-1.0100001 |
| 891 |
root |
1.4 |
instcpan Anyevent::AIO AnyEvent::HTTPD |
| 892 |
root |
1.2 |
} |
| 893 |
|
|
|
| 894 |
|
|
=over 4 |
| 895 |
|
|
|
| 896 |
root |
1.12 |
=item preconfigure |
| 897 |
|
|
|
| 898 |
|
|
Called just before running F<./Configur> in the perl source |
| 899 |
|
|
directory. Current working directory is the perl source directory. |
| 900 |
|
|
|
| 901 |
|
|
This can be used to set any C<PERL_xxx> variables, which might be costly |
| 902 |
|
|
to compute. |
| 903 |
|
|
|
| 904 |
root |
1.2 |
=item postconfigure |
| 905 |
|
|
|
| 906 |
|
|
Called after configuring, but before building perl. Current working |
| 907 |
|
|
directory is the perl source directory. |
| 908 |
|
|
|
| 909 |
root |
1.12 |
Could be used to tailor/patch config.sh (followed by F<sh Configure -S>) |
| 910 |
|
|
or do any other modifications. |
| 911 |
root |
1.2 |
|
| 912 |
|
|
=item postbuild |
| 913 |
|
|
|
| 914 |
|
|
Called after building, but before installing perl. Current working |
| 915 |
|
|
directory is the perl source directory. |
| 916 |
|
|
|
| 917 |
|
|
I have no clue what this could be used for - tell me. |
| 918 |
|
|
|
| 919 |
|
|
=item postinstall |
| 920 |
|
|
|
| 921 |
|
|
Called after perl and any extra modules have been installed in C<$PREFIX>, |
| 922 |
|
|
but before setting the "installation O.K." flag. |
| 923 |
|
|
|
| 924 |
|
|
The current working directory is C<$PREFIX>, but maybe you should not rely |
| 925 |
|
|
on that. |
| 926 |
|
|
|
| 927 |
|
|
This hook is most useful to customise the installation, by deleting files, |
| 928 |
|
|
or installing extra modules using the C<instcpan> or C<instsrc> functions. |
| 929 |
|
|
|
| 930 |
|
|
The script must return with a zero exit status, or the installation will |
| 931 |
|
|
fail. |
| 932 |
|
|
|
| 933 |
|
|
=back |
| 934 |
root |
1.1 |
|
| 935 |
root |
1.9 |
=head1 ANATOMY OF A BUNDLE |
| 936 |
|
|
|
| 937 |
|
|
When not building a new perl binary, C<mkbundle> will leave a number of |
| 938 |
|
|
files in the current working directory, which can be used to embed a perl |
| 939 |
|
|
interpreter in your program. |
| 940 |
|
|
|
| 941 |
|
|
Intimate knowledge of L<perlembed> and preferably some experience with |
| 942 |
|
|
embedding perl is highly recommended. |
| 943 |
|
|
|
| 944 |
|
|
C<mkperl> (or the C<--perl> option) basically does this to link the new |
| 945 |
|
|
interpreter (it also adds a main program to F<bundle.>): |
| 946 |
|
|
|
| 947 |
|
|
$Config{cc} $(cat bundle.ccopts) -o perl bundle.c $(cat bundle.ldopts) |
| 948 |
|
|
|
| 949 |
|
|
=over 4 |
| 950 |
|
|
|
| 951 |
|
|
=item bundle.h |
| 952 |
|
|
|
| 953 |
|
|
A header file that contains the prototypes of the few symbols "exported" |
| 954 |
|
|
by bundle.c, and also exposes the perl headers to the application. |
| 955 |
|
|
|
| 956 |
|
|
=over 4 |
| 957 |
|
|
|
| 958 |
|
|
=item staticperl_init () |
| 959 |
|
|
|
| 960 |
|
|
Initialises the perl interpreter. You can use the normal perl functions |
| 961 |
|
|
after calling this function, for example, to define extra functions or |
| 962 |
|
|
to load a .pm file that contains some initialisation code, or the main |
| 963 |
|
|
program function: |
| 964 |
|
|
|
| 965 |
|
|
XS (xsfunction) |
| 966 |
|
|
{ |
| 967 |
|
|
dXSARGS; |
| 968 |
|
|
|
| 969 |
|
|
// now we have items, ST(i) etc. |
| 970 |
|
|
} |
| 971 |
|
|
|
| 972 |
|
|
static void |
| 973 |
|
|
run_myapp(void) |
| 974 |
|
|
{ |
| 975 |
|
|
staticperl_init (); |
| 976 |
|
|
newXSproto ("myapp::xsfunction", xsfunction, __FILE__, "$$;$"); |
| 977 |
|
|
eval_pv ("require myapp::main", 1); // executes "myapp/main.pm" |
| 978 |
|
|
} |
| 979 |
|
|
|
| 980 |
|
|
=item staticperl_xs_init (pTHX) |
| 981 |
|
|
|
| 982 |
|
|
Sometimes you need direct control over C<perl_parse> and C<perl_run>, in |
| 983 |
|
|
which case you do not want to use C<staticperl_init> but call them on your |
| 984 |
|
|
own. |
| 985 |
|
|
|
| 986 |
|
|
Then you need this function - either pass it directly as the C<xs_init> |
| 987 |
|
|
function to C<perl_parse>, or call it from your own C<xs_init> function. |
| 988 |
|
|
|
| 989 |
|
|
=item staticperl_cleanup () |
| 990 |
|
|
|
| 991 |
|
|
In the unlikely case that you want to destroy the perl interpreter, here |
| 992 |
|
|
is the corresponding function. |
| 993 |
|
|
|
| 994 |
|
|
=item PerlInterpreter *staticperl |
| 995 |
|
|
|
| 996 |
|
|
The perl interpreter pointer used by staticperl. Not normally so useful, |
| 997 |
|
|
but there it is. |
| 998 |
|
|
|
| 999 |
|
|
=back |
| 1000 |
|
|
|
| 1001 |
|
|
=item bundle.ccopts |
| 1002 |
|
|
|
| 1003 |
|
|
Contains the compiler options required to compile at least F<bundle.c> and |
| 1004 |
|
|
any file that includes F<bundle.h> - you should probably use it in your |
| 1005 |
|
|
C<CFLAGS>. |
| 1006 |
|
|
|
| 1007 |
|
|
=item bundle.ldopts |
| 1008 |
|
|
|
| 1009 |
|
|
The linker options needed to link the final program. |
| 1010 |
|
|
|
| 1011 |
|
|
=back |
| 1012 |
|
|
|
| 1013 |
|
|
=head1 RUNTIME FUNCTIONALITY |
| 1014 |
|
|
|
| 1015 |
|
|
Binaries created with C<mkbundle>/C<mkperl> contain extra functions, which |
| 1016 |
|
|
are required to access the bundled perl sources, but might be useful for |
| 1017 |
|
|
other purposes. |
| 1018 |
|
|
|
| 1019 |
|
|
In addition, for the embedded loading of perl files to work, F<staticperl> |
| 1020 |
|
|
overrides the C<@INC> array. |
| 1021 |
|
|
|
| 1022 |
|
|
=over 4 |
| 1023 |
|
|
|
| 1024 |
|
|
=item $file = staticperl::find $path |
| 1025 |
|
|
|
| 1026 |
|
|
Returns the data associated with the given C<$path> |
| 1027 |
|
|
(e.g. C<Digest/MD5.pm>, C<auto/POSIX/autosplit.ix>), which is basically |
| 1028 |
|
|
the UNIX path relative to the perl library directory. |
| 1029 |
|
|
|
| 1030 |
|
|
Returns C<undef> if the file isn't embedded. |
| 1031 |
|
|
|
| 1032 |
|
|
=item @paths = staticperl::list |
| 1033 |
|
|
|
| 1034 |
|
|
Returns the list of all paths embedded in this binary. |
| 1035 |
|
|
|
| 1036 |
|
|
=back |
| 1037 |
|
|
|
| 1038 |
|
|
=head1 FULLY STATIC BINARIES - BUILDROOT |
| 1039 |
|
|
|
| 1040 |
root |
1.10 |
To make truly static (Linux-) libraries, you might want to have a look at |
| 1041 |
root |
1.9 |
buildroot (L<http://buildroot.uclibc.org/>). |
| 1042 |
|
|
|
| 1043 |
|
|
Buildroot is primarily meant to set up a cross-compile environment (which |
| 1044 |
|
|
is not so useful as perl doesn't quite like cross compiles), but it can also compile |
| 1045 |
|
|
a chroot environment where you can use F<staticperl>. |
| 1046 |
|
|
|
| 1047 |
|
|
To do so, download buildroot, and enable "Build options => development |
| 1048 |
|
|
files in target filesystem" and optionally "Build options => gcc |
| 1049 |
|
|
optimization level (optimize for size)". At the time of writing, I had |
| 1050 |
|
|
good experiences with GCC 4.4.x but not GCC 4.5. |
| 1051 |
|
|
|
| 1052 |
|
|
To minimise code size, I used C<-pipe -ffunction-sections -fdata-sections |
| 1053 |
|
|
-finline-limit=8 -fno-builtin-strlen -mtune=i386>. The C<-mtune=i386> |
| 1054 |
|
|
doesn't decrease codesize much, but it makes the file much more |
| 1055 |
|
|
compressible. |
| 1056 |
|
|
|
| 1057 |
|
|
If you don't need Coro or threads, you can go with "linuxthreads.old" (or |
| 1058 |
|
|
no thread support). For Coro, it is highly recommended to switch to a |
| 1059 |
|
|
uClibc newer than 0.9.31 (at the time of this writing, I used the 20101201 |
| 1060 |
|
|
snapshot) and enable NPTL, otherwise Coro needs to be configured with the |
| 1061 |
|
|
ultra-slow pthreads backend to work around linuxthreads bugs (it also uses |
| 1062 |
|
|
twice the address space needed for stacks). |
| 1063 |
|
|
|
| 1064 |
root |
1.10 |
If you use C<linuxthreads.old>, then you should also be aware that |
| 1065 |
|
|
uClibc shares C<errno> between all threads when statically linking. See |
| 1066 |
|
|
L<http://lists.uclibc.org/pipermail/uclibc/2010-June/044157.html> for a |
| 1067 |
|
|
workaround (And L<https://bugs.uclibc.org/2089> for discussion). |
| 1068 |
|
|
|
| 1069 |
root |
1.11 |
C<ccache> support is also recommended, especially if you want |
| 1070 |
|
|
to play around with buildroot options. Enabling the C<miniperl> |
| 1071 |
|
|
package will probably enable all options required for a successful |
| 1072 |
|
|
perl build. F<staticperl> itself additionally needs either C<wget> |
| 1073 |
|
|
(recommended, for CPAN) or C<curl>. |
| 1074 |
root |
1.9 |
|
| 1075 |
|
|
As for shells, busybox should provide all that is needed, but the default |
| 1076 |
|
|
busybox configuration doesn't include F<comm> which is needed by perl - |
| 1077 |
|
|
either make a custom busybox config, or compile coreutils. |
| 1078 |
|
|
|
| 1079 |
|
|
For the latter route, you might find that bash has some bugs that keep |
| 1080 |
|
|
it from working properly in a chroot - either use dash (and link it to |
| 1081 |
|
|
F</bin/sh> inside the chroot) or link busybox to F</bin/sh>, using it's |
| 1082 |
|
|
built-in ash shell. |
| 1083 |
|
|
|
| 1084 |
|
|
Finally, you need F</dev/null> inside the chroot for many scripts to work |
| 1085 |
|
|
- F<cp /dev/null output/target/dev> or bind-mounting your F</dev> will |
| 1086 |
|
|
both provide this. |
| 1087 |
|
|
|
| 1088 |
|
|
After you have compiled and set up your buildroot target, you can copy |
| 1089 |
|
|
F<staticperl> from the C<App::Staticperl> distribution or from your |
| 1090 |
|
|
perl f<bin> directory (if you installed it) into the F<output/target> |
| 1091 |
|
|
filesystem, chroot inside and run it. |
| 1092 |
|
|
|
| 1093 |
root |
1.17 |
=head1 RECIPES / SPECIFIC MODULES |
| 1094 |
|
|
|
| 1095 |
|
|
This section contains some common(?) recipes and information about |
| 1096 |
|
|
problems with some common modules or perl constructs that require extra |
| 1097 |
|
|
files to be included. |
| 1098 |
|
|
|
| 1099 |
|
|
=head2 MODULES |
| 1100 |
|
|
|
| 1101 |
|
|
=over 4 |
| 1102 |
|
|
|
| 1103 |
|
|
=item utf8 |
| 1104 |
|
|
|
| 1105 |
|
|
Some functionality in the utf8 module, such as swash handling (used |
| 1106 |
|
|
for unicode character ranges in regexes) is implemented in the |
| 1107 |
root |
1.18 |
C<"utf8_heavy.pl"> library: |
| 1108 |
|
|
|
| 1109 |
|
|
-M'"utf8_heavy.pl"' |
| 1110 |
root |
1.17 |
|
| 1111 |
|
|
Many Unicode properties in turn are defined in separate modules, |
| 1112 |
|
|
such as C<"unicore/Heavy.pl"> and more specific data tables such as |
| 1113 |
root |
1.18 |
C<"unicore/To/Digit.pl"> or C<"unicore/lib/Perl/Word.pl">. These tables |
| 1114 |
|
|
are big (7MB uncompressed, although F<staticperl> contains special |
| 1115 |
|
|
handling for those files), so including them on demand by your application |
| 1116 |
|
|
only might pay off. |
| 1117 |
root |
1.17 |
|
| 1118 |
root |
1.18 |
To simply include the whole unicode database, use: |
| 1119 |
root |
1.17 |
|
| 1120 |
root |
1.18 |
--incglob '/unicore/*.pl' |
| 1121 |
root |
1.17 |
|
| 1122 |
|
|
=item AnyEvent |
| 1123 |
|
|
|
| 1124 |
|
|
AnyEvent needs a backend implementation that it will load in a delayed |
| 1125 |
|
|
fashion. The L<AnyEvent::Impl::Perl> backend is the default choice |
| 1126 |
|
|
for AnyEvent if it can't find anything else, and is usually a safe |
| 1127 |
|
|
fallback. If you plan to use e.g. L<EV> (L<POE>...), then you need to |
| 1128 |
|
|
include the L<AnyEvent::Impl::EV> (L<AnyEvent::Impl::POE>...) backend as |
| 1129 |
|
|
well. |
| 1130 |
|
|
|
| 1131 |
|
|
If you want to handle IRIs or IDNs (L<AnyEvent::Util> punycode and idn |
| 1132 |
|
|
functions), you also need to include C<"AnyEvent/Util/idna.pl"> and |
| 1133 |
|
|
C<"AnyEvent/Util/uts46data.pl">. |
| 1134 |
|
|
|
| 1135 |
root |
1.20 |
Or you can use C<--usepacklist> and specify C<-MAnyEvent> to include |
| 1136 |
|
|
everything. |
| 1137 |
|
|
|
| 1138 |
root |
1.18 |
=item Carp |
| 1139 |
|
|
|
| 1140 |
|
|
Carp had (in older versions of perl) a dependency on L<Carp::Heavy>. As of |
| 1141 |
|
|
perl 5.12.2 (maybe earlier), this dependency no longer exists. |
| 1142 |
|
|
|
| 1143 |
|
|
=item Config |
| 1144 |
|
|
|
| 1145 |
|
|
The F<perl -V> switch (as well as many modules) needs L<Config>, which in |
| 1146 |
|
|
turn might need L<"Config_heavy.pl">. Including the latter gives you |
| 1147 |
|
|
both. |
| 1148 |
|
|
|
| 1149 |
|
|
=item Term::ReadLine::Perl |
| 1150 |
|
|
|
| 1151 |
root |
1.20 |
Also needs L<Term::ReadLine::readline>, or C<--usepacklist>. |
| 1152 |
root |
1.18 |
|
| 1153 |
root |
1.17 |
=item URI |
| 1154 |
|
|
|
| 1155 |
|
|
URI implements schemes as separate modules - the generic URL scheme is |
| 1156 |
|
|
implemented in L<URI::_generic>, HTTP is implemented in L<URI::http>. If |
| 1157 |
root |
1.20 |
you need to use any of these schemes, you should include these manually, |
| 1158 |
|
|
or use C<--usepacklist>. |
| 1159 |
root |
1.17 |
|
| 1160 |
|
|
=back |
| 1161 |
|
|
|
| 1162 |
|
|
=head2 RECIPES |
| 1163 |
|
|
|
| 1164 |
|
|
=over 4 |
| 1165 |
|
|
|
| 1166 |
root |
1.18 |
=item Linking everything in |
| 1167 |
|
|
|
| 1168 |
|
|
To link just about everything installed in the perl library into a new |
| 1169 |
|
|
perl, try this: |
| 1170 |
|
|
|
| 1171 |
|
|
staticperl mkperl --strip ppi --incglob '*' |
| 1172 |
|
|
|
| 1173 |
root |
1.17 |
=item Getting rid of netdb function |
| 1174 |
|
|
|
| 1175 |
|
|
The perl core has lots of netdb functions (C<getnetbyname>, C<getgrent> |
| 1176 |
|
|
and so on) that few applications use. You can avoid compiling them in by |
| 1177 |
|
|
putting the following fragment into a C<preconfigure> hook: |
| 1178 |
|
|
|
| 1179 |
|
|
preconfigure() { |
| 1180 |
|
|
for sym in \ |
| 1181 |
|
|
d_getgrnam_r d_endgrent d_endgrent_r d_endhent \ |
| 1182 |
|
|
d_endhostent_r d_endnent d_endnetent_r d_endpent \ |
| 1183 |
|
|
d_endprotoent_r d_endpwent d_endpwent_r d_endsent \ |
| 1184 |
|
|
d_endservent_r d_getgrent d_getgrent_r d_getgrgid_r \ |
| 1185 |
|
|
d_getgrnam_r d_gethbyaddr d_gethent d_getsbyport \ |
| 1186 |
|
|
d_gethostbyaddr_r d_gethostbyname_r d_gethostent_r \ |
| 1187 |
|
|
d_getlogin_r d_getnbyaddr d_getnbyname d_getnent \ |
| 1188 |
|
|
d_getnetbyaddr_r d_getnetbyname_r d_getnetent_r \ |
| 1189 |
|
|
d_getpent d_getpbyname d_getpbynumber d_getprotobyname_r \ |
| 1190 |
|
|
d_getprotobynumber_r d_getprotoent_r d_getpwent \ |
| 1191 |
|
|
d_getpwent_r d_getpwnam_r d_getpwuid_r d_getsent \ |
| 1192 |
|
|
d_getservbyname_r d_getservbyport_r d_getservent_r \ |
| 1193 |
|
|
d_getspnam_r d_getsbyname |
| 1194 |
|
|
# d_gethbyname |
| 1195 |
|
|
do |
| 1196 |
|
|
PERL_CONFIGURE="$PERL_CONFIGURE -U$sym" |
| 1197 |
|
|
done |
| 1198 |
|
|
} |
| 1199 |
|
|
|
| 1200 |
|
|
This mostly gains space when linking staticaly, as the functions will |
| 1201 |
root |
1.21 |
likely not be linked in. The gain for dynamically-linked binaries is |
| 1202 |
root |
1.17 |
smaller. |
| 1203 |
|
|
|
| 1204 |
|
|
Also, this leaves C<gethostbyname> in - not only is it actually used |
| 1205 |
|
|
often, the L<Socket> module also exposes it, so leaving it out usually |
| 1206 |
|
|
gains little. Why Socket exposes a C function that is in the core already |
| 1207 |
|
|
is anybody's guess. |
| 1208 |
|
|
|
| 1209 |
|
|
=back |
| 1210 |
|
|
|
| 1211 |
root |
1.1 |
=head1 AUTHOR |
| 1212 |
|
|
|
| 1213 |
|
|
Marc Lehmann <schmorp@schmorp.de> |
| 1214 |
|
|
http://software.schmorp.de/pkg/staticperl.html |