all repos — min @ 74b447463106108b85ab28c6c6951701bea6a102

A small but practical concatenative programming language.

Fixed compilarion flags.
h3rald h3rald@h3rald.com
Tue, 08 Dec 2020 11:34:50 +0100
commit

74b447463106108b85ab28c6c6951701bea6a102

parent

06c2f7854b97a458105b8739322ec69fdba976a4

1 files changed, 5 insertions(+), 1 deletions(-)

jump to
M min.nimsmin.nims

@@ -14,8 +14,9 @@ switch("define", "ssl")

switch("opt", "size") switch("threads", "on") -switch("passL","-static") + when defined(windows): + switch("passL","-static") # TODO", change once issue nim#15220 is resolved switch("define", "noOpenSSLHacks") switch("dynlibOverride", "ssl-")

@@ -29,10 +30,13 @@ else:

switch("dynlibOverride", "ssl") switch("dynlibOverride", "crypto") if defined(linux): + switch("passL","-static") switch("passL","-Lvendor/openssl/linux") switch("passL","-lssl") switch("passL","-lcrypto") elif defined(macosx): + switch("passL","-Bstatic") switch("passL","-Lvendor/openssl/macosx") switch("passL","-lssl") switch("passL","-lcrypto") + switch("passL","-Bdynamic")