ocaml/asmcomp/asmlink.mli

17 lines
432 B
OCaml

(* 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
| Missing_implementations of string list
| 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