Skip to content

Commit 52b16fd

Browse files
committed
chore: ensure libpq libdir is found by the linker
Signed-off-by: Leonardo Cecchi <leonardo.cecchi@enterprisedb.com>
1 parent 92b3ae1 commit 52b16fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
http_test: http_test.cpp
2-
clang++ -o http_test -std=c++17 http_test.cpp -I$$(pg_config --includedir) $$(pg_config --ldflags) -lpq -lpthread
2+
clang++ -o http_test -std=c++17 http_test.cpp -I$$(pg_config --includedir) $$(pg_config --ldflags) -L$$(pg_config --libdir) -lpq -lpthread
33

44
fmt:
55
clang-format -i http_test.cpp

0 commit comments

Comments
 (0)