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 a8cf597 commit 489caa6Copy full SHA for 489caa6
rfcs/cmt_input.md
@@ -7,14 +7,14 @@ them.
7
The first request is to type check compilation units and produce `.cmt` files:
8
9
```
10
-$ ocamlc -c foo.ml -o foo.cmt
+$ ocamlc -c foo.ml -output-cmt
11
12
13
The second request is to take `.cmt` files as input to produce object files:
14
15
16
-$ ocamlc -c foo.cmt -o foo.cmo
17
-$ ocamlopt -c foo.cmt -o foo.cmx
+$ ocamlc -c foo.cmt
+$ ocamlopt -c foo.cmt
18
19
20
How does this help? The motivation is mainly to simplify some rough edges of
0 commit comments