ocaml/asmcomp/asmlink.mli

16 lines
389 B
OCaml
Raw Normal View History

(* Link a set of .cmx/.o files and produce an executable *)
val link: string list -> unit
type error =
File_not_found of string
| Not_an_object_file of string
| Inconsistent_interface of string * string * string
| Inconsistent_implementation of string * string * string
| Assembler_error of string
| Linking_error
exception Error of error
val report_error: error -> unit