mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-11-13 06:46:32 +00:00
Ignore inlining warnings
Signed-off-by: Thomas Leonard <thomas.leonard@docker.com>
This commit is contained in:
@@ -7,19 +7,19 @@ let extra_flags =
|
||||
| x -> failwith (Printf.sprintf "JBUILD_STATIC: unknown value %S" x)
|
||||
| exception Not_found -> ""
|
||||
|
||||
let sexp = Printf.sprintf "
|
||||
(jbuild_version 1) \
|
||||
\
|
||||
(executables ( \
|
||||
(names (main store_main http_main tls_main)) \
|
||||
(libraries (capnp-rpc-lwt cohttp.lwt irmin-unix cmdliner fmt.tty)) \
|
||||
(flags (:standard %s)) \
|
||||
)) \
|
||||
(rule \
|
||||
((targets (proto.ml proto.mli)) \
|
||||
(deps (proto.capnp)) \
|
||||
(action (run capnpc -o ocaml ${<})))) \
|
||||
" extra_flags
|
||||
let sexp = Printf.sprintf {|
|
||||
(jbuild_version 1)
|
||||
|
||||
(executables (
|
||||
(names (main store_main http_main tls_main))
|
||||
(libraries (capnp-rpc-lwt cohttp.lwt irmin-unix cmdliner fmt.tty))
|
||||
(flags (:standard -w -53-55 %s))
|
||||
))
|
||||
(rule
|
||||
((targets (proto.ml proto.mli))
|
||||
(deps (proto.capnp))
|
||||
(action (run capnpc -o ocaml ${<}))))
|
||||
|} extra_flags
|
||||
|
||||
let () =
|
||||
send sexp
|
||||
|
||||
Reference in New Issue
Block a user