Changes between Version 6 and Version 7 of FrequentlyAskedQuestions
- Timestamp:
- 02/14/09 13:59:46 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FrequentlyAskedQuestions
v6 v7 1 1 == Installing GenI == 2 2 3 1. Every time I try to {{{cabal install}}} GenI, it keeps trying to build wxcore (and fails!)4 * '''Solution''': 2009-02-14. This is a tricky one. For some reason cabal-install keeps trying to re-install wx3 1. Every time I try to {{{cabal install}}} GenI, it keeps trying to build wxcore (and fails!) 4 * '''Solution''': 2009-02-14. This is a tricky one. For some reason cabal-install keeps trying to re-install wx 5 5 6 6 {{{cabal install wx --configure-opt="--user --enable-split-objs --hcprof}}} (tested on 2009-02-12, Ubuntu Intrepid, wxWidgets 2.8, GHC 6.10.1) 7 1. I get this error when I try to do {{{runhaskell Setup configure}}}:7 1. I get this error when I try to do {{{runhaskell Setup configure}}}: 8 8 {{{ 9 9 GHCi runtime linker: fatal error: I found a duplicate definition for symbol … … 18 18 GHCi cannot safely continue in this situation. Exiting now. Sorry. 19 19 }}} 20 * '''Workaround''': 2009-02-14: I don't know the proper solution to this yet, but I found that it helps to {{{ghc --make Setup}}} and then call {{{./Setup}}} instead of runhaskell Setup21 1. I get this error when I run GenI (wxHaskell 0.11 ; wxWidgets 2.8), and GenI refuses to load20 * '''Workaround''': 2009-02-14: I don't know the proper solution to this yet, but I found that it helps to {{{ghc --make Setup}}} and then call {{{./Setup}}} instead of runhaskell Setup 21 1. I get this error when I run GenI (wxHaskell 0.11 ; wxWidgets 2.8), and GenI refuses to load 22 22 {{{ 23 23 (process:11334): GLib-GObject-CRITICAL **: /build/buildd/glib2.0-2.18.2/gobject/gtype.c:2458: initialization assertion failed, use IA__g_type_init() prior to this function … … 27 27 (process:11334): Gdk-CRITICAL **: gdk_cursor_new_for_display: assertion `GDK_IS_DISPLAY (display)' failed 28 28 }}} 29 * '''Solution''': 2009-02-14: upgrade to a later wxHaskell (the darcs version) - see http://www.haskell.org/haskellwiki/WxHaskell/Troubleshooting 29 * '''Solution''': 2009-02-14: upgrade to a later wxHaskell (the darcs version) - see http://www.haskell.org/haskellwiki/WxHaskell/Troubleshooting 30 1. I get this error when I try to run GenI: 31 {{{ 32 geni: error while loading shared libraries: libwxc-gtk2.8.8-0.11.1.so: cannot open shared object file: No such file or directory 33 }}} 34 * '''Solution''': 2009-02-14: add the wxhaskell lib directory to your LD_LIBRARY_PATH, for example in bash: 35 {{{ 36 export LD_LIBRARY_PATH=${LD_LIBRARY_PATH:+$LD_LIBRARY_PATH:}${HOME}/.cabal/lib/wxhaskell-0.11.1/lib 37 }}} 30 38 31 39 == How to do cool things ==