File tree Expand file tree Collapse file tree 3 files changed +438
-1
lines changed Expand file tree Collapse file tree 3 files changed +438
-1
lines changed Original file line number Diff line number Diff line change
1
+ #! /bin/sh
2
+ exec dune exec --display=quiet --profile=release " examples/echo_eio.exe" -- $@
Original file line number Diff line number Diff line change 11
11
(executable
12
12
(name echo)
13
13
(flags :standard -warn-error -a+8)
14
- (modules echo vfs )
14
+ (modules echo)
15
15
(libraries
16
16
tiny_httpd
17
17
logs
18
+ echo_vfs
19
+ tiny_httpd_camlzip
20
+ tiny_httpd.multipart-form-data))
21
+
22
+ (executable
23
+ (name echo_eio)
24
+ (flags :standard -warn-error -a+8)
25
+ (modules echo_eio)
26
+ (libraries
27
+ tiny_httpd
28
+ tiny_httpd_eio
29
+ eio
30
+ eio_main
31
+ logs
32
+ echo_vfs
33
+ trace.core
34
+ trace-tef
18
35
tiny_httpd_camlzip
19
36
tiny_httpd.multipart-form-data))
20
37
55
72
56
73
; produce an embedded FS
57
74
75
+ (library
76
+ (name echo_vfs)
77
+ (modules vfs)
78
+ (wrapped false)
79
+ (libraries tiny_httpd))
80
+
58
81
(rule
59
82
(targets vfs.ml)
60
83
(deps
You can’t perform that action at this time.
0 commit comments