forked from yallop/ocaml-ctypes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
META
71 lines (65 loc) · 2.28 KB
/
META
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
version = "0.9.1"
description = "Combinators for binding to C libraries without writing any C."
requires = "unix bigarray str bytes"
archive(byte) = "ctypes.cma"
archive(byte, plugin) = "ctypes.cma"
archive(native) = "ctypes.cmxa"
archive(native, plugin) = "ctypes.cmxs"
exists_if = "ctypes.cma"
package "top" (
version = "0.9.1"
description = "Toplevel printers for C types"
requires = "ctypes"
archive(byte) = "ctypes-top.cma"
archive(byte, plugin) = "ctypes-top.cma"
archive(native) = "ctypes-top.cmxa"
archive(native, plugin) = "ctypes-top.cmxs"
exists_if = "ctypes-top.cma"
)
package "stubs" (
version = "0.9.1"
description = "Stub generation from C types"
requires = "ctypes"
archive(byte) = "cstubs.cma"
archive(byte, plugin) = "cstubs.cma"
archive(native) = "cstubs.cmxa"
archive(native, plugin) = "cstubs.cmxs"
xen_linkopts = "-lctypes_stubs_xen"
exists_if = "cstubs.cma"
)
package "foreign" (
version = "0.9.1"
description = "Dynamic linking of C functions"
requires(-mt) = "ctypes.foreign.unthreaded"
requires(mt) = "ctypes.foreign.threaded"
package "base" (
version = "0.9.1"
description = "Dynamic linking of C functions (base package)"
requires = "ctypes"
archive(byte) = "ctypes-foreign-base.cma"
archive(byte, plugin) = "ctypes-foreign-base.cma"
archive(native) = "ctypes-foreign-base.cmxa"
archive(native, plugin) = "ctypes-foreign-base.cmxs"
exists_if = "ctypes-foreign-base.cma"
)
package "threaded" (
version = "0.9.1"
description = "Dynamic linking of C functions (for use in threaded programs)"
requires = "threads ctypes ctypes.foreign.base"
archive(byte) = "ctypes-foreign-threaded.cma"
archive(byte, plugin) = "ctypes-foreign-threaded.cma"
archive(native) = "ctypes-foreign-threaded.cmxa"
archive(native, plugin) = "ctypes-foreign-threaded.cmxs"
exists_if = "ctypes-foreign-threaded.cma"
)
package "unthreaded" (
version = "0.9.1"
description = "Dynamic linking of C functions (for use in unthreaded programs)"
requires = "ctypes ctypes.foreign.base"
archive(byte) = "ctypes-foreign-unthreaded.cma"
archive(byte, plugin) = "ctypes-foreign-unthreaded.cma"
archive(native) = "ctypes-foreign-unthreaded.cmxa"
archive(native, plugin) = "ctypes-foreign-unthreaded.cmxs"
exists_if = "ctypes-foreign-unthreaded.cma"
)
)