gen_link_flags.sh 245 B

1234567891011121314
  1. #!/bin/sh
  2. # https://discuss.ocaml.org/t/dune-how-to-link-statically-on-linux-not-on-others/8537/4?u=mro
  3. case "$(uname -s)" in
  4. Darwin)
  5. # do not link statically on macos.
  6. echo '()'
  7. ;;
  8. *)
  9. echo '(-ccopt "-static")'
  10. ;;
  11. esac