Skip to content

Commit 74d344b

Browse files
authored
Merge pull request ocaml#13846 from Octachron/dune_support_iarray
dune support: iarray placeholder
2 parents 0c3c09d + 41ace2f commit 74d344b

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

stdlib/dune

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,13 @@
1414

1515
(library
1616
(name stdlib)
17+
(libraries dune_support)
1718
(stdlib
1819
(exit_module std_exit)
1920
(internal_modules Camlinternal*)
2021
(modules_before_stdlib
2122
camlinternalFormatBasics))
22-
(flags (:standard -w -9 -nolabels))
23+
(flags (:standard -w -9 -nolabels -open New_predef_types))
2324
(preprocess
2425
(per_module
2526
((action

stdlib/dune_support/dune

+6
Original file line numberDiff line numberDiff line change
@@ -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+
)
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
type !+'a iarray

0 commit comments

Comments
 (0)