[infra] Update dune to 1.10.0

Summary:
Dune is updated from 1.6.3 to 1.10.0. One thing to keep in mind is
that dune 1.7.0 changed the compilation layout compared to 1.6.3
(see https://github.com/ocaml/dune/pull/1676).

Reviewed By: ngorogiannis

Differential Revision: D16121954

fbshipit-source-id: 8ceb8429f
master
Artem Pianykh 5 years ago committed by Facebook Github Bot
parent 39dce8878f
commit 89ea8bc661

@ -53,7 +53,7 @@ depends: [
"cppo" {= "1.6.5"} "cppo" {= "1.6.5"}
"cppo_ocamlbuild" {= "1.6.0"} "cppo_ocamlbuild" {= "1.6.0"}
"ctypes" {= "0.14.0"} "ctypes" {= "0.14.0"}
"dune" {= "1.6.3"} "dune" {= "1.10.0"}
"easy-format" {= "1.3.1"} "easy-format" {= "1.3.1"}
"elina" {= "1.1"} "elina" {= "1.1"}
"extlib" {= "1.7.5"} "extlib" {= "1.7.5"}

@ -6,7 +6,7 @@ SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
# where to find toplevel.bc, can be overridden # where to find toplevel.bc, can be overridden
BUILD_DIR=${BUILD_DIR:-"$SCRIPT_DIR"/../infer/src/_build/default} BUILD_DIR=${BUILD_DIR:-"$SCRIPT_DIR"/../infer/src/_build/default}
INCLUDE_FLAGS=$(find "$BUILD_DIR" -type d -name '*.objs' -exec printf -- '-I {}\n' \;) INCLUDE_FLAGS=$(find "$BUILD_DIR" -type d -name '*.objs' -exec printf -- '-I {}/byte\n' \;)
# The -init option is effective only in interactive mode. # The -init option is effective only in interactive mode.
# In batch mode, scripts need to import toplevel_init themselves. # In batch mode, scripts need to import toplevel_init themselves.

Loading…
Cancel
Save