mirror of
https://github.com/jeremysrand/llvm-65816.git
synced 2024-11-18 23:05:00 +00:00
22 lines
660 B
OCaml
22 lines
660 B
OCaml
|
(*===-- 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
|
||
|
|
||
|
external register_exns : exn -> unit = "llvm_register_linker_exns"
|
||
|
let _ = register_exns (Error "")
|
||
|
|
||
|
module Mode = struct
|
||
|
type t =
|
||
|
| DestroySource
|
||
|
| PreserveSource
|
||
|
end
|
||
|
|
||
|
external link_modules : Llvm.llmodule -> Llvm.llmodule -> Mode.t -> unit
|
||
|
= "llvm_link_modules"
|