aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/vlib/sync/threads/threads.c.v
diff options
context:
space:
mode:
Diffstat (limited to 'v_windows/v/vlib/sync/threads/threads.c.v')
-rw-r--r--v_windows/v/vlib/sync/threads/threads.c.v13
1 files changed, 13 insertions, 0 deletions
diff --git a/v_windows/v/vlib/sync/threads/threads.c.v b/v_windows/v/vlib/sync/threads/threads.c.v
new file mode 100644
index 0000000..02506c2
--- /dev/null
+++ b/v_windows/v/vlib/sync/threads/threads.c.v
@@ -0,0 +1,13 @@
+module threads
+
+// This module adds the necessary compiler flags for using threads.
+// It is automatically imported by code that does `go func()` .
+// See vlib/v/parser/pratt.v, search for ast.GoExpr .
+// The goal is that programs, that do not use threads at all will not need
+// to link to -lpthread etc.
+// NB: on some platforms like Android, linking -lpthread is not needed too.
+// See https://stackoverflow.com/a/31277163/1904615
+
+$if !windows && !android {
+ #flag -lpthread
+}