try add brotli to the libdirs

This commit is contained in:
wiaamm
2026-01-15 11:55:58 +02:00
parent 241ae42cd9
commit 38541a1f9c

View File

@@ -52,6 +52,13 @@ build = {
}, },
defines = { "_GNU_SOURCE", "ZLIB_CONST" }, defines = { "_GNU_SOURCE", "ZLIB_CONST" },
libraries = { "pthread", "z", "rt", "stdc++", "brotlienc", "brotlidec", "brotlicommon" }, libraries = { "pthread", "z", "rt", "stdc++", "brotlienc", "brotlidec", "brotlicommon" },
libdirs = {
"/usr/lib",
"/usr/local/lib",
"/usr/lib64",
"/usr/local/lib64",
"/usr/lib/x86_64-linux-gnu"
},
ldflags = { "-static-libstdc++", "-static-libgcc" } ldflags = { "-static-libstdc++", "-static-libgcc" }
} }
} }