We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e058b8 commit e349a2eCopy full SHA for e349a2e
interpreter/dune
@@ -6,7 +6,7 @@
6
; Wasm REPL every time in all the dependencies.
7
; We exclude the 'wast' module as it is only used for the JS build.
8
; 'smallint' is a separate test module.
9
- (modules :standard \ wasm smallint wast))
+ (modules :standard \ main wasm smallint wast))
10
11
(executable
12
(public_name wasm)
@@ -29,6 +29,11 @@
29
(libraries js_of_ocaml wasm)
30
(preprocess (pps js_of_ocaml-ppx)))
31
32
+(rule
33
+ (targets wasm.ml)
34
+ (deps main/main.ml)
35
+ (action (copy main/main.ml wasm.ml)))
36
+
37
(rule
38
(targets wast.js)
39
(deps wast.bc.js)
interpreter/main/wasm.ml renamed to interpreter/main/main.ml
0 commit comments