this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix compiler version to 5.1.1minus-20

authored by

Diana Kalinichenko and committed by
David Allsopp
f02f32d3 0c7853ed

+56 -6
+50
packages/ocaml-variants/ocaml-variants.5.1.1+flambda2/files/lib/ocaml/compiler-libs/META
··· 1 + version = "5.1.1" 2 + description = "compiler-libs support library" 3 + 4 + package "common" ( 5 + requires = "compiler-libs" 6 + version = "5.1.1" 7 + description = "Common compiler routines" 8 + archive(byte) = "ocamlcommon.cma" 9 + archive(native) = "ocamlcommon.cmxa" 10 + ) 11 + 12 + package "bytecomp" ( 13 + requires = "compiler-libs.common" 14 + version = "5.1.1" 15 + description = "Bytecode compiler" 16 + archive(byte) = "ocamlbytecomp.cma" 17 + archive(native) = "ocamlbytecomp.cmxa" 18 + ) 19 + 20 + package "optcomp" ( 21 + requires = "compiler-libs.common" 22 + version = "5.1.1" 23 + description = "Native-code compiler" 24 + archive(byte) = "ocamloptcomp.cma" 25 + archive(native) = "ocamloptcomp.cmxa" 26 + exists_if = "ocamloptcomp.cma" 27 + ) 28 + 29 + package "toplevel" ( 30 + requires = "compiler-libs.bytecomp" 31 + version = "5.1.1" 32 + description = "Toplevel interactions" 33 + archive(byte) = "ocamltoplevel.cma" 34 + ) 35 + 36 + package "native-toplevel" ( 37 + requires = "compiler-libs.optcomp dynlink" 38 + version = "5.1.1" 39 + description = "Toplevel interactions" 40 + archive(native) = "ocamltoplevel.cmxa" 41 + exists_if = "ocamltoplevel.cmxa" 42 + ) 43 + 44 + package "flambda-backend-utils" ( 45 + requires = "compiler-libs.common" 46 + version = "5.1.1" 47 + description = "Flambda Backend tools" 48 + archive(byte) = "flambda_backend_utils.cma" 49 + archive(native) = "flambda_backend_utils.cmxa" 50 + )
+6 -6
packages/ocaml-variants/ocaml-variants.5.1.1+flambda2/opam
··· 8 8 "base-threads" {post} 9 9 "base-flambda2" {post} 10 10 "dune-secondary" {="3.8.1"} 11 - "menhir-secondary" 11 + "menhir-secondary" {="20210419"} 12 12 "conf-autoconf" {build} 13 13 ] 14 14 conflict-class: "ocaml-core-compiler" ··· 20 20 build: [ 21 21 ["autoconf"] { opam-version >= "2.1.5" } 22 22 ["sh" "-exc" "PATH=%{ocaml-secondary-compiler:share}%/bin:$PATH autoconf"] { opam-version < "2.1.5" } 23 - ["./configure" "--prefix=%{prefix}%" "--enable-flambda2" "--enable-runtime5=yes"] { opam-version >= "2.1.5" } 24 - ["sh" "-exc" "PATH=%{ocaml-secondary-compiler:share}%/bin:$PATH ./configure --prefix=%{prefix}% --enable-flambda2 --enable-runtime5=yes"] { opam-version < "2.1.5" } 23 + ["./configure" "--prefix=%{prefix}%" "--enable-flambda2" "--enable-runtime5=yes --disable-naked-pointers"] { opam-version >= "2.1.5" } 24 + ["sh" "-exc" "PATH=%{ocaml-secondary-compiler:share}%/bin:$PATH ./configure --prefix=%{prefix}% --enable-flambda2 --enable-runtime5=yes --disable-naked-pointers"] { opam-version < "2.1.5" } 25 25 [make "-j%{jobs}%"] { opam-version >= "2.1.5" } 26 26 ["sh" "-exc" "PATH=%{ocaml-secondary-compiler:share}%/bin:$PATH make -j%{jobs}%"] { opam-version < "2.1.5" } 27 27 ] ··· 29 29 [make "install"] { opam-version >= "2.1.5" } 30 30 ["sh" "-exc" "PATH=%{ocaml-secondary-compiler:share}%/bin:$PATH make install"] { opam-version < "2.1.5" } 31 31 ] 32 - maintainer: "anil@recoil.org" 32 + maintainer: "opensource-contacts@janestreet.com" 33 33 homepage: "https://github.com/ocaml-flambda/flambda-backend/" 34 34 bug-reports: "https://github.com/ocaml-flambda/flambda-backend/issues" 35 35 url { 36 - src: "git+https://github.com/ocaml-flambda/flambda-backend.git" 36 + src: "git+https://github.com/ocaml-flambda/flambda-backend.git#5.1.1minus-20" 37 37 } 38 38 authors: [ "The Jane Street compiler team" 39 39 "Xavier Leroy" ··· 43 43 "Didier Rémy" 44 44 "Jérôme Vouillon" 45 45 ] 46 - available: [ os = "linux" & arch = "x86_64" ] 46 + available: [ (os = "linux" | os = "macos") & (arch = "x86_64" | arch = "arm64") ]