File tree 3 files changed +8
-7
lines changed 3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 1
- FROM ocaml/opam :alpine-3.13-ocaml-4.12 as compilation
1
+ FROM ocaml/opam2 :alpine as compilation
2
2
LABEL Description="learn-ocaml building" Vendor="OCamlPro"
3
3
4
4
WORKDIR /home/opam/learn-ocaml
Original file line number Diff line number Diff line change @@ -74,6 +74,7 @@ depends: [
74
74
"mmap" {= "1.1.0"}
75
75
"num" {= "1.4"}
76
76
"ocaml" {= "4.12.0"}
77
+ "ocaml-base-compiler" {= "4.12.0"}
77
78
"ocaml-compiler-libs" {= "v0.12.3"}
78
79
"ocaml-config" {= "2"}
79
80
"ocaml-migrate-parsetree" {= "1.8.0"}
Original file line number Diff line number Diff line change 9
9
;; (package learn-ocaml) ;; missing support in dune, manually installed below
10
10
;; (public_name learn-ocaml)
11
11
(name learnocaml_main)
12
- (modes byte_complete )
13
- (ocamlc_flags -custom)
14
- (flags :standard -linkall -verbose (:include linking_main.sexp))
12
+ (modes byte )
13
+ (flags (:standard -linkall
14
+ (:include linking_main.sexp) ))
15
15
(modules Learnocaml_main)
16
16
(libraries cmdliner
17
17
sha
31
31
;; (package learn-ocaml-client) ;; missing support in dune, manually installed below
32
32
;; (public_name learn-ocaml-client)
33
33
(name learnocaml_client)
34
- (modes byte_complete )
35
- (ocamlc_flags -custom)
36
- (flags :standard -linkall (:include linking_client.sexp))
34
+ (modes byte )
35
+ (flags (:standard -linkall
36
+ (:include linking_client.sexp) ))
37
37
(modules Learnocaml_client)
38
38
(libraries cmdliner
39
39
sha
You can’t perform that action at this time.
0 commit comments