racket/pkgs/racket-doc/scribblings/guide/compile.scrbl
Matthew Flatt 2d4f3e2ac9 remove the "racket-pkgs" directory layer
The layer is now redundant, since everything left in "pkgs" is in the
"racket-pkgs" category.
2014-12-08 05:22:59 -07:00

52 lines
1.6 KiB
Racket

#lang scribble/doc
@(require scribble/manual "guide-utils.rkt")
@title[#:tag "compile"]{Compilation and Configuration: @exec{raco}}
The @exec{raco} (short for ``@bold{Ra}cket @bold{co}mmand'') program
provides a command-line interface to many additional tools for
compiling Racket programs and maintaining a Racket installation.
@itemize[
@item{@exec{raco make} compiles Racket source to bytecode.
For example, if you have a program @filepath{take-over-world.rkt} and
you'd like to compile it to bytecode, along with all of its
dependencies, so that it loads more quickly, then run
@commandline{raco make take-over-the-world.rkt}
The bytecode file is written as @filepath{take-over-the-world_rkt.zo}
in a @filepath{compiled} subdirectory; @index[".zo"]{@filepath{.zo}}
is the file suffix for a bytecode file.}
@item{@exec{raco setup} manages a Racket installation, including
manually installed packages.
For example, if you create your own library @techlink{collection}
called @filepath{take-over}, and you'd like to build all bytecode and
documentation for the collection, then run
@commandline{raco setup take-over}}
@item{@exec{raco pkg} manages @tech{package}s that can be installed
through the Racket package manager.
For example, to see the list of installed packages run:
@commandline{raco pkg show}
To install a new package named @tt{<package-name>} run:
@commandline{raco pkg install <package-name>}
See @other-doc['(lib "pkg/scribblings/pkg.scrbl")] for more details
about package management.}
]
For more information on @exec{raco}, see @other-manual['(lib
"scribblings/raco/raco.scrbl")].