I use the zlib library to do data compression in a command line tool for Mac.

On Xcode 4, I get an error "undefined symbol" on zlib functions.

I search for the libz.dylib on mac computer and I find 3 files in /Developer/Platforms/iPhoneOS.platform.

Nothing in /Developer/Platforms/MacOSX.platform.

Why? Where I can find my libz.dylib library for architeture i386?

link|improve this question

75% accept rate
Xcode can't find the symbols, or the ld can't? – WTP'-- May 25 '11 at 15:03
feedback

2 Answers

up vote 7 down vote accepted

In Xcode 4 have a look at your Build Phases.

Go to the 3rd section - Link Binary with libraries

Click the + button

choose libz.dylib in the drop down. enter image description here

link|improve this answer
Great Abizern ! Thanks a lot ! – TheFrancisOne May 25 '11 at 15:52
feedback

You can download zlib from its site, look further down in the page for the download links.

You can also happen to have installed macports or fink. In this case, you get there prebuilt versions.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.