[Haskell-cafe] "plugins" fails on a simple example
Jeremy Shaw
jeremy
Thu Oct 3 18:46:10 UTC 2013
this should be fixed in plugins 1.5.4.0 which is now on hackage.
Thanks!
- jeremy
On Mon, Sep 16, 2013 at 2:49 AM, Petr Pudl?k <petr.mvd at gmail.com> wrote:
> Hi,
>
> I'm playing with ?plugins?, trying to evaluate a simple expression:
>
> import Control.Monad
> import System.Eval.Haskell
>
> main = do
> let fExpr = "1 + 2 :: Int"
> r <- eval_ fExpr ["Prelude"] [] [] []
> :: IO (Either [String] (Maybe Int))
> case r of
> Right (Just f) -> do
> print $ f
> Left err -> putStrLn $ "Error: " ++ unlines err
> _ -> putStrLn $ "Unknown error."
>
> However, it fails with
>
> Error:
> on the commandline: Warning:
> -fglasgow-exts is deprecated: Use individual extensions instead
>
> Am I doing something wrong? How can I turn off the flag?
>
> I'm using GHC 7.6.3.
>
> Thanks,
> Petr
>
>
> _______________________________________________
> Haskell-Cafe mailing list
> Haskell-Cafe at haskell.org
> http://www.haskell.org/mailman/listinfo/haskell-cafe
>
More information about the Haskell-Cafe
mailing list