Commit 145cf72b authored by Andrew Gibiansky's avatar Andrew Gibiansky

Still trying to get ihaskell building on travis

parent b364daa7
...@@ -31,6 +31,7 @@ install: ...@@ -31,6 +31,7 @@ install:
- travis_retry cabal update - travis_retry cabal update
- travis_retry cabal install cpphs - travis_retry cabal install cpphs
- travis_retry cabal install gtk2hs-buildtools - travis_retry cabal install gtk2hs-buildtools
- travis_retry cabal install arithmoi==0.4.* -fllvm
# Here starts the actual work to be performed for the package under test; any command which exits with a non-zero exit code causes the build to fail. # Here starts the actual work to be performed for the package under test; any command which exits with a non-zero exit code causes the build to fail.
script: script:
......
...@@ -92,7 +92,9 @@ library ...@@ -92,7 +92,9 @@ library
utf8-string -any, utf8-string -any,
uuid >=1.3, uuid >=1.3,
vector -any, vector -any,
ipython-kernel >=0.3 ipython-kernel >=0.3,
arithmoi ==0.4.*
-- arithmoi is fixed to avoid issues with diagrams
exposed-modules: IHaskell.Display exposed-modules: IHaskell.Display
IHaskell.Convert IHaskell.Convert
......
...@@ -122,11 +122,9 @@ pprDynFlags show_all dflags = ...@@ -122,11 +122,9 @@ pprDynFlags show_all dflags =
(ghciFlags,others) = partition (\f -> flagSpecFlag f `elem` flgs) (ghciFlags,others) = partition (\f -> flagSpecFlag f `elem` flgs)
DynFlags.fFlags DynFlags.fFlags
flgs = [ flgs = [
#if MIN_VERSION_ghc(7,8,0)
Opt_PrintExplicitForalls Opt_PrintExplicitForalls
#if MIN_VERSION_ghc(7,8,0)
, Opt_PrintExplicitKinds , Opt_PrintExplicitKinds
#else
Opt_PrintExplicitKinds
#endif #endif
, Opt_PrintBindResult , Opt_PrintBindResult
, Opt_BreakOnException , Opt_BreakOnException
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment