Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Undefined reference to 'inflateInit2_'

I'm using Code Blocks IDE and I want to install Tiled Map Editor for SFML. So, I downloaded the source and imported it to my project. Unfortunately, the build finished with an error due to missing zlib library. I downloaded it and built again. This time I received an error that reads:

undefined reference to `inflateInit2_'|
undefined reference to `inflateEnd'|
undefined reference to `inflateEnd'|

On the Internet I found the advice to join the linker command -lz, but the compiler refuses throwing the error: cannot find -lz. Does anyone know how to fix it?

like image 991
Jake Avatar asked Dec 15 '13 10:12

Jake


1 Answers

Use the option -L<path> to tell the linker where to find libz.so.x.y.z.

For your reference: http://gcc.gnu.org/onlinedocs/gcc/Directory-Options.html

like image 76
alk Avatar answered Sep 18 '22 18:09

alk