Check type well formedness for top level function where constraints
[hiphop-php.git] / hphp / hack / ocaml_deps_data.sh
blob2e24f5500fe84cb05024ed4fbe355d621b5a926e
1 #!/bin/bash
3 export OCAML_VERSION="4.12.1+options"
5 export HACK_OPAM_DEPS=(
6 base.v0.14.1
7 base64.3.5.0
8 camlp4.4.12+1
9 cmdliner.1.0.4
10 core_kernel.v0.14.1
11 dtoa.0.3.2
12 dune.2.9.0
13 fileutils.0.6.3
14 fmt.0.8.9
15 landmarks-ppx.1.4
16 lru.0.3.0
17 lwt.5.4.0
18 lwt_log.1.1.1
19 lwt_ppx.2.0.2
20 memtrace.0.2.1.2
21 merlin.4.3.1-412
22 mtime.1.2.0
23 ocp-indent.1.8.1
24 ounit2.2.2.4
25 pcre.7.4.6
26 ppx_deriving.5.2.1
27 ppx_gen_rec.2.0.0
28 sedlex.2.3
29 sexplib.v0.14.0
30 sqlite3.5.0.2
31 uchar.0.0.2
32 uutf.1.0.2
33 visitors.20210316
34 wtf8.1.0.2
35 yojson.1.7.0
36 ocaml-option-flambda
39 # The rest of the file exports variables based on the above configuration.
41 export HACK_OCAML_VERSION="${OCAML_VERSION}"
42 export OCAML_BASE_NAME=ocaml-variants
43 export OCAML_COMPILER_NAME="${OCAML_BASE_NAME}.${HACK_OCAML_VERSION}"
45 UNAME=$(uname -s)
46 if [ "$UNAME" != "Linux" ]; then
47 # Some variants are not supported on other platforms, so we use the base
48 # version instead.
49 # +fp is known not to work on Macs, but other combinations have not been
50 # tested.
51 echo 'Non linux platform detected, skipping +fp'
52 else
53 HACK_OPAM_DEPS+=(ocaml-option-fp)
54 export HACK_OPAM_DEPS