Skip to content

Commit 6c33cbf

Browse files
committed
Added missing -lpthread flag
1 parent a8a7879 commit 6c33cbf

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
### 4.3.2 (2017-11-27)
2+
3+
* Added missing -lpthread linking flag to avoid problems with projects
4+
that do not link with the OCaml threads library.
5+
6+
17
### 4.3.1 (2017-11-22)
28

39
* Improved finalization of databases and statements for better performance

src/jbuild

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
; NOTE: for debugging before releases
1414
; -Wall -pedantic -Wextra -Wunused -Wno-long-long -Wno-keyword-macro
1515
))
16-
(c_library_flags (:include c_library_flags.sexp))
16+
(c_library_flags ((:include c_library_flags.sexp) -lpthread))
1717
))
1818

1919
(rule (

0 commit comments

Comments
 (0)