File tree 15 files changed +15
-7
lines changed
15 files changed +15
-7
lines changed Original file line number Diff line number Diff line change 48
48
dune_rules_rpc
49
49
dune_rpc_private
50
50
dune_rpc_client
51
- spawn
51
+ dune_spawn
52
52
opam_format
53
53
xdg)
54
54
(bootstrap_info bootstrap-info))
Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ let local_libraries =
100
100
; special_builtin_support = None
101
101
}
102
102
; { path = " vendor/spawn/src"
103
- ; main_module_name = None
103
+ ; main_module_name = Some " Dune_spawn "
104
104
; include_subdirs_unqualified = false
105
105
; special_builtin_support = None
106
106
}
Original file line number Diff line number Diff line change @@ -56,6 +56,7 @@ depends: [
56
56
"ocamlfind" { with-dev-setup & os != "win32" }
57
57
"odoc" { with-dev-setup & >= "2.4.0" & os != "win32" }
58
58
"ppx_expect" { with-dev-setup & >= "v0.17" & os != "win32" }
59
+ "spawn" { with-dev-setup }
59
60
"ppx_inline_test" { with-dev-setup & os != "win32" }
60
61
"ppxlib" { with-dev-setup & >= "0.35.0" & os != "win32" }
61
62
"ctypes" { with-dev-setup & os != "win32" }
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ depends: [
18
18
"ocamlfind" { with-dev-setup & os != "win32" }
19
19
"odoc" { with-dev-setup & >= "2.4.0" & os != "win32" }
20
20
"ppx_expect" { with-dev-setup & >= "v0.17" & os != "win32" }
21
+ "spawn" { with-dev-setup }
21
22
"ppx_inline_test" { with-dev-setup & os != "win32" }
22
23
"ppxlib" { with-dev-setup & >= "0.35.0" & os != "win32" }
23
24
"ctypes" { with-dev-setup & os != "win32" }
Original file line number Diff line number Diff line change 157
157
merlin
158
158
ocaml-index
159
159
ppx_expect
160
+ spawn
160
161
ctypes
161
162
integers
162
163
mdx
Original file line number Diff line number Diff line change 14
14
dune_stats
15
15
dune_tui
16
16
dune_util
17
- spawn )
17
+ dune_spawn )
18
18
(synopsis "Internal Dune library, do not use!")
19
19
(instrumentation
20
20
(backend bisect_ppx)))
Original file line number Diff line number Diff line change 1
1
module Dune_config = struct
2
2
open Stdune
3
3
open Dune_lang.Decoder
4
+ module Spawn = Dune_spawn. Spawn
4
5
module Display = Display
5
6
module Scheduler = Dune_engine. Scheduler
6
7
module Sandbox_mode = Dune_engine. Sandbox_mode
Original file line number Diff line number Diff line change 28
28
dune_rpc_private
29
29
dune_rpc_client
30
30
dune_thread_pool
31
- spawn
31
+ dune_spawn
32
32
ocamlc_loc
33
33
dune_file_watcher
34
34
dune_filesystem_stubs
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ module Stringlike = Dune_util.Stringlike
8
8
9
9
module type Stringlike = Dune_util. Stringlike
10
10
11
+ module Spawn = Dune_spawn. Spawn
11
12
module Persistent = Dune_util. Persistent
12
13
module Execution_env = Dune_util. Execution_env
13
14
module Glob = Dune_glob. V1
Original file line number Diff line number Diff line change 1
1
(library
2
2
(name dune_file_watcher)
3
3
(libraries
4
- spawn
4
+ dune_spawn
5
5
fsevents
6
6
dune_console
7
7
unix
Original file line number Diff line number Diff line change 1
1
open ! Stdune
2
+ open Import
2
3
module Inotify_lib = Async_inotify_for_dune. Async_inotify
3
4
module Console = Dune_console
4
5
Original file line number Diff line number Diff line change
1
+ module Spawn = Dune_spawn. Spawn
Original file line number Diff line number Diff line change 3
3
(foreign_stubs
4
4
(language c)
5
5
(names dune_stats_stubs))
6
- (libraries stdune chrome_trace spawn unix)
6
+ (libraries stdune chrome_trace dune_spawn unix)
7
7
(instrumentation
8
8
(backend bisect_ppx)))
Original file line number Diff line number Diff line change 1
1
open Stdune
2
+ module Spawn = Dune_spawn. Spawn
2
3
module Timestamp = Chrome_trace.Event. Timestamp
3
4
module Event = Chrome_trace. Event
4
5
Original file line number Diff line number Diff line change 1
1
(library
2
- (name spawn )
2
+ (name dune_spawn )
3
3
(foreign_stubs
4
4
(language c)
5
5
(flags (:standard (:include flags.sexp)))
You can’t perform that action at this time.
0 commit comments