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
When I link to cnpy-static in my CMake project, in get the error undefined symbol: inflate when trying to execute my program.
After short research I found this could be related to zlib and discovered that cnpy-static is not linked to zlib in CMakeLists.txt. Maybe the following line should be added in CMakeLists.txt inside the block for the static library:
When I link to
cnpy-static
in my CMake project, in get the errorundefined symbol: inflate
when trying to execute my program.After short research I found this could be related to zlib and discovered that
cnpy-static
is not linked to zlib inCMakeLists.txt
. Maybe the following line should be added inCMakeLists.txt
inside the block for the static library:My current workaround is to link my own library/program to zlib but I'm not sure if having that specification more local inside cnpy would be better 🤔
The text was updated successfully, but these errors were encountered: