PAX
PAX is a Perl-native adaptive compiler and standalone binary packager.
Introduction
PAX exists to turn a Perl application plus its repeatable build inputs into one standalone executable.
Without that layer, a normal Perl deployment usually depends on some mix of:
- the original source tree
- the host Perl installation
- host CPAN modules
- asset directories beside the app
- local bootstrap scripts
- container images that carry the whole working tree
PAX changes that deployment shape. The target artifact is one executable that can carry compiled code units, packaged runtime payloads, embedded assets, and native artifacts where PAX can prove a region is safe to specialize.
In bundled-runtime mode that includes the packaged helper programs and the linked shared libraries and SONAME aliases required by bundled XS modules, so helper commands and query/runtime helpers still work after the original source tree and CPAN installation are gone.
The design goal is not "replace Perl with magic". The design goal is:
- keep Perl correctness
- keep fallback behavior explicit
- package applications into one binary
- move eligible hot paths toward native speed
- stay neutral across arbitrary Perl projects
The public command surface is intentionally small:
perl bin/pax help
perl bin/pax build
perl bin/pax run
Everything else in the repository is compiler/runtime implementation, test
coverage, or release tooling. Users should not call internal diagnostic
subcommands through bin/pax.
What You Get
- one public entrypoint with two commands:
pax buildandpax run - a repeatable build contract through
paxfile.yml - one standalone executable output
- embedded assets for web applications and static payloads
- packaged runtime payloads for source-tree-free execution
- packaged helper commands plus linked XS shared libraries and SONAME aliases for source-tree-free execution
- adaptive compilation with explicit fallback behavior
- self-hosted build capability, including building
bin/paxitself - Docker-friendly multi-stage packaging
Goals
- Build one executable from a Perl entrypoint.
- Read repeatable build inputs from
paxfile.yml. - Let CLI arguments override
paxfile.yml. - Embed assets and dependency payloads into the executable.
- Keep PAX neutral: no project-specific package names in compiler, loader, or runtime logic.
- Preserve correctness with fallback paths while compiling supported code units and native regions.
Main Concepts
-
PAX::CLIThe small public facade behindpax buildandpax run. -
PAX::PaxfileLoads repeatable build inputs frompaxfile.yml. -
PAX::StandaloneImageBuilds the standalone executable image, packages runtime payloads, and writes the launcher. -
PAX::CodeUnitCompilerCompiles supported Perl source shapes into PAX code unit records. -
PAX::StandaloneRuntimeProvides the packaged runtime helpers used by the standalone executable after launch. -
PAX::StandaloneDispatchRuns packaged native regions and deopt fallback paths under the standalone model.
Quick Start
Build from a local paxfile.yml:
perl bin/pax build
Long builds print a DD-style task rundown on stderr by default. On a real
terminal the board redraws live; in non-interactive runs it prints a static
rundown. The build path is broken into concrete checkpoints such as code-unit
compilation, application metadata inference, dependency analysis, native
artifact analysis, manifest writing, and launcher compilation. The code-unit
phase is further split into source discovery, entrypoint compilation,
application unit compilation, and dependency unit compilation so long builds
keep moving visibly. Application unit compilation includes the current file
name, so a slow module no longer looks like a frozen counter. To suppress it:
PAX_PROGRESS=0 perl bin/pax build --compact
Build an explicit entrypoint:
perl bin/pax build bin/my-app
Build to a specific output path:
perl bin/pax build -o ./build/my-app bin/my-app
perl bin/pax build --output ./build/my-app bin/my-app
Build and immediately run:
perl bin/pax run -- version
perl bin/pax run bin/my-app -- version
pax run uses the same build inputs as pax build, writes or refreshes the
standalone executable, and then executes that binary with arguments after --.
CLI Contract
usage:
pax build ...
pax run ...
Public commands:
build: compile/package the source tree behind an entrypoint into one executable.run: build the executable, then run it.
Common options:
--paxfile: read defaults from a manifest path; default ispaxfile.yml.--no-paxfile: ignore manifest defaults.-I: prepend a Perl library directory for inline builds/runs; repeatable.-M: load and import a Perl module for inline builds/runs; repeatable.-e: synthesize the entrypoint from inline Perl code.--name: artifact name.--lib: application library path; repeatable.--source-root: source tree to scan/package; repeatable.--cpanfile: dependency policy/source file; repeatable.--asset: individual asset file to embed; repeatable.--asset-dir: asset directory to embed recursively; repeatable.--output/-o: executable output path.--runtime-mode: runtime strategy, typicallybundled_perlorhost_perl.--compact: compact JSON build output.
paxfile.yml
With no positional entrypoint, pax build and pax run read paxfile.yml.
CLI flags override file values. When a positional entrypoint is supplied on the
CLI, PAX treats that target as an isolated build and does not silently inherit
libs, source_roots, assets, asset_dirs, cpanfiles, or app metadata
from the ambient default paxfile.yml. An explicit --paxfile still applies
its manifest defaults.
Example:
name: example-app
entrypoint: bin/example-app
output: build/example-app
libs:
- lib
source_roots:
- lib
assets:
- share/banner.txt
asset_dirs:
- share/public
cpanfiles:
- cpanfile
runtime_mode: bundled_perl
Output path precedence:
- CLI
--output/-o paxfile.ymloutput- fallback
.pax/standalone/<name>/<name>
Manual
Installation
For local development, install the distribution prerequisites and run from the repository checkout:
cpanm --installdeps .
perl bin/pax help
For release packaging, Dist::Zilla must also be available:
cpanm Dist::Zilla
First Build
The simplest workflow is a project-local paxfile.yml:
name: example-app
entrypoint: bin/example-app
output: build/example-app
libs:
- lib
cpanfiles:
- cpanfile
runtime_mode: bundled_perl
Then build:
perl bin/pax build
Run the result:
./build/example-app
Build Without paxfile.yml
PAX does not require a manifest when the CLI provides the required build shape:
perl bin/pax build -o ./build/example-app bin/example-app
That keeps one-off builds and self-hosting neutral even inside repositories
that ship their own paxfile.yml. Extra roots, assets, and CPAN policy files
must be declared explicitly on the CLI in that mode.
Inline entrypoints use the same public surface. -I adds Perl library roots,
-M loads and imports modules before execution, and -e supplies the
entrypoint code directly:
perl bin/pax build \
-I lib \
-MDateTime \
-e 'print DateTime->now'
pax run accepts the same switches:
perl bin/pax run \
-I lib \
-MDateTime \
-e 'print DateTime->now'
Self Compile
PAX can build PAX itself:
perl bin/pax build -o /tmp/pax bin/pax
/tmp/pax help
When the original source paths still exist, that self-built standalone pax
binary can also rebuild from another standalone pax binary input.
That same self-built binary can then build another standalone application from
its own paxfile.yml. It can also rebuild from another standalone pax
binary when the original source checkout is no longer present, because the
build path carries an embedded source snapshot for the application units it
needs to rebuild.
Asset Embedding
Assets are copied into the executable payload and extracted into a private runtime directory when the binary starts. Framework code can read them through the embedded asset root prepared by the PAX runtime.
Example:
perl bin/pax build \
--name webapp \
--lib lib \
--source-root lib \
--asset-dir share \
--cpanfile cpanfile \
--runtime-mode bundled_perl \
--output ./build/webapp \
bin/webapp
This pattern supports web applications that include Perl modules, templates, CSS, JavaScript, and other static files.
Web Applications
PAX supports the single-binary packaging shape for framework applications that combine:
- Perl modules
- PSGI/web framework code
- templates
- CSS
- JavaScript
- other static assets
The validated SOW-03 proof includes a Dancer2 + Plack/Starman + Template Toolkit web application packaged as one executable and deployed through a multi-stage Docker flow.
Docker Deployment
Two-stage pattern for a generic project:
FROM perl:5.42 AS builder
WORKDIR /workspace
COPY . /workspace
RUN cpanm --installdeps .
RUN perl bin/pax build --output /out/app
FROM debian:bookworm-slim
COPY --from=builder /out/app /usr/local/bin/app
CMD ["/usr/local/bin/app"]
The final stage receives only the built executable. It does not need the source
tree, asset tree, cpanfile, or web framework installation when the binary was
built in bundled runtime mode.
For an external application, the validated deployment pattern is:
- build a standalone
paxbinary - copy that
paxbinary into the application build stage - compile the application into its own standalone binary
- copy only that final application binary into the runtime stage
Architecture
PAX packages an application through these stages:
- Entrypoint and manifest loading.
- Dependency and source-root discovery.
- Code unit compilation into PCU or hybrid PCU records where supported.
- Native artifact packaging for supported hot regions.
- Asset and runtime payload embedding.
- Standalone launcher generation.
- Runtime extraction and dispatch with fallback safety.
Compilation is adaptive. If a module shape fails, the preferred fix is a reusable compiler, loader, dependency discovery, or runtime improvement that works for other projects with the same structure.
Why The Two-Command Surface Works
PAX used to expose more internal diagnostic and build commands at the CLI surface. SOW-03 intentionally collapsed that down to:
pax buildpax run
That keeps the operator workflow small while still allowing the internal Perl modules to carry richer build, inspection, and validation logic behind the public facade.
Known Limits
- Perl’s dynamic loading and runtime mutation can require fallback code paths.
- Native speedups depend on whether PAX can prove a region is safe to compile.
- Bundled runtime artifacts are larger than source-only wrappers because they include enough Perl/runtime payload to run without the source tree.
- Bundled-perl binaries are validated for builder and runtime environments from the same libc family; arbitrary host-built cross-distro portability is not a release guarantee, so build inside the target container family for multi-stage Docker deployment.
- Docker validation requires a local Docker daemon and build access.
Testing And Release Gates
Primary local validation:
make tdd-gate
make bdd-gate
make atdd-gate
make qa-gate
make test
make release-gate
make cpan-build
make cpan-gate
CPAN Release Gates
Release readiness is checked by the repository gates:
make cpan-bump-version VERSION=<next-version>
# update Changes with a meaningful top entry for <next-version>
make tdd-gate
make bdd-gate
make atdd-gate
make qa-gate
# commit the tracked release-preparation changes
make all-gates
Optional release:
make cpan-release
make cpan-release follows the same release shape used by the DD source:
verify the repo gates, locate the built tarball in the repository root, and
upload it with the local cpan-upload configuration.
Required release files:
ChangesREADME.mdcpanfiledist.inilib/PAX.pm
The CPAN gate verifies the distribution tarball and git index exclude temporary runtime probes, generated workspaces, coverage output, planning artifacts, and other non-release files.
Completion rule:
release-gatealone is not enoughcpan-gatealone is not enoughgit-gatealone is not enough- after code, doc, or metadata edits, rerun the affected gates
- "all gates" means the full closure sequence from TDD through git gate
make all-gatesis only the convenience replay target for the final committed-tree verification set- treat the change set as complete only when the full gate chain has closed and the committed tree passes git gate
Release flow rule:
- bump the version before
dzil build, for example withmake cpan-bump-version VERSION=<next-version>ormake cpan-auto-bump. - after the bump, update
Changeswith a meaningful top entry for that version and commit the release-preparation changes. make cpan-distandmake cpan-buildthen runversion-gate,changes-gate, anddoc-gatewithout mutating tracked source files.README.mdandlib/PAX.pmmust satisfy the documentation gate before the tarball is built.
FAQ
Is PAX only for one specific project?
No. PAX uses DD and other applications as validation corpora, but core compiler and runtime logic are expected to stay neutral and reusable.
Does PAX guarantee Rust-like speed for all Perl code?
No. The target is to package the whole application correctly and accelerate hot paths that PAX can prove are safe to specialize. Dynamic regions still use fallback execution.
Does pax run require a separate app server?
No. Under SOW-03, pax run builds the standalone executable and then runs that
binary directly.
Can PAX build web applications with embedded static assets?
Yes. The validated packaging path includes templates, CSS, JavaScript, and framework code embedded into one standalone executable.
Repository Map
bin/pax: public command entrypoint.lib/PAX/: compiler, packager, loader, runtime, and validation modules.t/: unit, behavior, and acceptance tests.examples/: neutral examples used to validate packaging behavior.paxfile.yml: neutral example build manifest.
Documentation Rule
PAX documentation follows the DD-style parity rule recorded in
docs/pax-doc-parity.md: document the product as both an operator manual and a
main architecture reference, not just as a command list.
Contributor Rules
- Keep PAX project-neutral.
- Turn project-specific lessons into reusable compiler/runtime rules.
- Keep
README.mdandlib/PAX.pmaligned. - Update POD and tests with behavior changes.
- Run the gates before treating a release build as complete.