racket/collects/scribblings/mzc/sa.scrbl
Matthew Flatt 64d8b39b49 more guide clean-up
svn: r9920
2008-05-21 13:31:09 +00:00

19 lines
625 B
Racket

#lang scribble/doc
@(require scribble/manual
"common.ss")
@title[#:tag "sa" #:style 'toc]{Creating and Distributing Stand-Alone Executables}
Whether bytecode or native code, the compiled code produced by @|mzc|
relies on PLT Scheme executables to provide run-time support to the
compiled code. However, @|mzc| can also package code together with its
run-time support to form a complete executable, and then the
executable can be packaged into a distribution that works on other
machines.
@local-table-of-contents[]
@include-section["exe.scrbl"]
@include-section["dist.scrbl"]
@include-section["launcher.scrbl"]