You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It should be built with
make LIBS="-ldl -lz"
or it will stop build with errors.
Please add it into instruction so people will know how to build it(i spent 3 hours searching where problem is).
-ldl is for opennssl
-lz is for zlib
The text was updated successfully, but these errors were encountered:
The official way to specify zlib flags is use ZLIB_CFLAGS and ZLIB_LIBS.
But normally, they are searched and set by pkg-config. If configure complained about missing zlib, you can specify both variables by hand. Run ./configure -h to see help
If -ldl is required for openssl, usually it must be supplied in its .pc file read by pkg-config.
If it is missing, then LIBS is the last resort.
It should be built with
make LIBS="-ldl -lz"
or it will stop build with errors.
Please add it into instruction so people will know how to build it(i spent 3 hours searching where problem is).
-ldl is for opennssl
-lz is for zlib
The text was updated successfully, but these errors were encountered: