Reputation: 5763
Env:
I am trying to install wxHaskell with
cabal install wx
Then these errors are given.
Missing dependencies on foreign libraries: * Missing C libraries: wx_baseu-2.8, wx_baseu_net-2.8, wx_baseu_xml-2.8, wx_gtk2u_core-2.8, wx_gtk2u_adv-2.8, wx_gtk2u_html-2.8, wx_gtk2u_qa-2.8, wx_gtk2u_xrc-2.8, wx_gtk2u_aui-2.8, wx_gtk2u_richtext-2.8, wx_gtk2u_media-2.8, wx_gtk2u_stc-2.8, wx_gtk2u_gl-2.8
And these libraries actually exist in /usr/lib I type following in terminal
ls libwx*.so
and found libs:
I tried cabal install wx --exteral-lib-dirs=/usr/lib , but still no luck.
Upvotes: 4
Views: 1549
Reputation: 68152
I have figured out the issue (and it only took me the best part of a month :))--you need to have g++
installed on your machine. You can install it with sudo yum install gcc-c++
.
Upvotes: 2
Reputation: 219
I don't have a solution, but I hit the exact same problem last night on a fresh Debian Wheezy install, which makes me think that it might be a packaging problem with the wx in cabal.
Upvotes: 1
Reputation: 152707
I am not a wx
expert, but you likely additionally need the C headers for these libraries. Look for your distribution's "development" package for these libraries; in many distributions, these packages are named the same as the library package itself, but with "-dev" added at the end of the name.
Upvotes: 4