Skip to content

Commit 180c9df

Browse files
committed
Remove -lzstd for non-static build
1 parent 62ddd30 commit 180c9df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup_posix.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ def get_config():
128128
if use_mysqlconfig_cflags:
129129
# mysql_config may have "-lmysqlclient -lz -lssl -lcrypto", but zlib and
130130
# ssl is not used by _mysql. They are needed only for static build.
131-
for L in ("crypto", "ssl", "z"):
131+
for L in ("crypto", "ssl", "z", "zstd"):
132132
if L in libraries:
133133
libraries.remove(L)
134134

0 commit comments

Comments
 (0)