example.com -> example.org
[Seppo.git] / bin / gen_flags.sh
blob2df085fad3a61c8e61594a67a5ffcd3e724a511d
1 #!/bin/sh
2 # https://discuss.ocaml.org/t/dune-how-to-link-statically-on-linux-not-on-others/8537/4?u=mro
3 # https://discuss.ocaml.org/t/ld-error-missing-note-gnu-stack-section/12478/3
5 case "$(uname -s)" in
6 Darwin)
7 # do not link statically on macos.
8 echo '(:standard -cclib)'
9 ;;
10 FreeBSD)
11 echo '(:standard -cclib "-z noexecstack" -ccopt -static)'
14 echo '(:standard -ccopt -static)'
16 esac