]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/ocaml/contrib/bytecomp/bytepackager.mli
Inital import
[l4.git] / l4 / pkg / ocaml / contrib / bytecomp / bytepackager.mli
1 (***********************************************************************)
2 (*                                                                     *)
3 (*                           Objective Caml                            *)
4 (*                                                                     *)
5 (*            Xavier Leroy, projet Cristal, INRIA Rocquencourt         *)
6 (*                                                                     *)
7 (*  Copyright 2002 Institut National de Recherche en Informatique et   *)
8 (*  en Automatique.  All rights reserved.  This file is distributed    *)
9 (*  under the terms of the Q Public License version 1.0.               *)
10 (*                                                                     *)
11 (***********************************************************************)
12
13 (* $Id: bytepackager.mli 4367 2002-02-08 16:55:44Z xleroy $ *)
14
15 (* "Package" a set of .cmo files into one .cmo file having the
16    original compilation units as sub-modules. *)
17
18 val package_files: string list -> string -> unit
19
20 type error =
21     Forward_reference of string * Ident.t
22   | Multiple_definition of string * Ident.t
23   | Not_an_object_file of string
24   | Illegal_renaming of string * string
25   | File_not_found of string
26
27 exception Error of error
28
29 val report_error: Format.formatter -> error -> unit