blob: f19535fa956fe9019adadd6a43a6009951e96904 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
To get rid of warnings:
ocamlfind: [WARNING] Package `threads': Linking problems may arise because of the missing -thread or -vmthread switch
--- a/Makefile
+++ b/Makefile
@@ -199,7 +199,7 @@
RELEASE_TAGS=$(if $(FLOW_RELEASE),-tag warn_a,)
-OCB=ocamlbuild -use-ocamlfind -no-links
+OCB=ocamlbuild -use-ocamlfind -no-links -tag thread
all: bin/flow$(EXE)
|