move compile-file' to compiler/compile-file'

The `mzlib/compile' module re-exports the moved function.

Also, fix `make-directory*' so that it never fails on an existing
directory. Remove `unstable/file', since it was just the same
clean-up of `make-directory*'.

original commit: 8d3c09b38b853dabffb5a58ba6a34876ca4f62fb
This commit is contained in:
Matthew Flatt 2013-07-10 10:05:50 -06:00
parent a10568fa5e
commit c20cc9d276
2 changed files with 6 additions and 29 deletions

View File

@ -1,34 +1,7 @@
#lang scribble/doc
@(require "common.rkt"
(for-label mzlib/compile
compiler/compiler
compiler/cm))
(for-label compiler/compile-file))
@mzlib[#:mode title compile]
@defproc[(compile-file [src path-string?]
[dest path-string? (let-values ([(base name dir?) (split-path src)])
(build-path base "compiled"
(path-add-suffix name #".zo")))]
[filter (any/c . -> . any/c) values])
path?]{
Compiles the Scheme file @racket[src] and saves the compiled code to
@racket[dest]. If @racket[dest] is not provided and the
@filepath{compiled} subdirectory does not already exist, the
subdirectory is created. The result of @racket[compile-file] is the
destination file's path.
If the @racket[filter] procedure is provided, it is applied to each
source expression, and the result is compiled.
The @racket[compile-file] procedure is designed for compiling modules
files, in that each expression in @racket[src] is compiled
independently. If @racket[src] does not contain a single
@racket[module] expression, then earlier expressions can affect the
compilation of later expressions when @racket[src] is loaded
directly. An appropriate @racket[filter] can make compilation behave
like evaluation, but the problem is also solved (as much as possible)
by the @racket[compile-zos] procedure.
See also @racket[managed-compile-zo].}
Re-exports @racket[compile-file] from @racketmodname[compiler/compile-file].

View File

@ -0,0 +1,4 @@
#lang racket/base
(require compiler/compile-file)
(provide compile-file)