We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0c3c09d + 41ace2f commit 74d344bCopy full SHA for 74d344b
stdlib/dune
@@ -14,12 +14,13 @@
14
15
(library
16
(name stdlib)
17
+ (libraries dune_support)
18
(stdlib
19
(exit_module std_exit)
20
(internal_modules Camlinternal*)
21
(modules_before_stdlib
22
camlinternalFormatBasics))
- (flags (:standard -w -9 -nolabels))
23
+ (flags (:standard -w -9 -nolabels -open New_predef_types))
24
(preprocess
25
(per_module
26
((action
stdlib/dune_support/dune
@@ -0,0 +1,6 @@
1
+(library
2
+ (name dune_support)
3
+ (modules_without_implementation new_predef_types)
4
+ (flags (:standard -nostdlib -nopervasives))
5
+ (wrapped false)
6
+)
stdlib/dune_support/new_predef_types.mli
@@ -0,0 +1 @@
+type !+'a iarray
0 commit comments