Re: [Haskell-cafe] Need help with ghc static compile for cgi using mysql

2009-10-15 Thread John Dorsey
> lambdabot is currently hosted on the lowest end linode. The biggest hurdle I [...] +1. I use linode for (most of) my Haskell work. John ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

Re: [Haskell-cafe] Need help with ghc static compile for cgi using mysql

2009-10-15 Thread Jason Dagit
On Thu, Oct 15, 2009 at 10:11 AM, John Van Enk wrote: > I've run Haskell stuff on VPS hosts like Linode or SliceHost. $20/month is > a lot better than $60. lambdabot is currently hosted on the lowest end linode. The biggest hurdle I hit was that gnu ld is a memory pig when GHC is compiled with

Re: [Haskell-cafe] Need help with ghc static compile for cgi using mysql

2009-10-15 Thread John Van Enk
I've run Haskell stuff on VPS hosts like Linode or SliceHost. $20/month is a lot better than $60. On Thu, Oct 15, 2009 at 12:32 PM, Austin King wrote: > For now, I've given up on cheap hosting (via statically compiled CGI). > > I've created a GHC 6.10.4, cabal-install, Ubuntu 9.04 ec2 instance +

Re: [Haskell-cafe] Need help with ghc static compile for cgi using mysql

2009-10-15 Thread Austin King
For now, I've given up on cheap hosting (via statically compiled CGI). I've created a GHC 6.10.4, cabal-install, Ubuntu 9.04 ec2 instance + MySQL and it works well. Running this plus EBS and Elastic IP will run a little over $60 a month. Ouch. The work going into Haskell Platform is amazing, but

[Haskell-cafe] Need help with ghc static compile for cgi using mysql

2009-10-12 Thread Austin King
I'm trying to host a cgi I've written. It uses Database.HDBC, Database.HDBC.MySQL, Network.CGI, and Text.XHtml.Transitional Here is the command I'm using to compile ghc --make -optl-static -optl-pthread -static -o test.cgi -package cgi -package xhtml -package HDBC-mysql -package HDBC -optl -lz M