[Haskell-cafe] ANNOUNCE: Haskell binding to the ANTLR parser generator C runtime library

2011-01-17 Thread Mark Wright
Hi, I'm pleased to announce the release of a Haskell binding to the ANTLR LL(*) parser generator C runtime library. The book on ANTLR is The Definitive ANTLR Reference: Building Domain-Specific Languages by Terence Parr: http://www.pragprog.com/titles/tpantlr/the-definitive-antlr-reference

Re: [Haskell-cafe] problems with HDBC

2011-02-15 Thread Mark Wright
Hi Kurt, ghc needs to link libraries to the resulting code. An easy to link to the libraries is to use the ghc --make option: ghc --make testsql.hs Thanks, Mark ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org

Re: [Haskell-cafe] Problem building qtHaskell

2011-04-12 Thread Mark Wright
On Tue, 12 Apr 2011 12:14:50 +0200, Øystein Kolsrud kols...@gmail.com wrote: Hi! I am trying to install qtHaskell on a Windows 7 machine, but I am running into some problems while running the build script. I believe I have followed all the steps stated in the installation instructions, but get

Re: [Haskell-cafe] lambdabot hoogle

2011-05-24 Thread Mark Wright
On Wed, 25 May 2011 02:20:39 +0200, Jacek Generowicz jacek.generow...@cern.ch wrote: I have recenly installed lambdabot. Its response to *each* *and* *every* hoogle command is *always* A Hoogle error occurred. I'm hoping that someone on Cafe might be able to offer a more helpful

Re: [Haskell-cafe] lambdabot check

2011-05-24 Thread Mark Wright
On Wed, 25 May 2011 02:15:12 +0200, Jacek Generowicz jacek.generow...@cern.ch wrote: On 2011 May 24, at 22:30, Gwern Branwen wrote: @check these days goes through mueval. Are you sure mueval is installed working? Au contraire: I am sure that mueval was *not* installed. (Am I

Re: [Haskell-cafe] lambdabot hoogle

2011-05-25 Thread Mark Wright
On Wed, 25 May 2011 12:22:24 +0200, Jacek Generowicz jacek.generow...@cern.ch wrote: On 2011 May 25, at 05:53, Mark Wright wrote: On Wed, 25 May 2011 02:20:39 +0200, Jacek Generowicz jacek.generow...@cern.ch wrote: I have recenly installed lambdabot. Its response to *each

Re: [Haskell-cafe] lambdabot check

2011-05-25 Thread Mark Wright
/lambdabot-4.2.3.2.ebuild On 2011 May 25, at 06:06, Mark Wright wrote: Hi Jacek and Gwern, In the upgrade from mueval from 0.8 to 0.8.1, some of the mueval command line options were changed: --loadfile = --load-file --noimports = --no-imports For Plugins/Check.hs I change

Re: [Haskell-cafe] Best Linux Distro for =

2011-06-18 Thread Mark Wright
On Sat, 18 Jun 2011 21:46:53 -0700, Sean Perry sha...@speakeasy.net wrote: On Jun 18, 2011, at 8:48 PM, Tom Murphy wrote: Hi List, If my choice of Lunix distro depended 100% on its solidness as a Haskell devel platform (I am), what would you all recommend? If you are going to

Re: [Haskell-cafe] Haskell fgl example

2011-07-20 Thread Mark Wright
On Tue, 19 Jul 2011 21:04:58 +0530, Rohit Agrawalla rohit.agrawa...@gmail.com wrote: Non-text part: multipart/mixed Non-text part: multipart/alternative I am new to haskell and the haskell fgl (functional graph library). l am looking for some examples of the haskell fgl. Would appreciate any

Re: [Haskell-cafe] zlib 0.5.3.2 broken?

2012-02-02 Thread Mark Wright
On Thu, 2 Feb 2012 07:59:08 +0200, Michael Snoyman mich...@snoyman.com wrote: Hi all, I've received a number of reports of a broken zlib 0.5.3.2 (and experienced it myself). Is this a generally known issue? As a temporary workaround, I've released a new version of zlib-bindings that has

Re: [Haskell-cafe] GHCi fails to load C++ object files (missing symbol)

2012-03-08 Thread Mark Wright
Hi Yves, It works (on Gentoo) when I compile it as a shared library. % g++ -o libstuff.so -fpic -shared Stuff.cpp % ghci Main.hs -L$PWD -lstuff GHCi, version 7.4.1: http://www.haskell.org/ghc/ :? for help Loading package ghc-prim ... linking ... done. Loading package integer-gmp

Re: [Haskell-cafe] GHCi fails to load C++ object files (missing symbol)

2012-03-08 Thread Mark Wright
On Thu, 8 Mar 2012 12:55:51 +0100, Yves Parès yves.pa...@gmail.com wrote: Thanks Mark! It works also here, and even without the -fpic flag. Was it necessary for you? Hi Yves, Yes it is necessary for me to use -fpic when building C/C++ shared libraries as: - I'm on amd64 - Its a Gentoo