Revision a86a09b014e025f9631163688bc0591a63399c46 authored by Sylvain Ribstein on 07 September 2022, 07:07:44 UTC, committed by Marge Bot on 12 September 2022, 08:36:23 UTC
In order to replace Sc_rollup_PVM_sem.input by input in the signature of
function in `alpha_context.mli` I had to reorganized the order of
the module.

Now the `Message` and the type `input` are defined before `Inbox` and
the function `produce_proof` and `verify_proof` can use the correct type

I renamed `Message` to `Inbox_message` to not confuse it with `Outbox.Message`
1 parent 9159b8d
Raw File
dune
(vendored_dirs vendors)
(data_only_dirs _opam-repo-for-release)
(env
 (_
  (binaries (%{workspace_root}/src/tooling/node_wrapper.exe as node))))

; This file is included in the link_flags stanza of binaries for which
; we want a static build.
; If the current dune profile is "static", it contains the flag
; telling the compiler to compile static executables.
; Else it contains no flags.
(rule
 (target static-link-flags.sexp)
 (action (with-stdout-to %{target}
  (system "[ '%{profile}' = 'static' ] && echo '(-ccopt -static -cclib -lusb-1.0 -cclib -ludev)' || echo '()'"))))
back to top