diff options
author | Adam Chlipala <adamc@hcoop.net> | 2009-04-30 17:15:14 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2009-04-30 17:15:14 -0400 |
commit | 2307ccdcc5eb4ddfe719ddcbea999f7705ec79c3 (patch) | |
tree | 4be9b76a5e655b9f28be47710cc47e600a369a14 /src/compiler.sig | |
parent | db2f1f208afef9110d8a5796a2325928a92b62cc (diff) |
C FFI compiler options
Diffstat (limited to 'src/compiler.sig')
-rw-r--r-- | src/compiler.sig | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/compiler.sig b/src/compiler.sig index d00f111e..cae86472 100644 --- a/src/compiler.sig +++ b/src/compiler.sig @@ -37,11 +37,14 @@ signature COMPILER = sig sql : string option, debug : bool, profile : bool, - timeout : int + timeout : int, + ffi : string list, + link : string list, + headers : string list } val compile : string -> unit val compileC : {cname : string, oname : string, ename : string, libs : string, - profile : bool, debug : bool} -> unit + profile : bool, debug : bool, link : string list} -> unit type ('src, 'dst) phase type ('src, 'dst) transform |