ocaml/asmcomp/asmlibrarian.mli

25 lines
971 B
OCaml

(***********************************************************************)
(* *)
(* Caml Special Light *)
(* *)
(* Xavier Leroy, projet Cristal, INRIA Rocquencourt *)
(* *)
(* Copyright 1995 Institut National de Recherche en Informatique et *)
(* Automatique. Distributed only by permission. *)
(* *)
(***********************************************************************)
(* $Id$ *)
(* Build libraries of .cmx files *)
val create_archive: string list -> string -> unit
type error =
File_not_found of string
| Archiver_error of string
exception Error of error
val report_error: error -> unit