ligo/src/lib_protocol_compiler/main_embedded_packer.ml

36 lines
1.2 KiB
OCaml
Raw Normal View History

(**************************************************************************)
(* *)
2018-02-06 00:17:03 +04:00
(* Copyright (c) 2014 - 2018. *)
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
(* *)
(* All rights reserved. No warranty, explicit or implicit, provided. *)
(* *)
(**************************************************************************)
let srcdir = Sys.argv.(1)
let version = Sys.argv.(2)
let hash, sources = Protocol.read_dir srcdir
let () =
Format.printf {|
module Source = struct
let hash =
Some (Tezos_base.Protocol_hash.of_b58check_exn %S)
let sources = Tezos_base.Protocol.%a
end
@.|}
(Protocol_hash.to_b58check hash)
Protocol.pp_ocaml sources
let () =
Format.printf {|
let () =
let module Ignored = Tezos_protocol_updater.Registred_protocol.Register
(Tezos_embedded_protocol_environment_%s.Environment)
(Tezos_embedded_raw_protocol_%s.Main)
(Source) in
()
@.|}
version version