[Use async in create_trace_view

Reviewed By: ngorogiannis

Differential Revision: D17832380

fbshipit-source-id: db4511ff8
master
Sungkeun Cho 6 years ago committed by Facebook Github Bot
parent 855cc26b25
commit d61411067f

@ -16,7 +16,7 @@ Format.sprintf
(ocamlopt_flags (%s)) (ocamlopt_flags (%s))
(libraries %s) (libraries %s)
(modules All_infer_in_one_file) (modules All_infer_in_one_file)
(preprocess (pps ppx_compare ppx_fields_conv ppx_hash ppx_sexp_conv ppx_variants_conv -no-check)) (preprocess (pps ppx_compare ppx_fields_conv ppx_hash ppx_let ppx_sexp_conv ppx_variants_conv -no-check))
) )
|} |}
(String.concat " " common_cflags) (String.concat " " common_cflags)

@ -68,6 +68,7 @@ let common_libraries =
@ [ "ANSITerminal" @ [ "ANSITerminal"
; "apron" ; "apron"
; "apron.octMPQ" ; "apron.octMPQ"
; "async"
; "atdgen" ; "atdgen"
; "base" ; "base"
; "base64" ; "base64"

@ -65,7 +65,7 @@ let stanzas =
(ocamlopt_flags (%s)) (ocamlopt_flags (%s))
(libraries %s) (libraries %s)
(modules :standard \ %s infertop) (modules :standard \ %s infertop)
(preprocess (pps ppx_compare ppx_fields_conv ppx_hash ppx_sexp_conv ppx_variants_conv -no-check)) (preprocess (pps ppx_compare ppx_fields_conv ppx_hash ppx_let ppx_sexp_conv ppx_variants_conv -no-check))
) )
(documentation (documentation
@ -85,7 +85,7 @@ let stanzas =
(ocamlopt_flags (%s)) (ocamlopt_flags (%s))
(libraries InferModules) (libraries InferModules)
(modules %s) (modules %s)
(preprocess (pps ppx_compare ppx_fields_conv ppx_hash ppx_sexp_conv ppx_variants_conv -no-check)) (preprocess (pps ppx_compare ppx_fields_conv ppx_hash ppx_let ppx_sexp_conv ppx_variants_conv -no-check))
) )
|} |}
(String.concat " " infer_binaries) (String.concat " " infer_binaries)
@ -99,7 +99,7 @@ let stanzas =
(flags (%s)) (flags (%s))
(libraries utop InferModules) (libraries utop InferModules)
(modules Infertop) (modules Infertop)
(preprocess (pps ppx_compare ppx_fields_conv ppx_hash ppx_sexp_conv ppx_variants_conv -no-check)) (preprocess (pps ppx_compare ppx_fields_conv ppx_hash ppx_let ppx_sexp_conv ppx_variants_conv -no-check))
(link_flags (-linkall -warn-error -31)) (link_flags (-linkall -warn-error -31))
) )
|} |}

@ -22,6 +22,7 @@ install: [
depends: [ depends: [
"ANSITerminal" {>="0.7"} "ANSITerminal" {>="0.7"}
"apron" "apron"
"async" {>="v0.12.0" & < "v0.13"}
"atdgen" {>="2.0.0"} "atdgen" {>="2.0.0"}
"base64" {>="3.0.0"} "base64" {>="3.0.0"}
"cmdliner" {>="1.0.0"} "cmdliner" {>="1.0.0"}
@ -43,6 +44,7 @@ depends: [
"parmap" {>="1.0-rc8"} "parmap" {>="1.0-rc8"}
"ppx_deriving" {>="4.1"} "ppx_deriving" {>="4.1"}
"ppx_fields_conv" {>="v0.12.0" & < "v0.13"} "ppx_fields_conv" {>="v0.12.0" & < "v0.13"}
"ppx_let" {>="v0.12.0" & < "v0.13"}
"sawja" {>="1.5.7"} "sawja" {>="1.5.7"}
"sqlite3" "sqlite3"
"utop" {with-test} "utop" {with-test}

@ -22,6 +22,11 @@ install: [
depends: [ depends: [
"ANSITerminal" {= "0.8.1"} "ANSITerminal" {= "0.8.1"}
"apron" {= "20160125"} "apron" {= "20160125"}
"async" {= "v0.12.0"}
"async_extra" {= "v0.12.0"}
"async_kernel" {= "v0.12.0"}
"async_rpc_kernel" {= "v0.12.0"}
"async_unix" {= "v0.12.0"}
"atd" {= "2.0.0"} "atd" {= "2.0.0"}
"atdgen" {= "2.0.0"} "atdgen" {= "2.0.0"}
"atdgen-runtime" {= "2.0.0"} "atdgen-runtime" {= "2.0.0"}
@ -109,6 +114,7 @@ depends: [
"ppx_variants_conv" {= "v0.12.0"} "ppx_variants_conv" {= "v0.12.0"}
"ppxfind" {= "1.3"} "ppxfind" {= "1.3"}
"ppxlib" {= "0.8.0"} "ppxlib" {= "0.8.0"}
"protocol_version_header" {= "v0.12.0"}
"re" {= "1.9.0"} "re" {= "1.9.0"}
"result" {= "1.4"} "result" {= "1.4"}
"sawja" {= "1.5.7"} "sawja" {= "1.5.7"}
@ -119,6 +125,7 @@ depends: [
"splittable_random" {= "v0.12.0"} "splittable_random" {= "v0.12.0"}
"sqlite3" {= "4.4.1"} "sqlite3" {= "4.4.1"}
"stdio" {= "v0.12.0"} "stdio" {= "v0.12.0"}
"textutils" {= "v0.12.0"}
"time_now" {= "v0.12.0"} "time_now" {= "v0.12.0"}
"topkg" {= "1.0.0"} "topkg" {= "1.0.0"}
"typerep" {= "v0.12.0"} "typerep" {= "v0.12.0"}

Loading…
Cancel
Save