18 lines
841 B
OCaml
18 lines
841 B
OCaml
(**************************************************************************)
|
|
(* *)
|
|
(* Copyright (c) 2014 - 2018. *)
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
(* *)
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
(* *)
|
|
(**************************************************************************)
|
|
|
|
let () =
|
|
try
|
|
Tezos_protocol_compiler.Compiler.main
|
|
Tezos_protocol_compiler_native.Native.driver ;
|
|
Pervasives.exit 0
|
|
with exn ->
|
|
Format.eprintf "%a\n%!" Opterrors.report_error exn;
|
|
Pervasives.exit 1
|