summary refs log tree commit diff stats
path: root/config
diff options
context:
space:
mode:
authorringabout <43030857+ringabout@users.noreply.github.com>2023-04-15 04:52:35 +0800
committerGitHub <noreply@github.com>2023-04-14 22:52:35 +0200
commit512517c223a649018072effcb7bd9f3f9b9d16d3 (patch)
tree9d1589b9fa87f0fc588e7fb12680da943af4689b /config
parent1a99bcd6abfa41144079e384f35085d79ef20268 (diff)
downloadNim-512517c223a649018072effcb7bd9f3f9b9d16d3.tar.gz
fixes #18146; fixes #19372; disable tlsEmulation on windows; static link pthreads with mingw (#21668)
* fixes #18146; disable tlsEmulation on windows; static link libwinthreads DLL

* whatever
Diffstat (limited to 'config')
-rw-r--r--config/nim.cfg2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/nim.cfg b/config/nim.cfg
index ef93ec99e..ad6129c6d 100644
--- a/config/nim.cfg
+++ b/config/nim.cfg
@@ -179,7 +179,7 @@ nimblepath="$home/.nimble/pkgs/"
 # Configuration for the GNU C/C++ compiler:
 @if windows:
   #gcc.path = r"$nim\dist\mingw\bin"
-  @if gcc or tcc:
+  @if tcc:
     tlsEmulation:on
   @end
 @end