Wxhaskell - 由于构建阶段(g ++错误),wxcore失败

时间:2012-12-13 21:55:38

标签: haskell build wxwidgets cabal-install wxhaskell

我正在尝试构建wxhaskell,似乎有很多麻烦,我可以弄清楚在某些情况下该做什么,但我现在已经陷入困境。

我正在使用wxwidgets-2.8 / wxhaskell-0.11.1.2,发生的错误是:

g++: error: unrecognized command line option ‘-Wl’
g++: error: unrecognized command line option ‘--soname=/home/ming/.cabal/lib/libwxc-gtk2.8.12-0.11.1.2.so’
make: *** [dist/wxc/libwxc-gtk2.8.12-0.11.1.2.so] Fehler 1
cabal: Error: some packages failed to install:
wxcore-0.11.1.2 failed during the building phase. The exception was:
ExitFailure 2

有谁知道如何解决这个问题? 提前谢谢。

编辑: 完整的g ++命令在这里:

http://pastebin.com/TbrQhWEY

1 个答案:

答案 0 :(得分:1)

你的g ++ invokation有-Wl --soname=<something>。它应该是-Wl,--soname=<something>

请参阅here