diff options
author | alaviss <alaviss@users.noreply.github.com> | 2018-12-28 04:27:23 +0700 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2018-12-27 22:27:23 +0100 |
commit | ca0ef62c9e3cd18d93b7aec6fd33f7eb9f3173e3 (patch) | |
tree | af132fb251b2882a1c43cffcdbb11efbd53047cf /config | |
parent | e3cee541bd74cc9acc6b3682afd94eb17736f6ae (diff) | |
download | Nim-ca0ef62c9e3cd18d93b7aec6fd33f7eb9f3173e3.tar.gz |
config/nim.cfg: disable tlsEmulation on Haiku (#10092) [backport]
As of hrev52662, TLS support in Haiku is usable again. This has since been backported to R1/Beta1, so we can flip the switch upstream.
Diffstat (limited to 'config')
-rw-r--r-- | config/nim.cfg | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/config/nim.cfg b/config/nim.cfg index b52c71c94..2a118c5cf 100644 --- a/config/nim.cfg +++ b/config/nim.cfg @@ -102,9 +102,6 @@ path="$lib/pure" tlsEmulation:on @end @if haiku: - # Haiku currently have problems with TLS - # https://dev.haiku-os.org/ticket/14342 - tlsEmulation:on gcc.options.linker = "-Wl,--as-needed -lnetwork" gcc.cpp.options.linker = "-Wl,--as-needed -lnetwork" clang.options.linker = "-Wl,--as-needed -lnetwork" |