https://gitlab.com/tezos/tezos
Revision ff4b1cb9fa7912e857c7172cff61a15c91a44854 authored by Marge Bot on 14 November 2022, 15:09:08 UTC, committed by Marge Bot on 14 November 2022, 15:09:08 UTC
Co-authored-by: Victor Allombert <victor.allombert@nomadic-labs.com>

Approved-by: vbot <vincent.botbol@nomadic-labs.com>
Approved-by: Nicolas Raymond <nicolas.raymond@nomadic-labs.com>
Approved-by: Albin Coquereau <pro.acoquer@protonmail.com>

See merge request https://gitlab.com/tezos/tezos/-/merge_requests/6664
2 parent s a83a011 + 6855cdd
Raw File
Tip revision: ff4b1cb9fa7912e857c7172cff61a15c91a44854 authored by Marge Bot on 14 November 2022, 15:09:08 UTC
Merge tezos/tezos!6664: Fix cleanup while cancelling during a snapshot import/export
Tip revision: ff4b1cb
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