ocaml/asmcomp/asmlibrarian.mli

25 lines
961 B
OCaml
Raw Normal View History

(***********************************************************************)
(* *)
(* 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
exception Error of error
val report_error: error -> unit