2016-09-08 21:13:10 +04:00
|
|
|
(**************************************************************************)
|
|
|
|
(* *)
|
|
|
|
(* Copyright (c) 2014 - 2016. *)
|
|
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
|
|
(* *)
|
|
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
|
|
|
|
let () =
|
|
|
|
try
|
2017-10-29 01:14:00 +04:00
|
|
|
Tezos_protocol_compiler.Native.main ();
|
2016-09-08 21:13:10 +04:00
|
|
|
Pervasives.exit 0
|
|
|
|
with exn ->
|
|
|
|
Format.eprintf "%a\n%!" Opterrors.report_error exn;
|
|
|
|
Pervasives.exit 1
|