https://gitlab.com/tezos/tezos
Revision 6cac7daf64e95ed3f13738be65c48b982edc245f authored by Marge Bot on 06 March 2024, 15:01:25 UTC, committed by Marge Bot on 06 March 2024, 15:01:25 UTC
Co-authored-by: Nic Volanschi <nic.volanschi@nomadic-labs.com>

Approved-by: pietro <pietro.abate@nomadic-labs.com>
Approved-by: Raphaƫl Cauderlier <raphael.cauderlier@nomadic-labs.com>
Approved-by: Alain Mebsout <alain.mebsout@functori.com>

See merge request https://gitlab.com/tezos/tezos/-/merge_requests/12050
2 parent s 224ea75 + 8ab4347
Raw File
Tip revision: 6cac7daf64e95ed3f13738be65c48b982edc245f authored by Marge Bot on 06 March 2024, 15:01:25 UTC
Merge tezos/tezos!12050: doc: increase visibility of links in documentation
Tip revision: 6cac7da
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 '()'"))))

; This file is included in the link_flags stanza of binaries and static libraries
; for which we should include -ccopt "-framework Security" on macOS.
(rule
 (target macos-link-flags.sexp)
 (action (with-stdout-to %{target}
  (system "[ '%{system}' = 'macosx' ] && echo '(-ccopt \"-framework Security\")' || echo '()'"))))
back to top