g++ mudflap on ubuntu
I have some issues with mudflap. I'm still getti开发者_Python百科ng "/usr/bin/ld: cannot find -lmudflap" error, but I've already installed libmudflap using Synaptic Package Manager. How to correctly install mudflap? I'm using Ubuntu 10.10.
It always the same: to run agains library foo
, you need libfoo
. But to compile using foo
, you also need libfoo-dev
.
For mudflap
, these are also compiler-dependent, so you want one of these:
libmudflap0-4.3-dev
libmudflap0-4.4-dev
libmudflap0-4.5-dev
depending on which compiler you use.
精彩评论