From b1f36de9ac5f0caa949c58c6937a1b3db953d18c Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Mon, 23 Jan 2023 20:16:16 +0300 Subject: Switch to using -pthread instead of -lpthread in buildfiles --- libsqlite3/libsqlite3/buildfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'libsqlite3/libsqlite3/buildfile') diff --git a/libsqlite3/libsqlite3/buildfile b/libsqlite3/libsqlite3/buildfile index ce9f0d7..0b52040 100644 --- a/libsqlite3/libsqlite3/buildfile +++ b/libsqlite3/libsqlite3/buildfile @@ -84,7 +84,9 @@ if! $windows # We also assume these are implementation dependencies (so there is no # c.export.libs listing them). # - c.libs += -lpthread -lm + # Note that we use -pthread instead of -lpthread for efficiency. + # + c.libs += -pthread -lm if! $bsd c.libs += -ldl -- cgit v1.1