Difference between revisions of "Upgrading packages"

From HaskellWiki
Jump to navigation Jump to search
(solved conditional ghc options.)
(Add link to forthcoming page on migrating from GHC 7.4 to 7.6)
(One intermediate revision by one other user not shown)
Line 6: Line 6:
 
* [[/Updating to GHC 6.10]]
 
* [[/Updating to GHC 6.10]]
 
* [[/Updating to GHC 6.8]]
 
* [[/Updating to GHC 6.8]]
  +
* [[/Updating to GHC 7.6]]
   
   
Line 17: Line 18:
 
Use cabal's conditional thingy, checking on impl(ghc >= x.yz). E.g:
 
Use cabal's conditional thingy, checking on impl(ghc >= x.yz). E.g:
   
 
ghc-options: -Wall -fexcess-precision -funbox-strict-fields
 
if impl(ghc >= 6.12)
 
if impl(ghc >= 6.12)
Ghc-Options: -Wall -fexcess-precision -funbox-strict-fields -auto-all -fno-warn-unused-do-bind
+
ghc-options: -fno-warn-unused-do-bind
else
 
Ghc-Options: -Wall -fexcess-precision -funbox-strict-fields -auto-all
 
   
   

Revision as of 20:41, 18 December 2012

A list of things that need updating when porting packages to newer library/cabal versions.

If you maintain a Haskell package this is for you. For older versions of this document:


Updating to GHC 7.0

When upgrading to GHC 7.0, any of your packages that worked against the base-3 library will need to be updated to the base-4.

Compatibility with older GHC

Use cabal's conditional thingy, checking on impl(ghc >= x.yz). E.g:

   ghc-options:         -Wall -fexcess-precision -funbox-strict-fields
   if impl(ghc >= 6.12)
       ghc-options:     -fno-warn-unused-do-bind


(This is a stub, since the previous version was so out-of-date. Please help by adding useful content.)