-
Notifications
You must be signed in to change notification settings - Fork 19
/
dune
69 lines (67 loc) · 971 Bytes
/
dune
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
(rule
(targets config.h config.ml ldlibs.sexp)
(deps
(:gen ../discover/discover.exe))
(action
(run %{gen})))
(rule
(action
(progn
(copy extUnix.pp.ml all.ml)
(copy extUnix.pp.ml specific.ml))))
(library
(name ExtUnix)
(public_name extunix)
(modules_without_implementation ExtUnix)
(libraries unix bigarray bytes)
(preprocess
(per_module
((pps ppx_have --gen-all)
All)
((pps ppx_have)
Specific)))
(c_library_flags
(:include ldlibs.sexp))
(foreign_stubs
(language c)
(flags :standard)
(names
atfile
bigarray
common
dirfd
endian
endianba
execinfo
fadvise
fallocate
fexecve
fsync
ioctl_siocgifconf
malloc
memalign
mktemp
mman
mount
poll
pread_pwrite_ba
ptrace
pts
read_cred
realpath
resource
sendmsg
signalfd
sockopt
splice
statvfs
stdlib
sysconf
sysinfo
syslog
time
tty_ioctl
uname
unistd
unshare
eventfd)))