NedStarkOfWinterfell
NedStarkOfWinterfell

Reputation: 5153

Installing Poco on Mac

I am trying to install Poco on Mac. I downloaded the basic edition from here. As per the instructions, I did configure, then did make. It took a long time, but it succeeded (my make version is 3.81).

After this, when I did sudo make install, it finished pretty quickly. But as per the documentation, which states that I should have the libraries installed in /usr/local, I don't see them. The /user/local/include/Poco has all necessary header files, and /user/local/lib has lot of dynamic libraries like libPocoFoundationd.30.dylib, etc, but I don't see the libraries which I need to use.

How do I get them? My system is OS X 10.10, Yosemite.

Upvotes: 3

Views: 1875

Answers (1)

Alex
Alex

Reputation: 5320

If you have the entries like libPoco*.30.dylib (dynamic library binary) and libPoco*.dylib (link to the library), that's it. If you are looking for the static libraries, they are not built by default. To build static libraries, do

configure --static

and, after make install, in /usr/local/lib you will find libPoco*.a etc.

Upvotes: 2

Related Questions