Problem
Developers need to test AOT binaries without manual compile.php + CGI env wiring. #180 covers deploy bundles; this covers local dev ergonomics.
Goal
phpc build -o .phpc/bin/app examples/003-MiniWebApp/public/index.php
phpc serve --aot 127.0.0.1:8080 examples/003-MiniWebApp/public
Spawns CGI driver (#50) with per-request env against prebuilt binary.
Tasks
Acceptance criteria
Same curl tests pass against VM and AOT serve modes for 001-SimpleWeb after #201.
Dependencies
Files
bin/phpc.php, bin/serve.php, script wrapper
Problem
Developers need to test AOT binaries without manual
compile.php+ CGI env wiring. #180 covers deploy bundles; this covers local dev ergonomics.Goal
Spawns CGI driver (#50) with per-request env against prebuilt binary.
Tasks
phpc serve --aotflag inbin/phpc.phpphpc.json(DevEx: phpc.json project manifest (entry, includes, public assets) #106) or-opathAcceptance criteria
Same curl tests pass against VM and AOT serve modes for
001-SimpleWebafter #201.Dependencies
Files
bin/phpc.php,bin/serve.php, script wrapper