2013-11-03 08:27:32 +00:00
|
|
|
(*===-- llvm_linker.ml - LLVM OCaml Interface ------------------*- OCaml -*-===*
|
|
|
|
*
|
|
|
|
* The LLVM Compiler Infrastructure
|
|
|
|
*
|
|
|
|
* This file is distributed under the University of Illinois Open Source
|
|
|
|
* License. See LICENSE.TXT for details.
|
|
|
|
*
|
|
|
|
*===----------------------------------------------------------------------===*)
|
|
|
|
|
|
|
|
exception Error of string
|
|
|
|
|
2014-10-29 08:15:54 +00:00
|
|
|
let () = Callback.register_exception "Llvm_linker.Error" (Error "")
|
2013-11-03 08:27:32 +00:00
|
|
|
|
2014-12-23 19:16:45 +00:00
|
|
|
external link_modules : Llvm.llmodule -> Llvm.llmodule -> unit
|
2014-10-29 08:15:54 +00:00
|
|
|
= "llvm_link_modules"
|